oci.OsManagementHub.Profile
Explore with Pulumi AI
This resource provides the Profile resource in Oracle Cloud Infrastructure Os Management Hub service.
Creates a registration profile. A profile defines the content applied to the instance when registering it with the service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testProfile = new oci.osmanagementhub.Profile("test_profile", {
    compartmentId: compartmentId,
    displayName: profileDisplayName,
    profileType: profileProfileType,
    archType: profileArchType,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: profileDescription,
    freeformTags: {
        Department: "Finance",
    },
    isDefaultProfile: profileIsDefaultProfile,
    lifecycleStageId: testLifecycleStage.id,
    managedInstanceGroupId: testManagedInstanceGroup.id,
    managementStationId: testManagementStation.id,
    osFamily: profileOsFamily,
    registrationType: profileRegistrationType,
    softwareSourceIds: profileSoftwareSourceIds,
    vendorName: profileVendorName,
});
import pulumi
import pulumi_oci as oci
test_profile = oci.os_management_hub.Profile("test_profile",
    compartment_id=compartment_id,
    display_name=profile_display_name,
    profile_type=profile_profile_type,
    arch_type=profile_arch_type,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=profile_description,
    freeform_tags={
        "Department": "Finance",
    },
    is_default_profile=profile_is_default_profile,
    lifecycle_stage_id=test_lifecycle_stage["id"],
    managed_instance_group_id=test_managed_instance_group["id"],
    management_station_id=test_management_station["id"],
    os_family=profile_os_family,
    registration_type=profile_registration_type,
    software_source_ids=profile_software_source_ids,
    vendor_name=profile_vendor_name)
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.NewProfile(ctx, "test_profile", &osmanagementhub.ProfileArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(profileDisplayName),
			ProfileType:   pulumi.Any(profileProfileType),
			ArchType:      pulumi.Any(profileArchType),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(profileDescription),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IsDefaultProfile:       pulumi.Any(profileIsDefaultProfile),
			LifecycleStageId:       pulumi.Any(testLifecycleStage.Id),
			ManagedInstanceGroupId: pulumi.Any(testManagedInstanceGroup.Id),
			ManagementStationId:    pulumi.Any(testManagementStation.Id),
			OsFamily:               pulumi.Any(profileOsFamily),
			RegistrationType:       pulumi.Any(profileRegistrationType),
			SoftwareSourceIds:      pulumi.Any(profileSoftwareSourceIds),
			VendorName:             pulumi.Any(profileVendorName),
		})
		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 testProfile = new Oci.OsManagementHub.Profile("test_profile", new()
    {
        CompartmentId = compartmentId,
        DisplayName = profileDisplayName,
        ProfileType = profileProfileType,
        ArchType = profileArchType,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = profileDescription,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsDefaultProfile = profileIsDefaultProfile,
        LifecycleStageId = testLifecycleStage.Id,
        ManagedInstanceGroupId = testManagedInstanceGroup.Id,
        ManagementStationId = testManagementStation.Id,
        OsFamily = profileOsFamily,
        RegistrationType = profileRegistrationType,
        SoftwareSourceIds = profileSoftwareSourceIds,
        VendorName = profileVendorName,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.Profile;
import com.pulumi.oci.OsManagementHub.ProfileArgs;
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) {
        var testProfile = new Profile("testProfile", ProfileArgs.builder()
            .compartmentId(compartmentId)
            .displayName(profileDisplayName)
            .profileType(profileProfileType)
            .archType(profileArchType)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(profileDescription)
            .freeformTags(Map.of("Department", "Finance"))
            .isDefaultProfile(profileIsDefaultProfile)
            .lifecycleStageId(testLifecycleStage.id())
            .managedInstanceGroupId(testManagedInstanceGroup.id())
            .managementStationId(testManagementStation.id())
            .osFamily(profileOsFamily)
            .registrationType(profileRegistrationType)
            .softwareSourceIds(profileSoftwareSourceIds)
            .vendorName(profileVendorName)
            .build());
    }
}
resources:
  testProfile:
    type: oci:OsManagementHub:Profile
    name: test_profile
    properties:
      compartmentId: ${compartmentId}
      displayName: ${profileDisplayName}
      profileType: ${profileProfileType}
      archType: ${profileArchType}
      definedTags:
        Operations.CostCenter: '42'
      description: ${profileDescription}
      freeformTags:
        Department: Finance
      isDefaultProfile: ${profileIsDefaultProfile}
      lifecycleStageId: ${testLifecycleStage.id}
      managedInstanceGroupId: ${testManagedInstanceGroup.id}
      managementStationId: ${testManagementStation.id}
      osFamily: ${profileOsFamily}
      registrationType: ${profileRegistrationType}
      softwareSourceIds: ${profileSoftwareSourceIds}
      vendorName: ${profileVendorName}
