published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
This resource provides the Managed Instance Remove Snaps 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/RemoveSnaps
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub
Removes specified snaps from a managed instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedInstanceRemoveSnapsManagement = new oci.osmanagementhub.ManagedInstanceRemoveSnapsManagement("test_managed_instance_remove_snaps_management", {
managedInstanceId: testManagedInstance.id,
snapDetails: [{
name: managedInstanceRemoveSnapsManagementSnapDetailsName,
revision: managedInstanceRemoveSnapsManagementSnapDetailsRevision,
}],
workRequestDetails: {
description: managedInstanceRemoveSnapsManagementWorkRequestDetailsDescription,
displayName: managedInstanceRemoveSnapsManagementWorkRequestDetailsDisplayName,
},
});
import pulumi
import pulumi_oci as oci
test_managed_instance_remove_snaps_management = oci.osmanagementhub.ManagedInstanceRemoveSnapsManagement("test_managed_instance_remove_snaps_management",
managed_instance_id=test_managed_instance["id"],
snap_details=[{
"name": managed_instance_remove_snaps_management_snap_details_name,
"revision": managed_instance_remove_snaps_management_snap_details_revision,
}],
work_request_details={
"description": managed_instance_remove_snaps_management_work_request_details_description,
"display_name": managed_instance_remove_snaps_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.NewManagedInstanceRemoveSnapsManagement(ctx, "test_managed_instance_remove_snaps_management", &osmanagementhub.ManagedInstanceRemoveSnapsManagementArgs{
ManagedInstanceId: pulumi.Any(testManagedInstance.Id),
SnapDetails: osmanagementhub.ManagedInstanceRemoveSnapsManagementSnapDetailArray{
&osmanagementhub.ManagedInstanceRemoveSnapsManagementSnapDetailArgs{
Name: pulumi.Any(managedInstanceRemoveSnapsManagementSnapDetailsName),
Revision: pulumi.Any(managedInstanceRemoveSnapsManagementSnapDetailsRevision),
},
},
WorkRequestDetails: &osmanagementhub.ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs{
Description: pulumi.Any(managedInstanceRemoveSnapsManagementWorkRequestDetailsDescription),
DisplayName: pulumi.Any(managedInstanceRemoveSnapsManagementWorkRequestDetailsDisplayName),
},
})
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 testManagedInstanceRemoveSnapsManagement = new Oci.OsManagementHub.ManagedInstanceRemoveSnapsManagement("test_managed_instance_remove_snaps_management", new()
{
ManagedInstanceId = testManagedInstance.Id,
SnapDetails = new[]
{
new Oci.OsManagementHub.Inputs.ManagedInstanceRemoveSnapsManagementSnapDetailArgs
{
Name = managedInstanceRemoveSnapsManagementSnapDetailsName,
Revision = managedInstanceRemoveSnapsManagementSnapDetailsRevision,
},
},
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs
{
Description = managedInstanceRemoveSnapsManagementWorkRequestDetailsDescription,
DisplayName = managedInstanceRemoveSnapsManagementWorkRequestDetailsDisplayName,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.ManagedInstanceRemoveSnapsManagement;
import com.pulumi.oci.OsManagementHub.ManagedInstanceRemoveSnapsManagementArgs;
import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceRemoveSnapsManagementSnapDetailArgs;
import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs;
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 testManagedInstanceRemoveSnapsManagement = new ManagedInstanceRemoveSnapsManagement("testManagedInstanceRemoveSnapsManagement", ManagedInstanceRemoveSnapsManagementArgs.builder()
.managedInstanceId(testManagedInstance.id())
.snapDetails(ManagedInstanceRemoveSnapsManagementSnapDetailArgs.builder()
.name(managedInstanceRemoveSnapsManagementSnapDetailsName)
.revision(managedInstanceRemoveSnapsManagementSnapDetailsRevision)
.build())
.workRequestDetails(ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs.builder()
.description(managedInstanceRemoveSnapsManagementWorkRequestDetailsDescription)
.displayName(managedInstanceRemoveSnapsManagementWorkRequestDetailsDisplayName)
.build())
.build());
}
}
resources:
testManagedInstanceRemoveSnapsManagement:
type: oci:OsManagementHub:ManagedInstanceRemoveSnapsManagement
name: test_managed_instance_remove_snaps_management
properties:
managedInstanceId: ${testManagedInstance.id}
snapDetails:
- name: ${managedInstanceRemoveSnapsManagementSnapDetailsName}
revision: ${managedInstanceRemoveSnapsManagementSnapDetailsRevision}
workRequestDetails:
description: ${managedInstanceRemoveSnapsManagementWorkRequestDetailsDescription}
displayName: ${managedInstanceRemoveSnapsManagementWorkRequestDetailsDisplayName}
Create ManagedInstanceRemoveSnapsManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedInstanceRemoveSnapsManagement(name: string, args: ManagedInstanceRemoveSnapsManagementArgs, opts?: CustomResourceOptions);@overload
def ManagedInstanceRemoveSnapsManagement(resource_name: str,
args: ManagedInstanceRemoveSnapsManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedInstanceRemoveSnapsManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
snap_details: Optional[Sequence[ManagedInstanceRemoveSnapsManagementSnapDetailArgs]] = None,
work_request_details: Optional[ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs] = None)func NewManagedInstanceRemoveSnapsManagement(ctx *Context, name string, args ManagedInstanceRemoveSnapsManagementArgs, opts ...ResourceOption) (*ManagedInstanceRemoveSnapsManagement, error)public ManagedInstanceRemoveSnapsManagement(string name, ManagedInstanceRemoveSnapsManagementArgs args, CustomResourceOptions? opts = null)
public ManagedInstanceRemoveSnapsManagement(String name, ManagedInstanceRemoveSnapsManagementArgs args)
public ManagedInstanceRemoveSnapsManagement(String name, ManagedInstanceRemoveSnapsManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:ManagedInstanceRemoveSnapsManagement
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 ManagedInstanceRemoveSnapsManagementArgs
- 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 ManagedInstanceRemoveSnapsManagementArgs
- 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 ManagedInstanceRemoveSnapsManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedInstanceRemoveSnapsManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedInstanceRemoveSnapsManagementArgs
- 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 managedInstanceRemoveSnapsManagementResource = new Oci.OsManagementHub.ManagedInstanceRemoveSnapsManagement("managedInstanceRemoveSnapsManagementResource", new()
{
ManagedInstanceId = "string",
SnapDetails = new[]
{
new Oci.OsManagementHub.Inputs.ManagedInstanceRemoveSnapsManagementSnapDetailArgs
{
Name = "string",
Revision = "string",
},
},
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs
{
Description = "string",
DisplayName = "string",
},
});
example, err := osmanagementhub.NewManagedInstanceRemoveSnapsManagement(ctx, "managedInstanceRemoveSnapsManagementResource", &osmanagementhub.ManagedInstanceRemoveSnapsManagementArgs{
ManagedInstanceId: pulumi.String("string"),
SnapDetails: osmanagementhub.ManagedInstanceRemoveSnapsManagementSnapDetailArray{
&osmanagementhub.ManagedInstanceRemoveSnapsManagementSnapDetailArgs{
Name: pulumi.String("string"),
Revision: pulumi.String("string"),
},
},
WorkRequestDetails: &osmanagementhub.ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
})
var managedInstanceRemoveSnapsManagementResource = new ManagedInstanceRemoveSnapsManagement("managedInstanceRemoveSnapsManagementResource", ManagedInstanceRemoveSnapsManagementArgs.builder()
.managedInstanceId("string")
.snapDetails(ManagedInstanceRemoveSnapsManagementSnapDetailArgs.builder()
.name("string")
.revision("string")
.build())
.workRequestDetails(ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs.builder()
.description("string")
.displayName("string")
.build())
.build());
managed_instance_remove_snaps_management_resource = oci.osmanagementhub.ManagedInstanceRemoveSnapsManagement("managedInstanceRemoveSnapsManagementResource",
managed_instance_id="string",
snap_details=[{
"name": "string",
"revision": "string",
}],
work_request_details={
"description": "string",
"display_name": "string",
})
const managedInstanceRemoveSnapsManagementResource = new oci.osmanagementhub.ManagedInstanceRemoveSnapsManagement("managedInstanceRemoveSnapsManagementResource", {
managedInstanceId: "string",
snapDetails: [{
name: "string",
revision: "string",
}],
workRequestDetails: {
description: "string",
displayName: "string",
},
});
type: oci:OsManagementHub:ManagedInstanceRemoveSnapsManagement
properties:
managedInstanceId: string
snapDetails:
- name: string
revision: string
workRequestDetails:
description: string
displayName: string
ManagedInstanceRemoveSnapsManagement 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 ManagedInstanceRemoveSnapsManagement resource accepts the following input properties:
- Managed
Instance stringId - The OCID of the managed instance.
- Snap
Details List<ManagedInstance Remove Snaps Management Snap Detail> - The array of snaps to remove.
- Work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Snap
Details []ManagedInstance Remove Snaps Management Snap Detail Args - The array of snaps to remove.
- Work
Request ManagedDetails Instance Remove Snaps Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- snap
Details List<ManagedInstance Remove Snaps Management Snap Detail> - The array of snaps to remove.
- work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- snap
Details ManagedInstance Remove Snaps Management Snap Detail[] - The array of snaps to remove.
- work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- snap_
details Sequence[ManagedInstance Remove Snaps Management Snap Detail Args] - The array of snaps to remove.
- work_
request_ Manageddetails Instance Remove Snaps Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- snap
Details List<Property Map> - The array of snaps to remove.
- work
Request Property MapDetails - Provides the name and description of the job.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedInstanceRemoveSnapsManagement 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 ManagedInstanceRemoveSnapsManagement Resource
Get an existing ManagedInstanceRemoveSnapsManagement 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?: ManagedInstanceRemoveSnapsManagementState, opts?: CustomResourceOptions): ManagedInstanceRemoveSnapsManagement@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
snap_details: Optional[Sequence[ManagedInstanceRemoveSnapsManagementSnapDetailArgs]] = None,
work_request_details: Optional[ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs] = None) -> ManagedInstanceRemoveSnapsManagementfunc GetManagedInstanceRemoveSnapsManagement(ctx *Context, name string, id IDInput, state *ManagedInstanceRemoveSnapsManagementState, opts ...ResourceOption) (*ManagedInstanceRemoveSnapsManagement, error)public static ManagedInstanceRemoveSnapsManagement Get(string name, Input<string> id, ManagedInstanceRemoveSnapsManagementState? state, CustomResourceOptions? opts = null)public static ManagedInstanceRemoveSnapsManagement get(String name, Output<String> id, ManagedInstanceRemoveSnapsManagementState state, CustomResourceOptions options)resources: _: type: oci:OsManagementHub:ManagedInstanceRemoveSnapsManagement 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.
- Managed
Instance stringId - The OCID of the managed instance.
- Snap
Details List<ManagedInstance Remove Snaps Management Snap Detail> - The array of snaps to remove.
- Work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Snap
Details []ManagedInstance Remove Snaps Management Snap Detail Args - The array of snaps to remove.
- Work
Request ManagedDetails Instance Remove Snaps Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- snap
Details List<ManagedInstance Remove Snaps Management Snap Detail> - The array of snaps to remove.
- work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- snap
Details ManagedInstance Remove Snaps Management Snap Detail[] - The array of snaps to remove.
- work
Request ManagedDetails Instance Remove Snaps Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- snap_
details Sequence[ManagedInstance Remove Snaps Management Snap Detail Args] - The array of snaps to remove.
- work_
request_ Manageddetails Instance Remove Snaps Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- snap
Details List<Property Map> - The array of snaps to remove.
- work
Request Property MapDetails - Provides the name and description of the job.
Supporting Types
ManagedInstanceRemoveSnapsManagementSnapDetail, ManagedInstanceRemoveSnapsManagementSnapDetailArgs
ManagedInstanceRemoveSnapsManagementWorkRequestDetails, ManagedInstanceRemoveSnapsManagementWorkRequestDetailsArgs
- Description string
- User-specified information about the job. Avoid entering confidential information.
- Display
Name 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.
- Display
Name 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.
- display
Name 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.
- display
Name 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.
- display
Name 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
ManagedInstanceRemoveSnapsManagement can be imported using the id, e.g.
$ pulumi import oci:OsManagementHub/managedInstanceRemoveSnapsManagement:ManagedInstanceRemoveSnapsManagement test_managed_instance_remove_snaps_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
ociTerraform Provider.
published on Friday, Apr 24, 2026 by Pulumi
