1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. OsManagementHub
  6. ManagedInstanceSwitchSnapChannelManagement
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi

    This resource provides the Managed Instance Switch Snap Channel Management resource in Oracle Cloud Infrastructure Os Management Hub service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/osmh/latest/ManagedInstance/SwitchSnapChannel

    Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub

    Switches the snap channel on a managed instance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagedInstanceSwitchSnapChannelManagement = new oci.osmanagementhub.ManagedInstanceSwitchSnapChannelManagement("test_managed_instance_switch_snap_channel_management", {
        managedInstanceId: testManagedInstance.id,
        snapDetails: {
            name: managedInstanceSwitchSnapChannelManagementSnapDetailsName,
            channel: managedInstanceSwitchSnapChannelManagementSnapDetailsChannel,
        },
        workRequestDetails: {
            description: managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDescription,
            displayName: managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDisplayName,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_managed_instance_switch_snap_channel_management = oci.osmanagementhub.ManagedInstanceSwitchSnapChannelManagement("test_managed_instance_switch_snap_channel_management",
        managed_instance_id=test_managed_instance["id"],
        snap_details={
            "name": managed_instance_switch_snap_channel_management_snap_details_name,
            "channel": managed_instance_switch_snap_channel_management_snap_details_channel,
        },
        work_request_details={
            "description": managed_instance_switch_snap_channel_management_work_request_details_description,
            "display_name": managed_instance_switch_snap_channel_management_work_request_details_display_name,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/osmanagementhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := osmanagementhub.NewManagedInstanceSwitchSnapChannelManagement(ctx, "test_managed_instance_switch_snap_channel_management", &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementArgs{
    			ManagedInstanceId: pulumi.Any(testManagedInstance.Id),
    			SnapDetails: &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs{
    				Name:    pulumi.Any(managedInstanceSwitchSnapChannelManagementSnapDetailsName),
    				Channel: pulumi.Any(managedInstanceSwitchSnapChannelManagementSnapDetailsChannel),
    			},
    			WorkRequestDetails: &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs{
    				Description: pulumi.Any(managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDescription),
    				DisplayName: pulumi.Any(managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDisplayName),
    			},
    		})
    		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 testManagedInstanceSwitchSnapChannelManagement = new Oci.OsManagementHub.ManagedInstanceSwitchSnapChannelManagement("test_managed_instance_switch_snap_channel_management", new()
        {
            ManagedInstanceId = testManagedInstance.Id,
            SnapDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
            {
                Name = managedInstanceSwitchSnapChannelManagementSnapDetailsName,
                Channel = managedInstanceSwitchSnapChannelManagementSnapDetailsChannel,
            },
            WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
            {
                Description = managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDescription,
                DisplayName = managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDisplayName,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.ManagedInstanceSwitchSnapChannelManagement;
    import com.pulumi.oci.OsManagementHub.ManagedInstanceSwitchSnapChannelManagementArgs;
    import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs;
    import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs;
    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 testManagedInstanceSwitchSnapChannelManagement = new ManagedInstanceSwitchSnapChannelManagement("testManagedInstanceSwitchSnapChannelManagement", ManagedInstanceSwitchSnapChannelManagementArgs.builder()
                .managedInstanceId(testManagedInstance.id())
                .snapDetails(ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs.builder()
                    .name(managedInstanceSwitchSnapChannelManagementSnapDetailsName)
                    .channel(managedInstanceSwitchSnapChannelManagementSnapDetailsChannel)
                    .build())
                .workRequestDetails(ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs.builder()
                    .description(managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDescription)
                    .displayName(managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDisplayName)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testManagedInstanceSwitchSnapChannelManagement:
        type: oci:OsManagementHub:ManagedInstanceSwitchSnapChannelManagement
        name: test_managed_instance_switch_snap_channel_management
        properties:
          managedInstanceId: ${testManagedInstance.id}
          snapDetails:
            name: ${managedInstanceSwitchSnapChannelManagementSnapDetailsName}
            channel: ${managedInstanceSwitchSnapChannelManagementSnapDetailsChannel}
          workRequestDetails:
            description: ${managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDescription}
            displayName: ${managedInstanceSwitchSnapChannelManagementWorkRequestDetailsDisplayName}
    

    Create ManagedInstanceSwitchSnapChannelManagement Resource

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

    Constructor syntax

    new ManagedInstanceSwitchSnapChannelManagement(name: string, args: ManagedInstanceSwitchSnapChannelManagementArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedInstanceSwitchSnapChannelManagement(resource_name: str,
                                                   args: ManagedInstanceSwitchSnapChannelManagementArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedInstanceSwitchSnapChannelManagement(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   managed_instance_id: Optional[str] = None,
                                                   snap_details: Optional[ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs] = None,
                                                   work_request_details: Optional[ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs] = None)
    func NewManagedInstanceSwitchSnapChannelManagement(ctx *Context, name string, args ManagedInstanceSwitchSnapChannelManagementArgs, opts ...ResourceOption) (*ManagedInstanceSwitchSnapChannelManagement, error)
    public ManagedInstanceSwitchSnapChannelManagement(string name, ManagedInstanceSwitchSnapChannelManagementArgs args, CustomResourceOptions? opts = null)
    public ManagedInstanceSwitchSnapChannelManagement(String name, ManagedInstanceSwitchSnapChannelManagementArgs args)
    public ManagedInstanceSwitchSnapChannelManagement(String name, ManagedInstanceSwitchSnapChannelManagementArgs args, CustomResourceOptions options)
    
    type: oci:OsManagementHub:ManagedInstanceSwitchSnapChannelManagement
    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 ManagedInstanceSwitchSnapChannelManagementArgs
    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 ManagedInstanceSwitchSnapChannelManagementArgs
    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 ManagedInstanceSwitchSnapChannelManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedInstanceSwitchSnapChannelManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedInstanceSwitchSnapChannelManagementArgs
    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 managedInstanceSwitchSnapChannelManagementResource = new Oci.OsManagementHub.ManagedInstanceSwitchSnapChannelManagement("managedInstanceSwitchSnapChannelManagementResource", new()
    {
        ManagedInstanceId = "string",
        SnapDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
        {
            Name = "string",
            Channel = "string",
        },
        WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
        {
            Description = "string",
            DisplayName = "string",
        },
    });
    
    example, err := osmanagementhub.NewManagedInstanceSwitchSnapChannelManagement(ctx, "managedInstanceSwitchSnapChannelManagementResource", &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementArgs{
    	ManagedInstanceId: pulumi.String("string"),
    	SnapDetails: &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs{
    		Name:    pulumi.String("string"),
    		Channel: pulumi.String("string"),
    	},
    	WorkRequestDetails: &osmanagementhub.ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs{
    		Description: pulumi.String("string"),
    		DisplayName: pulumi.String("string"),
    	},
    })
    
    var managedInstanceSwitchSnapChannelManagementResource = new ManagedInstanceSwitchSnapChannelManagement("managedInstanceSwitchSnapChannelManagementResource", ManagedInstanceSwitchSnapChannelManagementArgs.builder()
        .managedInstanceId("string")
        .snapDetails(ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs.builder()
            .name("string")
            .channel("string")
            .build())
        .workRequestDetails(ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs.builder()
            .description("string")
            .displayName("string")
            .build())
        .build());
    
    managed_instance_switch_snap_channel_management_resource = oci.osmanagementhub.ManagedInstanceSwitchSnapChannelManagement("managedInstanceSwitchSnapChannelManagementResource",
        managed_instance_id="string",
        snap_details={
            "name": "string",
            "channel": "string",
        },
        work_request_details={
            "description": "string",
            "display_name": "string",
        })
    
    const managedInstanceSwitchSnapChannelManagementResource = new oci.osmanagementhub.ManagedInstanceSwitchSnapChannelManagement("managedInstanceSwitchSnapChannelManagementResource", {
        managedInstanceId: "string",
        snapDetails: {
            name: "string",
            channel: "string",
        },
        workRequestDetails: {
            description: "string",
            displayName: "string",
        },
    });
    
    type: oci:OsManagementHub:ManagedInstanceSwitchSnapChannelManagement
    properties:
        managedInstanceId: string
        snapDetails:
            channel: string
            name: string
        workRequestDetails:
            description: string
            displayName: string
    

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

    ManagedInstanceId string
    The OCID of the managed instance.
    SnapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    WorkRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    ManagedInstanceId string
    The OCID of the managed instance.
    SnapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
    Provides the information used to switch a snap channel.
    WorkRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    snapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    workRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    managedInstanceId string
    The OCID of the managed instance.
    snapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    workRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    managed_instance_id str
    The OCID of the managed instance.
    snap_details ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
    Provides the information used to switch a snap channel.
    work_request_details ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    snapDetails Property Map
    Provides the information used to switch a snap channel.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Outputs

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

    Get an existing ManagedInstanceSwitchSnapChannelManagement 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?: ManagedInstanceSwitchSnapChannelManagementState, opts?: CustomResourceOptions): ManagedInstanceSwitchSnapChannelManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            managed_instance_id: Optional[str] = None,
            snap_details: Optional[ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs] = None,
            work_request_details: Optional[ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs] = None) -> ManagedInstanceSwitchSnapChannelManagement
    func GetManagedInstanceSwitchSnapChannelManagement(ctx *Context, name string, id IDInput, state *ManagedInstanceSwitchSnapChannelManagementState, opts ...ResourceOption) (*ManagedInstanceSwitchSnapChannelManagement, error)
    public static ManagedInstanceSwitchSnapChannelManagement Get(string name, Input<string> id, ManagedInstanceSwitchSnapChannelManagementState? state, CustomResourceOptions? opts = null)
    public static ManagedInstanceSwitchSnapChannelManagement get(String name, Output<String> id, ManagedInstanceSwitchSnapChannelManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:OsManagementHub:ManagedInstanceSwitchSnapChannelManagement    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:
    ManagedInstanceId string
    The OCID of the managed instance.
    SnapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    WorkRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    ManagedInstanceId string
    The OCID of the managed instance.
    SnapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
    Provides the information used to switch a snap channel.
    WorkRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    snapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    workRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    managedInstanceId string
    The OCID of the managed instance.
    snapDetails ManagedInstanceSwitchSnapChannelManagementSnapDetails
    Provides the information used to switch a snap channel.
    workRequestDetails ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails
    Provides the name and description of the job.
    managed_instance_id str
    The OCID of the managed instance.
    snap_details ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs
    Provides the information used to switch a snap channel.
    work_request_details ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    snapDetails Property Map
    Provides the information used to switch a snap channel.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Supporting Types

    ManagedInstanceSwitchSnapChannelManagementSnapDetails, ManagedInstanceSwitchSnapChannelManagementSnapDetailsArgs

    Name string
    The name of the snap.
    Channel string
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).
    Name string
    The name of the snap.
    Channel string
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).
    name String
    The name of the snap.
    channel String
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).
    name string
    The name of the snap.
    channel string
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).
    name str
    The name of the snap.
    channel str
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).
    name String
    The name of the snap.
    channel String
    The channel to switch to (e.g. stable, edge, beta, candidate, or a custom channel).

    ManagedInstanceSwitchSnapChannelManagementWorkRequestDetails, ManagedInstanceSwitchSnapChannelManagementWorkRequestDetailsArgs

    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

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

    $ pulumi import oci:OsManagementHub/managedInstanceSwitchSnapChannelManagement:ManagedInstanceSwitchSnapChannelManagement test_managed_instance_switch_snap_channel_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
    Viewing docs for Oracle Cloud Infrastructure v4.8.0
    published on Friday, Apr 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.