Create Profile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Profile(name: string, args: ProfileArgs, opts?: CustomResourceOptions);@overload
def Profile(resource_name: str,
            args: ProfileArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Profile(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            display_name: Optional[str] = None,
            compartment_id: Optional[str] = None,
            profile_type: Optional[str] = None,
            is_default_profile: Optional[bool] = None,
            description: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            arch_type: Optional[str] = None,
            lifecycle_stage_id: Optional[str] = None,
            managed_instance_group_id: Optional[str] = None,
            management_station_id: Optional[str] = None,
            os_family: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            registration_type: Optional[str] = None,
            software_source_ids: Optional[Sequence[str]] = None,
            vendor_name: Optional[str] = None)func NewProfile(ctx *Context, name string, args ProfileArgs, opts ...ResourceOption) (*Profile, error)public Profile(string name, ProfileArgs args, CustomResourceOptions? opts = null)
public Profile(String name, ProfileArgs args)
public Profile(String name, ProfileArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:Profile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ociProfileResource = new Oci.OsManagementHub.Profile("ociProfileResource", new()
{
    DisplayName = "string",
    CompartmentId = "string",
    ProfileType = "string",
    IsDefaultProfile = false,
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    ArchType = "string",
    LifecycleStageId = "string",
    ManagedInstanceGroupId = "string",
    ManagementStationId = "string",
    OsFamily = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    RegistrationType = "string",
    SoftwareSourceIds = new[]
    {
        "string",
    },
    VendorName = "string",
});
example, err := OsManagementHub.NewProfile(ctx, "ociProfileResource", &OsManagementHub.ProfileArgs{
	DisplayName:      pulumi.String("string"),
	CompartmentId:    pulumi.String("string"),
	ProfileType:      pulumi.String("string"),
	IsDefaultProfile: pulumi.Bool(false),
	Description:      pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ArchType:               pulumi.String("string"),
	LifecycleStageId:       pulumi.String("string"),
	ManagedInstanceGroupId: pulumi.String("string"),
	ManagementStationId:    pulumi.String("string"),
	OsFamily:               pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	RegistrationType: pulumi.String("string"),
	SoftwareSourceIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	VendorName: pulumi.String("string"),
})
var ociProfileResource = new Profile("ociProfileResource", ProfileArgs.builder()
    .displayName("string")
    .compartmentId("string")
    .profileType("string")
    .isDefaultProfile(false)
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .archType("string")
    .lifecycleStageId("string")
    .managedInstanceGroupId("string")
    .managementStationId("string")
    .osFamily("string")
    .definedTags(Map.of("string", "string"))
    .registrationType("string")
    .softwareSourceIds("string")
    .vendorName("string")
    .build());
oci_profile_resource = oci.os_management_hub.Profile("ociProfileResource",
    display_name="string",
    compartment_id="string",
    profile_type="string",
    is_default_profile=False,
    description="string",
    freeform_tags={
        "string": "string",
    },
    arch_type="string",
    lifecycle_stage_id="string",
    managed_instance_group_id="string",
    management_station_id="string",
    os_family="string",
    defined_tags={
        "string": "string",
    },
    registration_type="string",
    software_source_ids=["string"],
    vendor_name="string")
const ociProfileResource = new oci.osmanagementhub.Profile("ociProfileResource", {
    displayName: "string",
    compartmentId: "string",
    profileType: "string",
    isDefaultProfile: false,
    description: "string",
    freeformTags: {
        string: "string",
    },
    archType: "string",
    lifecycleStageId: "string",
    managedInstanceGroupId: "string",
    managementStationId: "string",
    osFamily: "string",
    definedTags: {
        string: "string",
    },
    registrationType: "string",
    softwareSourceIds: ["string"],
    vendorName: "string",
});
type: oci:OsManagementHub:Profile
properties:
    archType: string
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    isDefaultProfile: false
    lifecycleStageId: string
    managedInstanceGroupId: string
    managementStationId: string
    osFamily: string
    profileType: string
    registrationType: string
    softwareSourceIds:
        - string
    vendorName: string
Profile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Profile resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- ProfileType string
- The type of profile.
- ArchType string
- The architecture type.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) User-specified description of the registration profile.
- Dictionary<string, string>
- (Updatable) 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"}
- IsDefault boolProfile 
- (Updatable) 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.
- LifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- ManagedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- ManagementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- OsFamily string
- The operating system family.
- RegistrationType string
- The type of instance to register.
- SoftwareSource List<string>Ids 
- The list of software source OCIDs that the registration profile will use.
- VendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- ProfileType string
- The type of profile.
- ArchType string
- The architecture type.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) User-specified description of the registration profile.
- map[string]string
- (Updatable) 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"}
- IsDefault boolProfile 
- (Updatable) 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.
- LifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- ManagedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- ManagementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- OsFamily string
- The operating system family.
- RegistrationType string
- The type of instance to register.
- SoftwareSource []stringIds 
- The list of software source OCIDs that the registration profile will use.
- VendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId String
- (Updatable) The OCID of the compartment that contains the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- profileType String
- The type of profile.
- archType String
- The architecture type.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) User-specified description of the registration profile.
- Map<String,String>
- (Updatable) 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"}
- isDefault BooleanProfile 
- (Updatable) 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.
- lifecycleStage StringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- managedInstance StringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managementStation StringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily String
- The operating system family.
- registrationType String
- The type of instance to register.
- softwareSource List<String>Ids 
- The list of software source OCIDs that the registration profile will use.
- vendorName String
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- profileType string
- The type of profile.
- archType string
- The architecture type.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) User-specified description of the registration profile.
- {[key: string]: string}
- (Updatable) 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"}
- isDefault booleanProfile 
- (Updatable) 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.
- lifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- managedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily string
- The operating system family.
- registrationType string
- The type of instance to register.
- softwareSource string[]Ids 
- The list of software source OCIDs that the registration profile will use.
- vendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartment_id str
- (Updatable) The OCID of the compartment that contains the registration profile.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- profile_type str
- The type of profile.
- arch_type str
- The architecture type.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) User-specified description of the registration profile.
- Mapping[str, str]
- (Updatable) 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"}
- is_default_ boolprofile 
- (Updatable) 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.
- lifecycle_stage_ strid 
- The OCID of the lifecycle stage that the instance will be associated with.
- managed_instance_ strgroup_ id 
- The OCID of the managed instance group that the instance will join after registration.
- management_station_ strid 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- os_family str
- The operating system family.
- registration_type str
- The type of instance to register.
- software_source_ Sequence[str]ids 
- The list of software source OCIDs that the registration profile will use.
- vendor_name str
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- compartmentId String
- (Updatable) The OCID of the compartment that contains the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- profileType String
- The type of profile.
- archType String
- The architecture type.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) User-specified description of the registration profile.
- Map<String>
- (Updatable) 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"}
- isDefault BooleanProfile 
- (Updatable) 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.
- lifecycleStage StringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- managedInstance StringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managementStation StringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily String
- The operating system family.
- registrationType String
- The type of instance to register.
- softwareSource List<String>Ids 
- The list of software source OCIDs that the registration profile will use.
- vendorName String
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Outputs
All input properties are implicitly available as output properties. Additionally, the Profile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- IsService boolProvided Profile 
- 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.
- LifecycleEnvironments List<ProfileLifecycle Environment> 
- Provides identifying information for the specified lifecycle environment.
- LifecycleStages List<ProfileLifecycle Stage> 
- Provides identifying information for the specified lifecycle stage.
- ManagedInstance List<ProfileGroups Managed Instance Group> 
- Provides identifying information for the specified managed instance group.
- ProfileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- SoftwareSources List<ProfileSoftware Source> 
- The list of software sources that the registration profile will use.
- State string
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- TimeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- Id string
- The provider-assigned unique ID for this managed resource.
- IsService boolProvided Profile 
- 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.
- LifecycleEnvironments []ProfileLifecycle Environment 
- Provides identifying information for the specified lifecycle environment.
- LifecycleStages []ProfileLifecycle Stage 
- Provides identifying information for the specified lifecycle stage.
- ManagedInstance []ProfileGroups Managed Instance Group 
- Provides identifying information for the specified managed instance group.
- ProfileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- SoftwareSources []ProfileSoftware Source 
- The list of software sources that the registration profile will use.
- State string
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- TimeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- id String
- The provider-assigned unique ID for this managed resource.
- isService BooleanProvided Profile 
- 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.
- lifecycleEnvironments List<ProfileLifecycle Environment> 
- Provides identifying information for the specified lifecycle environment.
- lifecycleStages List<ProfileLifecycle Stage> 
- Provides identifying information for the specified lifecycle stage.
- managedInstance List<ProfileGroups Managed Instance Group> 
- Provides identifying information for the specified managed instance group.
- profileVersion String
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- softwareSources List<ProfileSoftware Source> 
- The list of software sources that the registration profile will use.
- state String
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- timeModified String
- The time the registration profile was last modified (in RFC 3339 format).
- id string
- The provider-assigned unique ID for this managed resource.
- isService booleanProvided Profile 
- 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.
- lifecycleEnvironments ProfileLifecycle Environment[] 
- Provides identifying information for the specified lifecycle environment.
- lifecycleStages ProfileLifecycle Stage[] 
- Provides identifying information for the specified lifecycle stage.
- managedInstance ProfileGroups Managed Instance Group[] 
- Provides identifying information for the specified managed instance group.
- profileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- softwareSources ProfileSoftware Source[] 
- The list of software sources that the registration profile will use.
- state string
- The current state of the registration profile.
- {[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 registration profile was created (in RFC 3339 format).
- timeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- id str
- The provider-assigned unique ID for this managed resource.
- is_service_ boolprovided_ profile 
- 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.
- lifecycle_environments Sequence[osmanagementhub.Profile Lifecycle Environment] 
- Provides identifying information for the specified lifecycle environment.
- lifecycle_stages Sequence[osmanagementhub.Profile Lifecycle Stage] 
- Provides identifying information for the specified lifecycle stage.
- managed_instance_ Sequence[osmanagementhub.groups Profile Managed Instance Group] 
- Provides identifying information for the specified managed instance group.
- profile_version str
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- software_sources Sequence[osmanagementhub.Profile Software Source] 
- The list of software sources that the registration profile will use.
- state str
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- time_modified str
- The time the registration profile was last modified (in RFC 3339 format).
- id String
- The provider-assigned unique ID for this managed resource.
- isService BooleanProvided Profile 
- 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.
- lifecycleEnvironments List<Property Map>
- Provides identifying information for the specified lifecycle environment.
- lifecycleStages List<Property Map>
- Provides identifying information for the specified lifecycle stage.
- managedInstance List<Property Map>Groups 
- Provides identifying information for the specified managed instance group.
- profileVersion String
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- softwareSources List<Property Map>
- The list of software sources that the registration profile will use.
- state String
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- timeModified String
- The time the registration profile was last modified (in RFC 3339 format).
Look up Existing Profile Resource
Get an existing Profile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProfileState, opts?: CustomResourceOptions): Profile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arch_type: Optional[str] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_default_profile: Optional[bool] = None,
        is_service_provided_profile: Optional[bool] = None,
        lifecycle_environments: Optional[Sequence[_osmanagementhub.ProfileLifecycleEnvironmentArgs]] = None,
        lifecycle_stage_id: Optional[str] = None,
        lifecycle_stages: Optional[Sequence[_osmanagementhub.ProfileLifecycleStageArgs]] = None,
        managed_instance_group_id: Optional[str] = None,
        managed_instance_groups: Optional[Sequence[_osmanagementhub.ProfileManagedInstanceGroupArgs]] = None,
        management_station_id: Optional[str] = None,
        os_family: Optional[str] = None,
        profile_type: Optional[str] = None,
        profile_version: Optional[str] = None,
        registration_type: Optional[str] = None,
        software_source_ids: Optional[Sequence[str]] = None,
        software_sources: Optional[Sequence[_osmanagementhub.ProfileSoftwareSourceArgs]] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_modified: Optional[str] = None,
        vendor_name: Optional[str] = None) -> Profilefunc GetProfile(ctx *Context, name string, id IDInput, state *ProfileState, opts ...ResourceOption) (*Profile, error)public static Profile Get(string name, Input<string> id, ProfileState? state, CustomResourceOptions? opts = null)public static Profile get(String name, Output<String> id, ProfileState state, CustomResourceOptions options)resources:  _:    type: oci:OsManagementHub:Profile    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- ArchType string
