import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Profile resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the specified registration profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProfile = oci.osmanagementhub.getProfile({ * profileId: testProfileOciOsManagementHubProfile.id, * }); * ``` */ export declare function getProfile(args: GetProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. */ profileId: string; } /** * A collection of values returned by getProfile. */ export interface GetProfileResult { /** * 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; /** * 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; /** * 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.GetProfileLifecycleEnvironment[]; readonly lifecycleStageId: string; /** * Provides identifying information for the specified lifecycle stage. */ readonly lifecycleStages: outputs.OsManagementHub.GetProfileLifecycleStage[]; readonly managedInstanceGroupId: string; /** * Provides identifying information for the specified managed instance group. */ readonly managedInstanceGroups: outputs.OsManagementHub.GetProfileManagedInstanceGroup[]; /** * 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 by 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. The version is automatically incremented each time the profiled is edited. */ readonly profileVersion: string; /** * The type of instance to register. */ readonly registrationType: string; readonly softwareSourceIds: string[]; /** * The list of software sources that the registration profile will use. */ readonly softwareSources: outputs.OsManagementHub.GetProfileSoftwareSource[]; /** * The current state of the registration profile. */ 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 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 resource in Oracle Cloud Infrastructure Os Management Hub service. * * Returns information about the specified registration profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProfile = oci.osmanagementhub.getProfile({ * profileId: testProfileOciOsManagementHubProfile.id, * }); * ``` */ export declare function getProfileOutput(args: GetProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the registration profile. */ profileId: pulumi.Input; } //# sourceMappingURL=getProfile.d.ts.map