1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. OsManagementHub
  6. ManagedInstanceRemovePackagesManagement
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 Remove Packages 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/RemovePackages

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

    Removes an installed package from a managed instance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagedInstanceRemovePackagesManagement = new oci.osmanagementhub.ManagedInstanceRemovePackagesManagement("test_managed_instance_remove_packages_management", {
        managedInstanceId: testManagedInstance.id,
        packageNames: managedInstanceRemovePackagesManagementPackageNames,
        workRequestDetails: {
            description: managedInstanceRemovePackagesManagementWorkRequestDetailsDescription,
            displayName: managedInstanceRemovePackagesManagementWorkRequestDetailsDisplayName,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_managed_instance_remove_packages_management = oci.osmanagementhub.ManagedInstanceRemovePackagesManagement("test_managed_instance_remove_packages_management",
        managed_instance_id=test_managed_instance["id"],
        package_names=managed_instance_remove_packages_management_package_names,
        work_request_details={
            "description": managed_instance_remove_packages_management_work_request_details_description,
            "display_name": managed_instance_remove_packages_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.NewManagedInstanceRemovePackagesManagement(ctx, "test_managed_instance_remove_packages_management", &osmanagementhub.ManagedInstanceRemovePackagesManagementArgs{
    			ManagedInstanceId: pulumi.Any(testManagedInstance.Id),
    			PackageNames:      pulumi.Any(managedInstanceRemovePackagesManagementPackageNames),
    			WorkRequestDetails: &osmanagementhub.ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs{
    				Description: pulumi.Any(managedInstanceRemovePackagesManagementWorkRequestDetailsDescription),
    				DisplayName: pulumi.Any(managedInstanceRemovePackagesManagementWorkRequestDetailsDisplayName),
    			},
    		})
    		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 testManagedInstanceRemovePackagesManagement = new Oci.OsManagementHub.ManagedInstanceRemovePackagesManagement("test_managed_instance_remove_packages_management", new()
        {
            ManagedInstanceId = testManagedInstance.Id,
            PackageNames = managedInstanceRemovePackagesManagementPackageNames,
            WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
            {
                Description = managedInstanceRemovePackagesManagementWorkRequestDetailsDescription,
                DisplayName = managedInstanceRemovePackagesManagementWorkRequestDetailsDisplayName,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.ManagedInstanceRemovePackagesManagement;
    import com.pulumi.oci.OsManagementHub.ManagedInstanceRemovePackagesManagementArgs;
    import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs;
    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 testManagedInstanceRemovePackagesManagement = new ManagedInstanceRemovePackagesManagement("testManagedInstanceRemovePackagesManagement", ManagedInstanceRemovePackagesManagementArgs.builder()
                .managedInstanceId(testManagedInstance.id())
                .packageNames(managedInstanceRemovePackagesManagementPackageNames)
                .workRequestDetails(ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs.builder()
                    .description(managedInstanceRemovePackagesManagementWorkRequestDetailsDescription)
                    .displayName(managedInstanceRemovePackagesManagementWorkRequestDetailsDisplayName)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testManagedInstanceRemovePackagesManagement:
        type: oci:OsManagementHub:ManagedInstanceRemovePackagesManagement
        name: test_managed_instance_remove_packages_management
        properties:
          managedInstanceId: ${testManagedInstance.id}
          packageNames: ${managedInstanceRemovePackagesManagementPackageNames}
          workRequestDetails:
            description: ${managedInstanceRemovePackagesManagementWorkRequestDetailsDescription}
            displayName: ${managedInstanceRemovePackagesManagementWorkRequestDetailsDisplayName}
    

    Create ManagedInstanceRemovePackagesManagement Resource

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

    Constructor syntax

    new ManagedInstanceRemovePackagesManagement(name: string, args: ManagedInstanceRemovePackagesManagementArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedInstanceRemovePackagesManagement(resource_name: str,
                                                args: ManagedInstanceRemovePackagesManagementArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedInstanceRemovePackagesManagement(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                managed_instance_id: Optional[str] = None,
                                                package_names: Optional[Sequence[str]] = None,
                                                work_request_details: Optional[ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs] = None)
    func NewManagedInstanceRemovePackagesManagement(ctx *Context, name string, args ManagedInstanceRemovePackagesManagementArgs, opts ...ResourceOption) (*ManagedInstanceRemovePackagesManagement, error)
    public ManagedInstanceRemovePackagesManagement(string name, ManagedInstanceRemovePackagesManagementArgs args, CustomResourceOptions? opts = null)
    public ManagedInstanceRemovePackagesManagement(String name, ManagedInstanceRemovePackagesManagementArgs args)
    public ManagedInstanceRemovePackagesManagement(String name, ManagedInstanceRemovePackagesManagementArgs args, CustomResourceOptions options)
    
    type: oci:OsManagementHub:ManagedInstanceRemovePackagesManagement
    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 ManagedInstanceRemovePackagesManagementArgs
    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 ManagedInstanceRemovePackagesManagementArgs
    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 ManagedInstanceRemovePackagesManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedInstanceRemovePackagesManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedInstanceRemovePackagesManagementArgs
    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 managedInstanceRemovePackagesManagementResource = new Oci.OsManagementHub.ManagedInstanceRemovePackagesManagement("managedInstanceRemovePackagesManagementResource", new()
    {
        ManagedInstanceId = "string",
        PackageNames = new[]
        {
            "string",
        },
        WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
        {
            Description = "string",
            DisplayName = "string",
        },
    });
    
    example, err := osmanagementhub.NewManagedInstanceRemovePackagesManagement(ctx, "managedInstanceRemovePackagesManagementResource", &osmanagementhub.ManagedInstanceRemovePackagesManagementArgs{
    	ManagedInstanceId: pulumi.String("string"),
    	PackageNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	WorkRequestDetails: &osmanagementhub.ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs{
    		Description: pulumi.String("string"),
    		DisplayName: pulumi.String("string"),
    	},
    })
    
    var managedInstanceRemovePackagesManagementResource = new ManagedInstanceRemovePackagesManagement("managedInstanceRemovePackagesManagementResource", ManagedInstanceRemovePackagesManagementArgs.builder()
        .managedInstanceId("string")
        .packageNames("string")
        .workRequestDetails(ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs.builder()
            .description("string")
            .displayName("string")
            .build())
        .build());
    
    managed_instance_remove_packages_management_resource = oci.osmanagementhub.ManagedInstanceRemovePackagesManagement("managedInstanceRemovePackagesManagementResource",
        managed_instance_id="string",
        package_names=["string"],
        work_request_details={
            "description": "string",
            "display_name": "string",
        })
    
    const managedInstanceRemovePackagesManagementResource = new oci.osmanagementhub.ManagedInstanceRemovePackagesManagement("managedInstanceRemovePackagesManagementResource", {
        managedInstanceId: "string",
        packageNames: ["string"],
        workRequestDetails: {
            description: "string",
            displayName: "string",
        },
    });
    
    type: oci:OsManagementHub:ManagedInstanceRemovePackagesManagement
    properties:
        managedInstanceId: string
        packageNames:
            - string
        workRequestDetails:
            description: string
            displayName: string
    

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

    ManagedInstanceId string
    The OCID of the managed instance.
    PackageNames List<string>
    The list of package names.
    WorkRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    ManagedInstanceId string
    The OCID of the managed instance.
    PackageNames []string
    The list of package names.
    WorkRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    packageNames List<String>
    The list of package names.
    workRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    managedInstanceId string
    The OCID of the managed instance.
    packageNames string[]
    The list of package names.
    workRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    managed_instance_id str
    The OCID of the managed instance.
    package_names Sequence[str]
    The list of package names.
    work_request_details ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    packageNames List<String>
    The list of package names.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Outputs

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

    Get an existing ManagedInstanceRemovePackagesManagement 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?: ManagedInstanceRemovePackagesManagementState, opts?: CustomResourceOptions): ManagedInstanceRemovePackagesManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            managed_instance_id: Optional[str] = None,
            package_names: Optional[Sequence[str]] = None,
            work_request_details: Optional[ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs] = None) -> ManagedInstanceRemovePackagesManagement
    func GetManagedInstanceRemovePackagesManagement(ctx *Context, name string, id IDInput, state *ManagedInstanceRemovePackagesManagementState, opts ...ResourceOption) (*ManagedInstanceRemovePackagesManagement, error)
    public static ManagedInstanceRemovePackagesManagement Get(string name, Input<string> id, ManagedInstanceRemovePackagesManagementState? state, CustomResourceOptions? opts = null)
    public static ManagedInstanceRemovePackagesManagement get(String name, Output<String> id, ManagedInstanceRemovePackagesManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:OsManagementHub:ManagedInstanceRemovePackagesManagement    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.
    PackageNames List<string>
    The list of package names.
    WorkRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    ManagedInstanceId string
    The OCID of the managed instance.
    PackageNames []string
    The list of package names.
    WorkRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    packageNames List<String>
    The list of package names.
    workRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    managedInstanceId string
    The OCID of the managed instance.
    packageNames string[]
    The list of package names.
    workRequestDetails ManagedInstanceRemovePackagesManagementWorkRequestDetails
    Provides the name and description of the job.
    managed_instance_id str
    The OCID of the managed instance.
    package_names Sequence[str]
    The list of package names.
    work_request_details ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    managedInstanceId String
    The OCID of the managed instance.
    packageNames List<String>
    The list of package names.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Supporting Types

    ManagedInstanceRemovePackagesManagementWorkRequestDetails, ManagedInstanceRemovePackagesManagementWorkRequestDetailsArgs

    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

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

    $ pulumi import oci:OsManagementHub/managedInstanceRemovePackagesManagement:ManagedInstanceRemovePackagesManagement test_managed_instance_remove_packages_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.