- The architecture type.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) User-specified description of the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) 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"}
- IsDefault boolProfile 
- (Updatable) 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.
- IsService boolProvided Profile 
- 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.
- LifecycleEnvironments List<ProfileLifecycle Environment> 
- Provides identifying information for the specified lifecycle environment.
- LifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- LifecycleStages List<ProfileLifecycle Stage> 
- Provides identifying information for the specified lifecycle stage.
- ManagedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- ManagedInstance List<ProfileGroups Managed Instance Group> 
- Provides identifying information for the specified managed instance group.
- ManagementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- OsFamily string
- The operating system family.
- ProfileType string
- The type of profile.
- ProfileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- RegistrationType string
- The type of instance to register.
- SoftwareSource List<string>Ids 
- The list of software source OCIDs that the registration profile will use.
- SoftwareSources List<ProfileSoftware Source> 
- The list of software sources that the registration profile will use.
- State string
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- TimeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- VendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- ArchType string
- The architecture type.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) User-specified description of the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- map[string]string
- (Updatable) 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"}
- IsDefault boolProfile 
- (Updatable) 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.
- IsService boolProvided Profile 
- 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.
- LifecycleEnvironments []ProfileLifecycle Environment Args 
- Provides identifying information for the specified lifecycle environment.
- LifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- LifecycleStages []ProfileLifecycle Stage Args 
- Provides identifying information for the specified lifecycle stage.
- ManagedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- ManagedInstance []ProfileGroups Managed Instance Group Args 
- Provides identifying information for the specified managed instance group.
- ManagementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- OsFamily string
- The operating system family.
- ProfileType string
- The type of profile.
- ProfileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- RegistrationType string
- The type of instance to register.
- SoftwareSource []stringIds 
- The list of software source OCIDs that the registration profile will use.
- SoftwareSources []ProfileSoftware Source Args 
- The list of software sources that the registration profile will use.
- State string
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- TimeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- VendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- archType String
- The architecture type.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the registration profile.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) User-specified description of the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Map<String,String>
- (Updatable) 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"}
- isDefault BooleanProfile 
- (Updatable) 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.
- isService BooleanProvided Profile 
- 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.
- lifecycleEnvironments List<ProfileLifecycle Environment> 
- Provides identifying information for the specified lifecycle environment.
- lifecycleStage StringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- lifecycleStages List<ProfileLifecycle Stage> 
- Provides identifying information for the specified lifecycle stage.
- managedInstance StringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managedInstance List<ProfileGroups Managed Instance Group> 
- Provides identifying information for the specified managed instance group.
- managementStation StringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily String
- The operating system family.
- profileType String
- The type of profile.
- profileVersion String
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- registrationType String
- The type of instance to register.
- softwareSource List<String>Ids 
- The list of software source OCIDs that the registration profile will use.
- softwareSources List<ProfileSoftware Source> 
- The list of software sources that the registration profile will use.
- state String
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- timeModified String
- The time the registration profile was last modified (in RFC 3339 format).
- vendorName String
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- archType string
- The architecture type.
- compartmentId string
- (Updatable) The OCID of the compartment that contains the registration profile.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) User-specified description of the registration profile.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) 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"}
- isDefault booleanProfile 
- (Updatable) 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.
- isService booleanProvided Profile 
- 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.
- lifecycleEnvironments ProfileLifecycle Environment[] 
- Provides identifying information for the specified lifecycle environment.
- lifecycleStage stringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- lifecycleStages ProfileLifecycle Stage[] 
- Provides identifying information for the specified lifecycle stage.
- managedInstance stringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managedInstance ProfileGroups Managed Instance Group[] 
- Provides identifying information for the specified managed instance group.
- managementStation stringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily string
- The operating system family.
- profileType string
- The type of profile.
- profileVersion string
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- registrationType string
- The type of instance to register.
- softwareSource string[]Ids 
- The list of software source OCIDs that the registration profile will use.
- softwareSources ProfileSoftware Source[] 
- The list of software sources that the registration profile will use.
- state string
- The current state of the registration profile.
- {[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 registration profile was created (in RFC 3339 format).
- timeModified string
- The time the registration profile was last modified (in RFC 3339 format).
- vendorName string
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- arch_type str
- The architecture type.
- compartment_id str
- (Updatable) The OCID of the compartment that contains the registration profile.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) User-specified description of the registration profile.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) 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"}
- is_default_ boolprofile 
- (Updatable) 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.
- is_service_ boolprovided_ profile 
- 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.
- lifecycle_environments Sequence[osmanagementhub.Profile Lifecycle Environment Args] 
- Provides identifying information for the specified lifecycle environment.
- lifecycle_stage_ strid 
- The OCID of the lifecycle stage that the instance will be associated with.
- lifecycle_stages Sequence[osmanagementhub.Profile Lifecycle Stage Args] 
- Provides identifying information for the specified lifecycle stage.
- managed_instance_ strgroup_ id 
- The OCID of the managed instance group that the instance will join after registration.
- managed_instance_ Sequence[osmanagementhub.groups Profile Managed Instance Group Args] 
- Provides identifying information for the specified managed instance group.
- management_station_ strid 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- os_family str
- The operating system family.
- profile_type str
- The type of profile.
- profile_version str
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- registration_type str
- The type of instance to register.
- software_source_ Sequence[str]ids 
- The list of software source OCIDs that the registration profile will use.
- software_sources Sequence[osmanagementhub.Profile Software Source Args] 
- The list of software sources that the registration profile will use.
- state str
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- time_modified str
- The time the registration profile was last modified (in RFC 3339 format).
- vendor_name str
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- archType String
- The architecture type.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the registration profile.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) User-specified description of the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Map<String>
- (Updatable) 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"}
- isDefault BooleanProfile 
- (Updatable) 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.
- isService BooleanProvided Profile 
- 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.
- lifecycleEnvironments List<Property Map>
- Provides identifying information for the specified lifecycle environment.
- lifecycleStage StringId 
- The OCID of the lifecycle stage that the instance will be associated with.
- lifecycleStages List<Property Map>
- Provides identifying information for the specified lifecycle stage.
- managedInstance StringGroup Id 
- The OCID of the managed instance group that the instance will join after registration.
- managedInstance List<Property Map>Groups 
- Provides identifying information for the specified managed instance group.
- managementStation StringId 
- description: The OCID of the management station to associate with an instance once registered. This is required when creating a profile for non-OCI instances.
- osFamily String
- The operating system family.
- profileType String
- The type of profile.
- profileVersion String
- The version of the profile. The version is automatically incremented each time the profiled is edited.
- registrationType String
- The type of instance to register.
- softwareSource List<String>Ids 
- The list of software source OCIDs that the registration profile will use.
- softwareSources List<Property Map>
- The list of software sources that the registration profile will use.
- state String
- The current state of the registration profile.
- 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 registration profile was created (in RFC 3339 format).
- timeModified String
- The time the registration profile was last modified (in RFC 3339 format).
- vendorName String
- The vendor of the operating system for the instance. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Supporting Types
ProfileLifecycleEnvironment, ProfileLifecycleEnvironmentArgs      
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id string
- The OCID of the software source.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id str
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
ProfileLifecycleStage, ProfileLifecycleStageArgs      
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id string
- The OCID of the software source.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id str
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
ProfileManagedInstanceGroup, ProfileManagedInstanceGroupArgs        
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- Id string
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id string
- The OCID of the software source.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id str
- The OCID of the software source.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- id String
- The OCID of the software source.
ProfileSoftwareSource, ProfileSoftwareSourceArgs      
- Description string
- (Updatable) User-specified description of the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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
- (Updatable) User-specified description of the registration profile.
- DisplayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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
- (Updatable) User-specified description of the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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
- (Updatable) User-specified description of the registration profile.
- displayName string
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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
- (Updatable) User-specified description of the registration profile.
- display_name str
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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
- (Updatable) User-specified description of the registration profile.
- displayName String
- (Updatable) A user-friendly name. Does not have to be unique and you can change the name later. Avoid entering confidential information.
- 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.
Import
Profiles can be imported using the id, e.g.
$ pulumi import oci:OsManagementHub/profile:Profile test_profile "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.