import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Lifecycle Stage resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the specified lifecycle stage. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLifecycleStage = oci.osmanagementhub.getLifecycleStage({ * lifecycleStageId: testLifecycleStageOciOsManagementHubLifecycleStage.id, * }); * ``` */ export declare function getLifecycleStage(args: GetLifecycleStageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLifecycleStage. */ export interface GetLifecycleStageArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage. */ lifecycleStageId: string; } /** * A collection of values returned by getLifecycleStage. */ export interface GetLifecycleStageResult { /** * The CPU architecture of the managed instances in the lifecycle stage. */ readonly archType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the lifecycle stage. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Software source name. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle environment that contains the lifecycle stage. */ readonly lifecycleEnvironmentId: string; readonly lifecycleStageId: string; /** * The location of managed instances associated with the lifecycle stage. */ readonly location: string; /** * The list of managed instances associated with the lifecycle stage. */ readonly managedInstanceIds: outputs.OsManagementHub.GetLifecycleStageManagedInstanceId[]; /** * The operating system of the managed instances in the lifecycle stage. */ readonly osFamily: string; /** * User-specified rank for the lifecycle stage. Rank determines the hierarchy of the lifecycle stages within the lifecycle environment. */ readonly rank: number; /** * Provides identifying information for the specified software source. */ readonly softwareSourceIds: outputs.OsManagementHub.GetLifecycleStageSoftwareSourceId[]; /** * The current state of the lifecycle stage. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the lifecycle stage was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeCreated: string; /** * The time the lifecycle stage was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeModified: string; /** * The vendor of the operating system used by the managed instances in the lifecycle stage. */ readonly vendorName: string; } /** * This data source provides details about a specific Lifecycle Stage resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the specified lifecycle stage. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLifecycleStage = oci.osmanagementhub.getLifecycleStage({ * lifecycleStageId: testLifecycleStageOciOsManagementHubLifecycleStage.id, * }); * ``` */ export declare function getLifecycleStageOutput(args: GetLifecycleStageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLifecycleStage. */ export interface GetLifecycleStageOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage. */ lifecycleStageId: pulumi.Input; } //# sourceMappingURL=getLifecycleStage.d.ts.map