1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. OsManagementHub
  6. ManagedInstancesInstallWindowsUpdatesManagement
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 Instances Install Windows Updates 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/InstallWindowsUpdates

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

    Installs all of the available Windows updates for managed instances in a compartment. This applies only to standalone Windows instances. This will not update instances that belong to a group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagedInstancesInstallWindowsUpdatesManagement = new oci.osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagement("test_managed_instances_install_windows_updates_management", {
        compartmentId: compartmentId,
        windowsUpdateTypes: managedInstancesInstallWindowsUpdatesManagementWindowsUpdateTypes,
        workRequestDetails: {
            description: managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDescription,
            displayName: managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDisplayName,
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_managed_instances_install_windows_updates_management = oci.osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagement("test_managed_instances_install_windows_updates_management",
        compartment_id=compartment_id,
        windows_update_types=managed_instances_install_windows_updates_management_windows_update_types,
        work_request_details={
            "description": managed_instances_install_windows_updates_management_work_request_details_description,
            "display_name": managed_instances_install_windows_updates_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.NewManagedInstancesInstallWindowsUpdatesManagement(ctx, "test_managed_instances_install_windows_updates_management", &osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagementArgs{
    			CompartmentId:      pulumi.Any(compartmentId),
    			WindowsUpdateTypes: pulumi.Any(managedInstancesInstallWindowsUpdatesManagementWindowsUpdateTypes),
    			WorkRequestDetails: &osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs{
    				Description: pulumi.Any(managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDescription),
    				DisplayName: pulumi.Any(managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDisplayName),
    			},
    		})
    		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 testManagedInstancesInstallWindowsUpdatesManagement = new Oci.OsManagementHub.ManagedInstancesInstallWindowsUpdatesManagement("test_managed_instances_install_windows_updates_management", new()
        {
            CompartmentId = compartmentId,
            WindowsUpdateTypes = managedInstancesInstallWindowsUpdatesManagementWindowsUpdateTypes,
            WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
            {
                Description = managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDescription,
                DisplayName = managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDisplayName,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.ManagedInstancesInstallWindowsUpdatesManagement;
    import com.pulumi.oci.OsManagementHub.ManagedInstancesInstallWindowsUpdatesManagementArgs;
    import com.pulumi.oci.OsManagementHub.inputs.ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs;
    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 testManagedInstancesInstallWindowsUpdatesManagement = new ManagedInstancesInstallWindowsUpdatesManagement("testManagedInstancesInstallWindowsUpdatesManagement", ManagedInstancesInstallWindowsUpdatesManagementArgs.builder()
                .compartmentId(compartmentId)
                .windowsUpdateTypes(managedInstancesInstallWindowsUpdatesManagementWindowsUpdateTypes)
                .workRequestDetails(ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs.builder()
                    .description(managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDescription)
                    .displayName(managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDisplayName)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testManagedInstancesInstallWindowsUpdatesManagement:
        type: oci:OsManagementHub:ManagedInstancesInstallWindowsUpdatesManagement
        name: test_managed_instances_install_windows_updates_management
        properties:
          compartmentId: ${compartmentId}
          windowsUpdateTypes: ${managedInstancesInstallWindowsUpdatesManagementWindowsUpdateTypes}
          workRequestDetails:
            description: ${managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDescription}
            displayName: ${managedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsDisplayName}
    

    Create ManagedInstancesInstallWindowsUpdatesManagement Resource

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

    Constructor syntax

    new ManagedInstancesInstallWindowsUpdatesManagement(name: string, args: ManagedInstancesInstallWindowsUpdatesManagementArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedInstancesInstallWindowsUpdatesManagement(resource_name: str,
                                                        args: ManagedInstancesInstallWindowsUpdatesManagementArgs,
                                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedInstancesInstallWindowsUpdatesManagement(resource_name: str,
                                                        opts: Optional[ResourceOptions] = None,
                                                        compartment_id: Optional[str] = None,
                                                        windows_update_types: Optional[Sequence[str]] = None,
                                                        work_request_details: Optional[ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs] = None)
    func NewManagedInstancesInstallWindowsUpdatesManagement(ctx *Context, name string, args ManagedInstancesInstallWindowsUpdatesManagementArgs, opts ...ResourceOption) (*ManagedInstancesInstallWindowsUpdatesManagement, error)
    public ManagedInstancesInstallWindowsUpdatesManagement(string name, ManagedInstancesInstallWindowsUpdatesManagementArgs args, CustomResourceOptions? opts = null)
    public ManagedInstancesInstallWindowsUpdatesManagement(String name, ManagedInstancesInstallWindowsUpdatesManagementArgs args)
    public ManagedInstancesInstallWindowsUpdatesManagement(String name, ManagedInstancesInstallWindowsUpdatesManagementArgs args, CustomResourceOptions options)
    
    type: oci:OsManagementHub:ManagedInstancesInstallWindowsUpdatesManagement
    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 ManagedInstancesInstallWindowsUpdatesManagementArgs
    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 ManagedInstancesInstallWindowsUpdatesManagementArgs
    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 ManagedInstancesInstallWindowsUpdatesManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedInstancesInstallWindowsUpdatesManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedInstancesInstallWindowsUpdatesManagementArgs
    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 managedInstancesInstallWindowsUpdatesManagementResource = new Oci.OsManagementHub.ManagedInstancesInstallWindowsUpdatesManagement("managedInstancesInstallWindowsUpdatesManagementResource", new()
    {
        CompartmentId = "string",
        WindowsUpdateTypes = new[]
        {
            "string",
        },
        WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
        {
            Description = "string",
            DisplayName = "string",
        },
    });
    
    example, err := osmanagementhub.NewManagedInstancesInstallWindowsUpdatesManagement(ctx, "managedInstancesInstallWindowsUpdatesManagementResource", &osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagementArgs{
    	CompartmentId: pulumi.String("string"),
    	WindowsUpdateTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	WorkRequestDetails: &osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs{
    		Description: pulumi.String("string"),
    		DisplayName: pulumi.String("string"),
    	},
    })
    
    var managedInstancesInstallWindowsUpdatesManagementResource = new ManagedInstancesInstallWindowsUpdatesManagement("managedInstancesInstallWindowsUpdatesManagementResource", ManagedInstancesInstallWindowsUpdatesManagementArgs.builder()
        .compartmentId("string")
        .windowsUpdateTypes("string")
        .workRequestDetails(ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs.builder()
            .description("string")
            .displayName("string")
            .build())
        .build());
    
    managed_instances_install_windows_updates_management_resource = oci.osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagement("managedInstancesInstallWindowsUpdatesManagementResource",
        compartment_id="string",
        windows_update_types=["string"],
        work_request_details={
            "description": "string",
            "display_name": "string",
        })
    
    const managedInstancesInstallWindowsUpdatesManagementResource = new oci.osmanagementhub.ManagedInstancesInstallWindowsUpdatesManagement("managedInstancesInstallWindowsUpdatesManagementResource", {
        compartmentId: "string",
        windowsUpdateTypes: ["string"],
        workRequestDetails: {
            description: "string",
            displayName: "string",
        },
    });
    
    type: oci:OsManagementHub:ManagedInstancesInstallWindowsUpdatesManagement
    properties:
        compartmentId: string
        windowsUpdateTypes:
            - string
        workRequestDetails:
            description: string
            displayName: string
    

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

    CompartmentId string
    The OCID of the compartment.
    WindowsUpdateTypes List<string>
    The types of Windows updates to be installed.
    WorkRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    CompartmentId string
    The OCID of the compartment.
    WindowsUpdateTypes []string
    The types of Windows updates to be installed.
    WorkRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    compartmentId String
    The OCID of the compartment.
    windowsUpdateTypes List<String>
    The types of Windows updates to be installed.
    workRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    compartmentId string
    The OCID of the compartment.
    windowsUpdateTypes string[]
    The types of Windows updates to be installed.
    workRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    compartment_id str
    The OCID of the compartment.
    windows_update_types Sequence[str]
    The types of Windows updates to be installed.
    work_request_details ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    compartmentId String
    The OCID of the compartment.
    windowsUpdateTypes List<String>
    The types of Windows updates to be installed.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Outputs

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

    Get an existing ManagedInstancesInstallWindowsUpdatesManagement 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?: ManagedInstancesInstallWindowsUpdatesManagementState, opts?: CustomResourceOptions): ManagedInstancesInstallWindowsUpdatesManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            windows_update_types: Optional[Sequence[str]] = None,
            work_request_details: Optional[ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs] = None) -> ManagedInstancesInstallWindowsUpdatesManagement
    func GetManagedInstancesInstallWindowsUpdatesManagement(ctx *Context, name string, id IDInput, state *ManagedInstancesInstallWindowsUpdatesManagementState, opts ...ResourceOption) (*ManagedInstancesInstallWindowsUpdatesManagement, error)
    public static ManagedInstancesInstallWindowsUpdatesManagement Get(string name, Input<string> id, ManagedInstancesInstallWindowsUpdatesManagementState? state, CustomResourceOptions? opts = null)
    public static ManagedInstancesInstallWindowsUpdatesManagement get(String name, Output<String> id, ManagedInstancesInstallWindowsUpdatesManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:OsManagementHub:ManagedInstancesInstallWindowsUpdatesManagement    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:
    CompartmentId string
    The OCID of the compartment.
    WindowsUpdateTypes List<string>
    The types of Windows updates to be installed.
    WorkRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    CompartmentId string
    The OCID of the compartment.
    WindowsUpdateTypes []string
    The types of Windows updates to be installed.
    WorkRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    compartmentId String
    The OCID of the compartment.
    windowsUpdateTypes List<String>
    The types of Windows updates to be installed.
    workRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    compartmentId string
    The OCID of the compartment.
    windowsUpdateTypes string[]
    The types of Windows updates to be installed.
    workRequestDetails ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails
    Provides the name and description of the job.
    compartment_id str
    The OCID of the compartment.
    windows_update_types Sequence[str]
    The types of Windows updates to be installed.
    work_request_details ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs
    Provides the name and description of the job.
    compartmentId String
    The OCID of the compartment.
    windowsUpdateTypes List<String>
    The types of Windows updates to be installed.
    workRequestDetails Property Map
    Provides the name and description of the job.

    Supporting Types

    ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetails, ManagedInstancesInstallWindowsUpdatesManagementWorkRequestDetailsArgs

    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

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

    $ pulumi import oci:OsManagementHub/managedInstancesInstallWindowsUpdatesManagement:ManagedInstancesInstallWindowsUpdatesManagement test_managed_instances_install_windows_updates_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.