Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi
oci.OsManagementHub.getLifecycleStages
Explore with Pulumi AI
This data source provides the list of Lifecycle Stages in Oracle Cloud Infrastructure Os Management Hub service.
Lists lifecycle stages that match the specified compartment or lifecycle stage OCID. Filter the list against
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testLifecycleStages = oci.OsManagementHub.getLifecycleStages({
    archType: lifecycleStageArchType,
    compartmentId: compartmentId,
    displayNames: lifecycleStageDisplayName,
    displayNameContains: lifecycleStageDisplayNameContains,
    lifecycleStageId: testLifecycleStage.id,
    locations: lifecycleStageLocation,
    locationNotEqualTos: lifecycleStageLocationNotEqualTo,
    osFamily: lifecycleStageOsFamily,
    softwareSourceId: lifecycleStageSoftwareSourceId,
    state: lifecycleStageState,
});
import pulumi
import pulumi_oci as oci
test_lifecycle_stages = oci.OsManagementHub.get_lifecycle_stages(arch_type=lifecycle_stage_arch_type,
    compartment_id=compartment_id,
    display_names=lifecycle_stage_display_name,
    display_name_contains=lifecycle_stage_display_name_contains,
    lifecycle_stage_id=test_lifecycle_stage["id"],
    locations=lifecycle_stage_location,
    location_not_equal_tos=lifecycle_stage_location_not_equal_to,
    os_family=lifecycle_stage_os_family,
    software_source_id=lifecycle_stage_software_source_id,
    state=lifecycle_stage_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/osmanagementhub"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := osmanagementhub.GetLifecycleStages(ctx, &osmanagementhub.GetLifecycleStagesArgs{
			ArchType:            pulumi.StringRef(lifecycleStageArchType),
			CompartmentId:       pulumi.StringRef(compartmentId),
			DisplayNames:        lifecycleStageDisplayName,
			DisplayNameContains: pulumi.StringRef(lifecycleStageDisplayNameContains),
			LifecycleStageId:    pulumi.StringRef(testLifecycleStage.Id),
			Locations:           lifecycleStageLocation,
			LocationNotEqualTos: lifecycleStageLocationNotEqualTo,
			OsFamily:            pulumi.StringRef(lifecycleStageOsFamily),
			SoftwareSourceId:    pulumi.StringRef(lifecycleStageSoftwareSourceId),
			State:               pulumi.StringRef(lifecycleStageState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testLifecycleStages = Oci.OsManagementHub.GetLifecycleStages.Invoke(new()
    {
        ArchType = lifecycleStageArchType,
        CompartmentId = compartmentId,
        DisplayNames = lifecycleStageDisplayName,
        DisplayNameContains = lifecycleStageDisplayNameContains,
        LifecycleStageId = testLifecycleStage.Id,
        Locations = lifecycleStageLocation,
        LocationNotEqualTos = lifecycleStageLocationNotEqualTo,
        OsFamily = lifecycleStageOsFamily,
        SoftwareSourceId = lifecycleStageSoftwareSourceId,
        State = lifecycleStageState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.OsManagementHubFunctions;
import com.pulumi.oci.OsManagementHub.inputs.GetLifecycleStagesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testLifecycleStages = OsManagementHubFunctions.getLifecycleStages(GetLifecycleStagesArgs.builder()
            .archType(lifecycleStageArchType)
            .compartmentId(compartmentId)
            .displayNames(lifecycleStageDisplayName)
            .displayNameContains(lifecycleStageDisplayNameContains)
            .lifecycleStageId(testLifecycleStage.id())
            .locations(lifecycleStageLocation)
            .locationNotEqualTos(lifecycleStageLocationNotEqualTo)
            .osFamily(lifecycleStageOsFamily)
            .softwareSourceId(lifecycleStageSoftwareSourceId)
            .state(lifecycleStageState)
            .build());
    }
}
variables:
  testLifecycleStages:
    fn::invoke:
      function: oci:OsManagementHub:getLifecycleStages
      arguments:
        archType: ${lifecycleStageArchType}
        compartmentId: ${compartmentId}
        displayNames: ${lifecycleStageDisplayName}
        displayNameContains: ${lifecycleStageDisplayNameContains}
        lifecycleStageId: ${testLifecycleStage.id}
        locations: ${lifecycleStageLocation}
        locationNotEqualTos: ${lifecycleStageLocationNotEqualTo}
        osFamily: ${lifecycleStageOsFamily}
        softwareSourceId: ${lifecycleStageSoftwareSourceId}
        state: ${lifecycleStageState}
Using getLifecycleStages
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLifecycleStages(args: GetLifecycleStagesArgs, opts?: InvokeOptions): Promise<GetLifecycleStagesResult>
function getLifecycleStagesOutput(args: GetLifecycleStagesOutputArgs, opts?: InvokeOptions): Output<GetLifecycleStagesResult>def get_lifecycle_stages(arch_type: Optional[str] = None,
                         compartment_id: Optional[str] = None,
                         display_name_contains: Optional[str] = None,
                         display_names: Optional[Sequence[str]] = None,
                         filters: Optional[Sequence[_osmanagementhub.GetLifecycleStagesFilter]] = None,
                         lifecycle_stage_id: Optional[str] = None,
                         location_not_equal_tos: Optional[Sequence[str]] = None,
                         locations: Optional[Sequence[str]] = None,
                         os_family: Optional[str] = None,
                         software_source_id: Optional[str] = None,
                         state: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetLifecycleStagesResult
def get_lifecycle_stages_output(arch_type: Optional[pulumi.Input[str]] = None,
                         compartment_id: Optional[pulumi.Input[str]] = None,
                         display_name_contains: Optional[pulumi.Input[str]] = None,
                         display_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_osmanagementhub.GetLifecycleStagesFilterArgs]]]] = None,
                         lifecycle_stage_id: Optional[pulumi.Input[str]] = None,
                         location_not_equal_tos: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         locations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         os_family: Optional[pulumi.Input[str]] = None,
                         software_source_id: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetLifecycleStagesResult]func GetLifecycleStages(ctx *Context, args *GetLifecycleStagesArgs, opts ...InvokeOption) (*GetLifecycleStagesResult, error)
