import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Profile Version resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the version of the specified registration profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProfileVersion = oci.osmanagementhub.getProfileVersion({ * profileId: testProfile.id, * profileVersion: profileVersionProfileVersion, * }); * ``` */ export declare function getProfileVersion(args: GetProfileVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProfileVersion. */ export interface GetProfileVersionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. */ profileId: string; /** * The version of the registration profile. */ profileVersion: string; } /** * A collection of values returned by getProfileVersion. */ export interface GetProfileVersionResult { /** * The architecture type. */ readonly archType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the registration profile. */ readonly compartmentId: string; /** * Software source description. */ readonly description: string; /** * Software source name. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified. */ readonly isDefaultProfile: boolean; /** * Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances. */ readonly isServiceProvidedProfile: boolean; /** * Provides identifying information for the specified lifecycle environment. */ readonly lifecycleEnvironments: outputs.OsManagementHub.GetProfileVersionLifecycleEnvironment[]; /** * Provides identifying information for the specified lifecycle stage. */ readonly lifecycleStages: outputs.OsManagementHub.GetProfileVersionLifecycleStage[]; /** * Provides identifying information for the specified managed instance group. */ readonly managedInstanceGroups: outputs.OsManagementHub.GetProfileVersionManagedInstanceGroup[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management station to associate with an instance once registered. Management stations are only used with non-OCI instances. */ readonly managementStationId: string; /** * The operating system family. */ readonly osFamily: string; readonly profileId: string; /** * The type of profile. */ readonly profileType: string; /** * The version of the profile. */ readonly profileVersion: string; /** * The type of instance to register. */ readonly registrationType: string; /** * The list of software sources that the registration profile will use. */ readonly softwareSources: outputs.OsManagementHub.GetProfileVersionSoftwareSource[]; /** * The current state of the registration profile. */ readonly state: string; /** * The time the registration profile was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeCreated: string; /** * The time the registration profile was last modified (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeModified: string; /** * The vendor of the operating system for the instance. */ readonly vendorName: string; } /** * This data source provides details about a specific Profile Version resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the version of the specified registration profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProfileVersion = oci.osmanagementhub.getProfileVersion({ * profileId: testProfile.id, * profileVersion: profileVersionProfileVersion, * }); * ``` */ export declare function getProfileVersionOutput(args: GetProfileVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProfileVersion. */ export interface GetProfileVersionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. */ profileId: pulumi.Input; /** * The version of the registration profile. */ profileVersion: pulumi.Input; } //# sourceMappingURL=getProfileVersion.d.ts.map