1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. LifecycleStageRebootManagement
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.OsManagementHub.LifecycleStageRebootManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

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

    Reboots all managed instances in the specified lifecycle stage.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testLifecycleStageRebootManagement = new oci.osmanagementhub.LifecycleStageRebootManagement("test_lifecycle_stage_reboot_management", {
        lifecycleStageId: testLifecycleStage.id,
        rebootTimeoutInMins: lifecycleStageRebootManagementRebootTimeoutInMins,
        workRequestDetails: {
            description: lifecycleStageRebootManagementWorkRequestDetailsDescription,
            displayName: lifecycleStageRebootManagementWorkRequestDetailsDisplayName,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_lifecycle_stage_reboot_management = oci.os_management_hub.LifecycleStageRebootManagement("test_lifecycle_stage_reboot_management",
        lifecycle_stage_id=test_lifecycle_stage["id"],
        reboot_timeout_in_mins=lifecycle_stage_reboot_management_reboot_timeout_in_mins,
        work_request_details={
            "description": lifecycle_stage_reboot_management_work_request_details_description,
            "display_name": lifecycle_stage_reboot_management_work_request_details_display_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.NewLifecycleStageRebootManagement(ctx, "test_lifecycle_stage_reboot_management", &osmanagementhub.LifecycleStageRebootManagementArgs{
    			LifecycleStageId:    pulumi.Any(testLifecycleStage.Id),
    			RebootTimeoutInMins: pulumi.Any(lifecycleStageRebootManagementRebootTimeoutInMins),
    			WorkRequestDetails: &osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs{
    				Description: pulumi.Any(lifecycleStageRebootManagementWorkRequestDetailsDescription),
    				DisplayName: pulumi.Any(lifecycleStageRebootManagementWorkRequestDetailsDisplayName),
    			},
    		})
    		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 testLifecycleStageRebootManagement = new Oci.OsManagementHub.LifecycleStageRebootManagement("test_lifecycle_stage_reboot_management", new()
        {
            LifecycleStageId = testLifecycleStage.Id,
            RebootTimeoutInMins = lifecycleStageRebootManagementRebootTimeoutInMins,
            WorkRequestDetails = new Oci.OsManagementHub.Inputs.LifecycleStageRebootManagementWorkRequestDetailsArgs
            {
                Description = lifecycleStageRebootManagementWorkRequestDetailsDescription,
                DisplayName = lifecycleStageRebootManagementWorkRequestDetailsDisplayName,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.LifecycleStageRebootManagement;
    import com.pulumi.oci.OsManagementHub.LifecycleStageRebootManagementArgs;
    import com.pulumi.oci.OsManagementHub.inputs.LifecycleStageRebootManagementWorkRequestDetailsArgs;
    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 testLifecycleStageRebootManagement = new LifecycleStageRebootManagement("testLifecycleStageRebootManagement", LifecycleStageRebootManagementArgs.builder()
                .lifecycleStageId(testLifecycleStage.id())
                .rebootTimeoutInMins(lifecycleStageRebootManagementRebootTimeoutInMins)
                .workRequestDetails(LifecycleStageRebootManagementWorkRequestDetailsArgs.builder()
                    .description(lifecycleStageRebootManagementWorkRequestDetailsDescription)
                    .displayName(lifecycleStageRebootManagementWorkRequestDetailsDisplayName)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testLifecycleStageRebootManagement:
        type: oci:OsManagementHub:LifecycleStageRebootManagement
        name: test_lifecycle_stage_reboot_management
        properties:
          lifecycleStageId: ${testLifecycleStage.id}
          rebootTimeoutInMins: ${lifecycleStageRebootManagementRebootTimeoutInMins}
          workRequestDetails:
            description: ${lifecycleStageRebootManagementWorkRequestDetailsDescription}
            displayName: ${lifecycleStageRebootManagementWorkRequestDetailsDisplayName}
    

    Create LifecycleStageRebootManagement Resource

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

    Constructor syntax

    new LifecycleStageRebootManagement(name: string, args: LifecycleStageRebootManagementArgs, opts?: CustomResourceOptions);
    @overload
    def LifecycleStageRebootManagement(resource_name: str,
                                       args: LifecycleStageRebootManagementArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def LifecycleStageRebootManagement(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       lifecycle_stage_id: Optional[str] = None,
                                       reboot_timeout_in_mins: Optional[int] = None,
                                       work_request_details: Optional[_osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs] = None)
    func NewLifecycleStageRebootManagement(ctx *Context, name string, args LifecycleStageRebootManagementArgs, opts ...ResourceOption) (*LifecycleStageRebootManagement, error)
    public LifecycleStageRebootManagement(string name, LifecycleStageRebootManagementArgs args, CustomResourceOptions? opts = null)
    public LifecycleStageRebootManagement(String name, LifecycleStageRebootManagementArgs args)
    public LifecycleStageRebootManagement(String name, LifecycleStageRebootManagementArgs args, CustomResourceOptions options)
    
    type: oci:OsManagementHub:LifecycleStageRebootManagement
    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 LifecycleStageRebootManagementArgs
    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 LifecycleStageRebootManagementArgs
    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 LifecycleStageRebootManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LifecycleStageRebootManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LifecycleStageRebootManagementArgs
    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 lifecycleStageRebootManagementResource = new Oci.OsManagementHub.LifecycleStageRebootManagement("lifecycleStageRebootManagementResource", new()
    {
        LifecycleStageId = "string",
        RebootTimeoutInMins = 0,
        WorkRequestDetails = new Oci.OsManagementHub.Inputs.LifecycleStageRebootManagementWorkRequestDetailsArgs
        {
            Description = "string",
            DisplayName = "string",
        },
    });
    
    example, err := OsManagementHub.NewLifecycleStageRebootManagement(ctx, "lifecycleStageRebootManagementResource", &OsManagementHub.LifecycleStageRebootManagementArgs{
    	LifecycleStageId:    pulumi.String("string"),
    	RebootTimeoutInMins: pulumi.Int(0),
    	WorkRequestDetails: &osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs{
    		Description: pulumi.String("string"),
    		DisplayName: pulumi.String("string"),
    	},
    })
    
    var lifecycleStageRebootManagementResource = new LifecycleStageRebootManagement("lifecycleStageRebootManagementResource", LifecycleStageRebootManagementArgs.builder()
        .lifecycleStageId("string")
        .rebootTimeoutInMins(0)
        .workRequestDetails(LifecycleStageRebootManagementWorkRequestDetailsArgs.builder()
            .description("string")
            .displayName("string")
            .build())
        .build());
    
    lifecycle_stage_reboot_management_resource = oci.os_management_hub.LifecycleStageRebootManagement("lifecycleStageRebootManagementResource",
        lifecycle_stage_id="string",
        reboot_timeout_in_mins=0,
        work_request_details={
            "description": "string",
            "display_name": "string",
        })
    
    const lifecycleStageRebootManagementResource = new oci.osmanagementhub.LifecycleStageRebootManagement("lifecycleStageRebootManagementResource", {
        lifecycleStageId: "string",
        rebootTimeoutInMins: 0,
        workRequestDetails: {
            description: "string",
            displayName: "string",
        },
    });
    
    type: oci:OsManagementHub:LifecycleStageRebootManagement
    properties:
        lifecycleStageId: string
        rebootTimeoutInMins: 0
        workRequestDetails:
            description: string
            displayName: string
    

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

    LifecycleStageId string
    The OCID of the lifecycle stage.
    RebootTimeoutInMins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    WorkRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    LifecycleStageId string
    The OCID of the lifecycle stage.
    RebootTimeoutInMins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    WorkRequestDetails LifecycleStageRebootManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    lifecycleStageId String
    The OCID of the lifecycle stage.
    rebootTimeoutInMins Integer
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    lifecycleStageId string
    The OCID of the lifecycle stage.
    rebootTimeoutInMins number
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    lifecycle_stage_id str
    The OCID of the lifecycle stage.
    reboot_timeout_in_mins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    work_request_details osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    lifecycleStageId String
    The OCID of the lifecycle stage.
    rebootTimeoutInMins Number
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LifecycleStageRebootManagement 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 LifecycleStageRebootManagement Resource

    Get an existing LifecycleStageRebootManagement 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?: LifecycleStageRebootManagementState, opts?: CustomResourceOptions): LifecycleStageRebootManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            lifecycle_stage_id: Optional[str] = None,
            reboot_timeout_in_mins: Optional[int] = None,
            work_request_details: Optional[_osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs] = None) -> LifecycleStageRebootManagement
    func GetLifecycleStageRebootManagement(ctx *Context, name string, id IDInput, state *LifecycleStageRebootManagementState, opts ...ResourceOption) (*LifecycleStageRebootManagement, error)
    public static LifecycleStageRebootManagement Get(string name, Input<string> id, LifecycleStageRebootManagementState? state, CustomResourceOptions? opts = null)
    public static LifecycleStageRebootManagement get(String name, Output<String> id, LifecycleStageRebootManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:OsManagementHub:LifecycleStageRebootManagement    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.
    RebootTimeoutInMins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    WorkRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    LifecycleStageId string
    The OCID of the lifecycle stage.
    RebootTimeoutInMins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    WorkRequestDetails LifecycleStageRebootManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    lifecycleStageId String
    The OCID of the lifecycle stage.
    rebootTimeoutInMins Integer
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    lifecycleStageId string
    The OCID of the lifecycle stage.
    rebootTimeoutInMins number
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails LifecycleStageRebootManagementWorkRequestDetails
    Provides the name and description of the job.
    lifecycle_stage_id str
    The OCID of the lifecycle stage.
    reboot_timeout_in_mins int
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    work_request_details osmanagementhub.LifecycleStageRebootManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    lifecycleStageId String
    The OCID of the lifecycle stage.
    rebootTimeoutInMins Number
    The number of minutes the service waits for the reboot to complete. If the instances in the stage don't reboot within this time, the reboot job status is set to failed.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Supporting Types

    LifecycleStageRebootManagementWorkRequestDetails, LifecycleStageRebootManagementWorkRequestDetailsArgs

    Description string
    User-specified information about the job. Avoid entering confidential information.
    DisplayName string

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

    Description string
    User-specified information about the job. Avoid entering confidential information.
    DisplayName string

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

    description String
    User-specified information about the job. Avoid entering confidential information.
    displayName String

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

    description string
    User-specified information about the job. Avoid entering confidential information.
    displayName string

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

    description str
    User-specified information about the job. Avoid entering confidential information.
    display_name str

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

    description String
    User-specified information about the job. Avoid entering confidential information.
    displayName String

    A user-friendly name for the job. The name does not have to be unique. Avoid entering confidential information.

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

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

    $ pulumi import oci:OsManagementHub/lifecycleStageRebootManagement:LifecycleStageRebootManagement test_lifecycle_stage_reboot_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.28.0 published on Thursday, Mar 27, 2025 by Pulumi