1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. ProfileAttachLifecycleStageManagement
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

oci.OsManagementHub.ProfileAttachLifecycleStageManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

    This resource provides the Profile Attach Lifecycle Stage Management resource in Oracle Cloud Infrastructure Os Management Hub service.

    Attaches the specified lifecycle stage to a profile.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testProfileAttachLifecycleStageManagement = new oci.osmanagementhub.ProfileAttachLifecycleStageManagement("test_profile_attach_lifecycle_stage_management", {
        lifecycleStageId: testLifecycleStage.id,
        profileId: testProfile.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_profile_attach_lifecycle_stage_management = oci.os_management_hub.ProfileAttachLifecycleStageManagement("test_profile_attach_lifecycle_stage_management",
        lifecycle_stage_id=test_lifecycle_stage["id"],
        profile_id=test_profile["id"])
    
    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.NewProfileAttachLifecycleStageManagement(ctx, "test_profile_attach_lifecycle_stage_management", &osmanagementhub.ProfileAttachLifecycleStageManagementArgs{
    			LifecycleStageId: pulumi.Any(testLifecycleStage.Id),
    			ProfileId:        pulumi.Any(testProfile.Id),
    		})
    		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 testProfileAttachLifecycleStageManagement = new Oci.OsManagementHub.ProfileAttachLifecycleStageManagement("test_profile_attach_lifecycle_stage_management", new()
        {
            LifecycleStageId = testLifecycleStage.Id,
            ProfileId = testProfile.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.ProfileAttachLifecycleStageManagement;
    import com.pulumi.oci.OsManagementHub.ProfileAttachLifecycleStageManagementArgs;
    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 testProfileAttachLifecycleStageManagement = new ProfileAttachLifecycleStageManagement("testProfileAttachLifecycleStageManagement", ProfileAttachLifecycleStageManagementArgs.builder()
                .lifecycleStageId(testLifecycleStage.id())
                .profileId(testProfile.id())
                .build());
    
        }
    }
    
    resources:
      testProfileAttachLifecycleStageManagement:
        type: oci:OsManagementHub:ProfileAttachLifecycleStageManagement
        name: test_profile_attach_lifecycle_stage_management
        properties:
          lifecycleStageId: ${testLifecycleStage.id}
          profileId: ${testProfile.id}
    

    Create ProfileAttachLifecycleStageManagement Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProfileAttachLifecycleStageManagement(name: string, args: ProfileAttachLifecycleStageManagementArgs, opts?: CustomResourceOptions);
    @overload
    def ProfileAttachLifecycleStageManagement(resource_name: str,
                                              args: ProfileAttachLifecycleStageManagementArgs,
                                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProfileAttachLifecycleStageManagement(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              lifecycle_stage_id: Optional[str] = None,
                                              profile_id: Optional[str] = None)
    func NewProfileAttachLifecycleStageManagement(ctx *Context, name string, args ProfileAttachLifecycleStageManagementArgs, opts ...ResourceOption) (*ProfileAttachLifecycleStageManagement, error)
    public ProfileAttachLifecycleStageManagement(string name, ProfileAttachLifecycleStageManagementArgs args, CustomResourceOptions? opts = null)
    public ProfileAttachLifecycleStageManagement(String name, ProfileAttachLifecycleStageManagementArgs args)
    public ProfileAttachLifecycleStageManagement(String name, ProfileAttachLifecycleStageManagementArgs args, CustomResourceOptions options)
    
    type: oci:OsManagementHub:ProfileAttachLifecycleStageManagement
    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 ProfileAttachLifecycleStageManagementArgs
    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 ProfileAttachLifecycleStageManagementArgs
    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 ProfileAttachLifecycleStageManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProfileAttachLifecycleStageManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProfileAttachLifecycleStageManagementArgs
    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 profileAttachLifecycleStageManagementResource = new Oci.OsManagementHub.ProfileAttachLifecycleStageManagement("profileAttachLifecycleStageManagementResource", new()
    {
        LifecycleStageId = "string",
        ProfileId = "string",
    });
    
    example, err := OsManagementHub.NewProfileAttachLifecycleStageManagement(ctx, "profileAttachLifecycleStageManagementResource", &OsManagementHub.ProfileAttachLifecycleStageManagementArgs{
    	LifecycleStageId: pulumi.String("string"),
    	ProfileId:        pulumi.String("string"),
    })
    
    var profileAttachLifecycleStageManagementResource = new ProfileAttachLifecycleStageManagement("profileAttachLifecycleStageManagementResource", ProfileAttachLifecycleStageManagementArgs.builder()
        .lifecycleStageId("string")
        .profileId("string")
        .build());
    
    profile_attach_lifecycle_stage_management_resource = oci.os_management_hub.ProfileAttachLifecycleStageManagement("profileAttachLifecycleStageManagementResource",
        lifecycle_stage_id="string",
        profile_id="string")
    
    const profileAttachLifecycleStageManagementResource = new oci.osmanagementhub.ProfileAttachLifecycleStageManagement("profileAttachLifecycleStageManagementResource", {
        lifecycleStageId: "string",
        profileId: "string",
    });
    
    type: oci:OsManagementHub:ProfileAttachLifecycleStageManagement
    properties:
        lifecycleStageId: string
        profileId: string
    

    ProfileAttachLifecycleStageManagement 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 ProfileAttachLifecycleStageManagement resource accepts the following input properties:

    LifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    ProfileId string

    The OCID of the registration profile.

    ** 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

    LifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    ProfileId string

    The OCID of the registration profile.

    ** 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

    lifecycleStageId String
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId String

    The OCID of the registration profile.

    ** 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

    lifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId string

    The OCID of the registration profile.

    ** 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

    lifecycle_stage_id str
    The OCID of the lifecycle stage that the instance will be associated with.
    profile_id str

    The OCID of the registration profile.

    ** 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

    lifecycleStageId String
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId String

    The OCID of the registration profile.

    ** 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 ProfileAttachLifecycleStageManagement resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ProfileAttachLifecycleStageManagement Resource

    Get an existing ProfileAttachLifecycleStageManagement 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?: ProfileAttachLifecycleStageManagementState, opts?: CustomResourceOptions): ProfileAttachLifecycleStageManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            lifecycle_stage_id: Optional[str] = None,
            profile_id: Optional[str] = None) -> ProfileAttachLifecycleStageManagement
    func GetProfileAttachLifecycleStageManagement(ctx *Context, name string, id IDInput, state *ProfileAttachLifecycleStageManagementState, opts ...ResourceOption) (*ProfileAttachLifecycleStageManagement, error)
    public static ProfileAttachLifecycleStageManagement Get(string name, Input<string> id, ProfileAttachLifecycleStageManagementState? state, CustomResourceOptions? opts = null)
    public static ProfileAttachLifecycleStageManagement get(String name, Output<String> id, ProfileAttachLifecycleStageManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:OsManagementHub:ProfileAttachLifecycleStageManagement    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.
    The following state arguments are supported:
    LifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    ProfileId string

    The OCID of the registration profile.

    ** 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

    LifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    ProfileId string

    The OCID of the registration profile.

    ** 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

    lifecycleStageId String
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId String

    The OCID of the registration profile.

    ** 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

    lifecycleStageId string
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId string

    The OCID of the registration profile.

    ** 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

    lifecycle_stage_id str
    The OCID of the lifecycle stage that the instance will be associated with.
    profile_id str

    The OCID of the registration profile.

    ** 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

    lifecycleStageId String
    The OCID of the lifecycle stage that the instance will be associated with.
    profileId String

    The OCID of the registration profile.

    ** 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

    Import

    ProfileAttachLifecycleStageManagement can be imported using the id, e.g.

    $ pulumi import oci:OsManagementHub/profileAttachLifecycleStageManagement:ProfileAttachLifecycleStageManagement test_profile_attach_lifecycle_stage_management "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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi