import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Lifecycle Environment resource in Oracle Cloud Infrastructure Os Management Hub service. * * Gets information about the specified lifecycle environment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLifecycleEnvironment = oci.osmanagementhub.getLifecycleEnvironment({ * lifecycleEnvironmentId: testLifecycleEnvironmentOciOsManagementHubLifecycleEnvironment.id, * }); * ``` */ export declare function getLifecycleEnvironment(args: GetLifecycleEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLifecycleEnvironment. */ export interface GetLifecycleEnvironmentArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle environment. */ lifecycleEnvironmentId: string; } /** * A collection of values returned by getLifecycleEnvironment. */ export interface GetLifecycleEnvironmentResult { /** * 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 description. */ readonly description: 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. */ 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; /** * 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.GetLifecycleEnvironmentManagedInstanceId[]; /** * The operating system of the managed instances in the lifecycle stage. */ readonly osFamily: string; /** * User-specified list of lifecycle stages used within the lifecycle environment. */ readonly stages: outputs.OsManagementHub.GetLifecycleEnvironmentStage[]; /** * The current state of the lifecycle environment. */ 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 environment was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeCreated: string; /** * The time the lifecycle environment 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 environment. */ readonly vendorName: string; } /** * This data source provides details about a specific Lifecycle Environment resource in Oracle Cloud Infrastructure Os Management Hub service. * * Gets information about the specified lifecycle environment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLifecycleEnvironment = oci.osmanagementhub.getLifecycleEnvironment({ * lifecycleEnvironmentId: testLifecycleEnvironmentOciOsManagementHubLifecycleEnvironment.id, * }); * ``` */ export declare function getLifecycleEnvironmentOutput(args: GetLifecycleEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLifecycleEnvironment. */ export interface GetLifecycleEnvironmentOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle environment. */ lifecycleEnvironmentId: pulumi.Input; } //# sourceMappingURL=getLifecycleEnvironment.d.ts.map