func GetLifecycleStagesOutput(ctx *Context, args *GetLifecycleStagesOutputArgs, opts ...InvokeOption) GetLifecycleStagesResultOutput> Note: This function is named GetLifecycleStages in the Go SDK.
public static class GetLifecycleStages 
{
    public static Task<GetLifecycleStagesResult> InvokeAsync(GetLifecycleStagesArgs args, InvokeOptions? opts = null)
    public static Output<GetLifecycleStagesResult> Invoke(GetLifecycleStagesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetLifecycleStagesResult> getLifecycleStages(GetLifecycleStagesArgs args, InvokeOptions options)
public static Output<GetLifecycleStagesResult> getLifecycleStages(GetLifecycleStagesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:OsManagementHub/getLifecycleStages:getLifecycleStages
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ArchType string
- A filter to return only profiles that match the given archType.
- CompartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- DisplayName stringContains 
- A filter to return resources that may partially match the given display name.
- DisplayNames List<string>
- A filter to return resources that match the given display names.
- Filters
List<GetLifecycle Stages Filter> 
- LifecycleStage stringId 
- The OCID of the lifecycle stage.
- LocationNot List<string>Equal Tos 
- A filter to return only resources whose location does not match the given value.
- Locations List<string>
- A filter to return only resources whose location matches the given value.
- OsFamily string
- A filter to return only resources that match the given operating system family.
- SoftwareSource stringId 
- The OCID of the software source. This filter returns resources associated with this software source.
- State string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- ArchType string
- A filter to return only profiles that match the given archType.
- CompartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- DisplayName stringContains 
- A filter to return resources that may partially match the given display name.
- DisplayNames []string
- A filter to return resources that match the given display names.
- Filters
[]GetLifecycle Stages Filter 
- LifecycleStage stringId 
- The OCID of the lifecycle stage.
- LocationNot []stringEqual Tos 
- A filter to return only resources whose location does not match the given value.
- Locations []string
- A filter to return only resources whose location matches the given value.
- OsFamily string
- A filter to return only resources that match the given operating system family.
- SoftwareSource stringId 
- The OCID of the software source. This filter returns resources associated with this software source.
- State string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- archType String
- A filter to return only profiles that match the given archType.
- compartmentId String
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- displayName StringContains 
- A filter to return resources that may partially match the given display name.
- displayNames List<String>
- A filter to return resources that match the given display names.
- filters
List<GetLifecycle Stages Filter> 
- lifecycleStage StringId 
- The OCID of the lifecycle stage.
- locationNot List<String>Equal Tos 
- A filter to return only resources whose location does not match the given value.
- locations List<String>
- A filter to return only resources whose location matches the given value.
- osFamily String
- A filter to return only resources that match the given operating system family.
- softwareSource StringId 
- The OCID of the software source. This filter returns resources associated with this software source.
- state String
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- archType string
- A filter to return only profiles that match the given archType.
- compartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- displayName stringContains 
- A filter to return resources that may partially match the given display name.
- displayNames string[]
- A filter to return resources that match the given display names.
- filters
GetLifecycle Stages Filter[] 
- lifecycleStage stringId 
- The OCID of the lifecycle stage.
- locationNot string[]Equal Tos 
- A filter to return only resources whose location does not match the given value.
- locations string[]
- A filter to return only resources whose location matches the given value.
- osFamily string
- A filter to return only resources that match the given operating system family.
- softwareSource stringId 
- The OCID of the software source. This filter returns resources associated with this software source.
- state string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- arch_type str
- A filter to return only profiles that match the given archType.
- compartment_id str
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display_name_ strcontains 
- A filter to return resources that may partially match the given display name.
- display_names Sequence[str]
- A filter to return resources that match the given display names.
- filters
Sequence[osmanagementhub.Get Lifecycle Stages Filter] 
- lifecycle_stage_ strid 
- The OCID of the lifecycle stage.
- location_not_ Sequence[str]equal_ tos 
- A filter to return only resources whose location does not match the given value.
- locations Sequence[str]
- A filter to return only resources whose location matches the given value.
- os_family str
- A filter to return only resources that match the given operating system family.
- software_source_ strid 
- The OCID of the software source. This filter returns resources associated with this software source.
- state str
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- archType String
- A filter to return only profiles that match the given archType.
- compartmentId String
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- displayName StringContains 
- A filter to return resources that may partially match the given display name.
- displayNames List<String>
- A filter to return resources that match the given display names.
- filters List<Property Map>
- lifecycleStage StringId 
- The OCID of the lifecycle stage.
- locationNot List<String>Equal Tos 
- A filter to return only resources whose location does not match the given value.
- locations List<String>
- A filter to return only resources whose location matches the given value.
- osFamily String
- A filter to return only resources that match the given operating system family.
- softwareSource StringId 
- The OCID of the software source. This filter returns resources associated with this software source.
- state String
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
getLifecycleStages Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleStage List<GetCollections Lifecycle Stages Lifecycle Stage Collection> 
- The list of lifecycle_stage_collection.
- ArchType string
- The CPU architecture of the managed instances in the lifecycle stage.
- CompartmentId string
- The OCID of the compartment that contains the lifecycle stage.
- DisplayName stringContains 
- DisplayNames List<string>
- Software source name.
- Filters
List<GetLifecycle Stages Filter> 
- LifecycleStage stringId 
- LocationNot List<string>Equal Tos 
- Locations List<string>
- The location of managed instances associated with the lifecycle stage.
- OsFamily string
- The operating system of the managed instances in the lifecycle stage.
- SoftwareSource stringId 
- Provides identifying information for the specified software source.
- State string
- The current state of the lifecycle stage.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleStage []GetCollections Lifecycle Stages Lifecycle Stage Collection 
- The list of lifecycle_stage_collection.
- ArchType string
- The CPU architecture of the managed instances in the lifecycle stage.
- CompartmentId string
- The OCID of the compartment that contains the lifecycle stage.
- DisplayName stringContains 
- DisplayNames []string
- Software source name.
- Filters
[]GetLifecycle Stages Filter 
- LifecycleStage stringId 
- LocationNot []stringEqual Tos 
- Locations []string
- The location of managed instances associated with the lifecycle stage.
- OsFamily string
- The operating system of the managed instances in the lifecycle stage.
- SoftwareSource stringId 
- Provides identifying information for the specified software source.
- State string
- The current state of the lifecycle stage.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleStage List<GetCollections Lifecycle Stages Lifecycle Stage Collection> 
- The list of lifecycle_stage_collection.
- archType String
- The CPU architecture of the managed instances in the lifecycle stage.
- compartmentId String
- The OCID of the compartment that contains the lifecycle stage.
- displayName StringContains 
- displayNames List<String>
- Software source name.
- filters
List<GetLifecycle Stages Filter> 
- lifecycleStage StringId 
- locationNot List<String>Equal Tos 
- locations List<String>
- The location of managed instances associated with the lifecycle stage.
- osFamily String
- The operating system of the managed instances in the lifecycle stage.
- softwareSource StringId 
- Provides identifying information for the specified software source.
- state String
- The current state of the lifecycle stage.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleStage GetCollections Lifecycle Stages Lifecycle Stage Collection[] 
- The list of lifecycle_stage_collection.
- archType string
- The CPU architecture of the managed instances in the lifecycle stage.
- compartmentId string
- The OCID of the compartment that contains the lifecycle stage.
- displayName stringContains 
- displayNames string[]
- Software source name.
- filters
GetLifecycle Stages Filter[] 
- lifecycleStage stringId 
- locationNot string[]Equal Tos 
- locations string[]
- The location of managed instances associated with the lifecycle stage.
- osFamily string
- The operating system of the managed instances in the lifecycle stage.
- softwareSource stringId 
- Provides identifying information for the specified software source.
- state string
- The current state of the lifecycle stage.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_stage_ Sequence[osmanagementhub.collections Get Lifecycle Stages Lifecycle Stage Collection] 
- The list of lifecycle_stage_collection.
- arch_type str
- The CPU architecture of the managed instances in the lifecycle stage.
- compartment_id str
- The OCID of the compartment that contains the lifecycle stage.
- display_name_ strcontains 
- display_names Sequence[str]
- Software source name.
- filters
Sequence[osmanagementhub.Get Lifecycle Stages Filter] 
- lifecycle_stage_ strid 
- location_not_ Sequence[str]equal_ tos 
- locations Sequence[str]
- The location of managed instances associated with the lifecycle stage.
- os_family str
- The operating system of the managed instances in the lifecycle stage.
- software_source_ strid 
- Provides identifying information for the specified software source.
- state str
- The current state of the lifecycle stage.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleStage List<Property Map>Collections 
- The list of lifecycle_stage_collection.
- archType String
- The CPU architecture of the managed instances in the lifecycle stage.
- compartmentId String
- The OCID of the compartment that contains the lifecycle stage.
- displayName StringContains 
- displayNames List<String>
- Software source name.
- filters List<Property Map>
- lifecycleStage StringId 
- locationNot List<String>Equal Tos 
- locations List<String>
- The location of managed instances associated with the lifecycle stage.
- osFamily String
- The operating system of the managed instances in the lifecycle stage.
- softwareSource StringId 
- Provides identifying information for the specified software source.
- state String
- The current state of the lifecycle stage.
Supporting Types
GetLifecycleStagesFilter   
GetLifecycleStagesLifecycleStageCollection     
GetLifecycleStagesLifecycleStageCollectionItem      
- ArchType string
- A filter to return only profiles that match the given archType.
- CompartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return resources that match the given display names.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the software source.
- LifecycleEnvironment stringDisplay Name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- LifecycleEnvironment stringId 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- Location string
- A filter to return only resources whose location matches the given value.
- ManagedInstances int
- The number of managed instances associated with the lifecycle stage.
- OsFamily string
- A filter to return only resources that match the given operating system family.
- Rank int
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- SoftwareSource List<GetIds Lifecycle Stages Lifecycle Stage Collection Item Software Source Id> 
- The OCID of the software source. This filter returns resources associated with this software source.
- State string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the lifecycle stage was created (in RFC 3339 format).
- TimeModified string
- The time the lifecycle stage was last modified (in RFC 3339 format).
- VendorName string
- The vendor of the operating system used by the managed instances in the lifecycle stage.
- ArchType string
- A filter to return only profiles that match the given archType.
- CompartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return resources that match the given display names.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Id string
- The OCID of the software source.
- LifecycleEnvironment stringDisplay Name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- LifecycleEnvironment stringId 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- Location string
- A filter to return only resources whose location matches the given value.
- ManagedInstances int
- The number of managed instances associated with the lifecycle stage.
- OsFamily string
- A filter to return only resources that match the given operating system family.
- Rank int
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- SoftwareSource []GetIds Lifecycle Stages Lifecycle Stage Collection Item Software Source Id 
- The OCID of the software source. This filter returns resources associated with this software source.
- State string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the lifecycle stage was created (in RFC 3339 format).
- TimeModified string
- The time the lifecycle stage was last modified (in RFC 3339 format).
- VendorName string
- The vendor of the operating system used by the managed instances in the lifecycle stage.
- archType String
- A filter to return only profiles that match the given archType.
- compartmentId String
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return resources that match the given display names.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the software source.
- lifecycleEnvironment StringDisplay Name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- lifecycleEnvironment StringId 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- location String
- A filter to return only resources whose location matches the given value.
- managedInstances Integer
- The number of managed instances associated with the lifecycle stage.
- osFamily String
- A filter to return only resources that match the given operating system family.
- rank Integer
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- softwareSource List<GetIds Lifecycle Stages Lifecycle Stage Collection Item Software Source Id> 
- The OCID of the software source. This filter returns resources associated with this software source.
- state String
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the lifecycle stage was created (in RFC 3339 format).
- timeModified String
- The time the lifecycle stage was last modified (in RFC 3339 format).
- vendorName String
- The vendor of the operating system used by the managed instances in the lifecycle stage.
- archType string
- A filter to return only profiles that match the given archType.
- compartmentId string
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- A filter to return resources that match the given display names.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id string
- The OCID of the software source.
- lifecycleEnvironment stringDisplay Name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- lifecycleEnvironment stringId 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- location string
- A filter to return only resources whose location matches the given value.
- managedInstances number
- The number of managed instances associated with the lifecycle stage.
- osFamily string
- A filter to return only resources that match the given operating system family.
- rank number
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- softwareSource GetIds Lifecycle Stages Lifecycle Stage Collection Item Software Source Id[] 
- The OCID of the software source. This filter returns resources associated with this software source.
- state string
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the lifecycle stage was created (in RFC 3339 format).
- timeModified string
- The time the lifecycle stage was last modified (in RFC 3339 format).
- vendorName string
- The vendor of the operating system used by the managed instances in the lifecycle stage.
- arch_type str
- A filter to return only profiles that match the given archType.
- compartment_id str
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- A filter to return resources that match the given display names.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id str
- The OCID of the software source.
- lifecycle_environment_ strdisplay_ name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- lifecycle_environment_ strid 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- location str
- A filter to return only resources whose location matches the given value.
- managed_instances int
- The number of managed instances associated with the lifecycle stage.
- os_family str
- A filter to return only resources that match the given operating system family.
- rank int
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- software_source_ Sequence[osmanagementhub.ids Get Lifecycle Stages Lifecycle Stage Collection Item Software Source Id] 
- The OCID of the software source. This filter returns resources associated with this software source.
- state str
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the lifecycle stage was created (in RFC 3339 format).
- time_modified str
- The time the lifecycle stage was last modified (in RFC 3339 format).
- vendor_name str
- The vendor of the operating system used by the managed instances in the lifecycle stage.
- archType String
- A filter to return only profiles that match the given archType.
- compartmentId String
- The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return resources that match the given display names.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- id String
- The OCID of the software source.
- lifecycleEnvironment StringDisplay Name 
- The user-friendly name for the lifecycle environment. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- lifecycleEnvironment StringId 
- The OCID of the lifecycle environment that contains the lifecycle stage.
- location String
- A filter to return only resources whose location matches the given value.
- managedInstances Number
- The number of managed instances associated with the lifecycle stage.
- osFamily String
- A filter to return only resources that match the given operating system family.
- rank Number
- User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment.
- softwareSource List<Property Map>Ids 
- The OCID of the software source. This filter returns resources associated with this software source.
- state String
- A filter to return only lifecycle stages whose lifecycle state matches the given lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the lifecycle stage was created (in RFC 3339 format).
- timeModified String
- The time the lifecycle stage was last modified (in RFC 3339 format).
- vendorName String
- The vendor of the operating system used by the managed instances in the lifecycle stage.
GetLifecycleStagesLifecycleStageCollectionItemSoftwareSourceId         
- Description string
- Software source description.
- DisplayName string
- A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- IsMandatory boolFor Autonomous Linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- SoftwareSource stringType 
- Type of the software source.
- Description string
- Software source description.
- DisplayName string
- A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- IsMandatory boolFor Autonomous Linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- SoftwareSource stringType 
- Type of the software source.
- description String
- Software source description.
- displayName String
- A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- isMandatory BooleanFor Autonomous Linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- softwareSource StringType 
- Type of the software source.
- description string
- Software source description.
- displayName string
- A filter to return resources that match the given display names.
- id string
- The OCID of the software source.
- isMandatory booleanFor Autonomous Linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- softwareSource stringType 
- Type of the software source.
- description str
- Software source description.
- display_name str
- A filter to return resources that match the given display names.
- id str
- The OCID of the software source.
- is_mandatory_ boolfor_ autonomous_ linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- software_source_ strtype 
- Type of the software source.
- description String
- Software source description.
- displayName String
- A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- isMandatory BooleanFor Autonomous Linux 
- Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- softwareSource StringType 
- Type of the software source.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.