published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
This resource provides the Managed Instance Attach Software Sources 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/AttachSoftwareSources
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub
Adds software sources to a managed instance. After the software source has been added, then packages from that software source can be installed on the managed instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedInstanceAttachSoftwareSourcesManagement = new oci.osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagement("test_managed_instance_attach_software_sources_management", {
managedInstanceId: testManagedInstance.id,
softwareSources: managedInstanceAttachSoftwareSourcesManagementSoftwareSources,
workRequestDetails: {
description: managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDescription,
displayName: managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDisplayName,
},
});
import pulumi
import pulumi_oci as oci
test_managed_instance_attach_software_sources_management = oci.osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagement("test_managed_instance_attach_software_sources_management",
managed_instance_id=test_managed_instance["id"],
software_sources=managed_instance_attach_software_sources_management_software_sources,
work_request_details={
"description": managed_instance_attach_software_sources_management_work_request_details_description,
"display_name": managed_instance_attach_software_sources_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.NewManagedInstanceAttachSoftwareSourcesManagement(ctx, "test_managed_instance_attach_software_sources_management", &osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagementArgs{
ManagedInstanceId: pulumi.Any(testManagedInstance.Id),
SoftwareSources: pulumi.Any(managedInstanceAttachSoftwareSourcesManagementSoftwareSources),
WorkRequestDetails: &osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs{
Description: pulumi.Any(managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDescription),
DisplayName: pulumi.Any(managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDisplayName),
},
})
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 testManagedInstanceAttachSoftwareSourcesManagement = new Oci.OsManagementHub.ManagedInstanceAttachSoftwareSourcesManagement("test_managed_instance_attach_software_sources_management", new()
{
ManagedInstanceId = testManagedInstance.Id,
SoftwareSources = managedInstanceAttachSoftwareSourcesManagementSoftwareSources,
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs
{
Description = managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDescription,
DisplayName = managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDisplayName,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.ManagedInstanceAttachSoftwareSourcesManagement;
import com.pulumi.oci.OsManagementHub.ManagedInstanceAttachSoftwareSourcesManagementArgs;
import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs;
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 testManagedInstanceAttachSoftwareSourcesManagement = new ManagedInstanceAttachSoftwareSourcesManagement("testManagedInstanceAttachSoftwareSourcesManagement", ManagedInstanceAttachSoftwareSourcesManagementArgs.builder()
.managedInstanceId(testManagedInstance.id())
.softwareSources(managedInstanceAttachSoftwareSourcesManagementSoftwareSources)
.workRequestDetails(ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs.builder()
.description(managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDescription)
.displayName(managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDisplayName)
.build())
.build());
}
}
resources:
testManagedInstanceAttachSoftwareSourcesManagement:
type: oci:OsManagementHub:ManagedInstanceAttachSoftwareSourcesManagement
name: test_managed_instance_attach_software_sources_management
properties:
managedInstanceId: ${testManagedInstance.id}
softwareSources: ${managedInstanceAttachSoftwareSourcesManagementSoftwareSources}
workRequestDetails:
description: ${managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDescription}
displayName: ${managedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsDisplayName}
Create ManagedInstanceAttachSoftwareSourcesManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedInstanceAttachSoftwareSourcesManagement(name: string, args: ManagedInstanceAttachSoftwareSourcesManagementArgs, opts?: CustomResourceOptions);@overload
def ManagedInstanceAttachSoftwareSourcesManagement(resource_name: str,
args: ManagedInstanceAttachSoftwareSourcesManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedInstanceAttachSoftwareSourcesManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
software_sources: Optional[Sequence[str]] = None,
work_request_details: Optional[ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs] = None)func NewManagedInstanceAttachSoftwareSourcesManagement(ctx *Context, name string, args ManagedInstanceAttachSoftwareSourcesManagementArgs, opts ...ResourceOption) (*ManagedInstanceAttachSoftwareSourcesManagement, error)public ManagedInstanceAttachSoftwareSourcesManagement(string name, ManagedInstanceAttachSoftwareSourcesManagementArgs args, CustomResourceOptions? opts = null)
public ManagedInstanceAttachSoftwareSourcesManagement(String name, ManagedInstanceAttachSoftwareSourcesManagementArgs args)
public ManagedInstanceAttachSoftwareSourcesManagement(String name, ManagedInstanceAttachSoftwareSourcesManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:ManagedInstanceAttachSoftwareSourcesManagement
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 ManagedInstanceAttachSoftwareSourcesManagementArgs
- 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 ManagedInstanceAttachSoftwareSourcesManagementArgs
- 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 ManagedInstanceAttachSoftwareSourcesManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedInstanceAttachSoftwareSourcesManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedInstanceAttachSoftwareSourcesManagementArgs
- 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 managedInstanceAttachSoftwareSourcesManagementResource = new Oci.OsManagementHub.ManagedInstanceAttachSoftwareSourcesManagement("managedInstanceAttachSoftwareSourcesManagementResource", new()
{
ManagedInstanceId = "string",
SoftwareSources = new[]
{
"string",
},
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs
{
Description = "string",
DisplayName = "string",
},
});
example, err := osmanagementhub.NewManagedInstanceAttachSoftwareSourcesManagement(ctx, "managedInstanceAttachSoftwareSourcesManagementResource", &osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagementArgs{
ManagedInstanceId: pulumi.String("string"),
SoftwareSources: pulumi.StringArray{
pulumi.String("string"),
},
WorkRequestDetails: &osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
})
var managedInstanceAttachSoftwareSourcesManagementResource = new ManagedInstanceAttachSoftwareSourcesManagement("managedInstanceAttachSoftwareSourcesManagementResource", ManagedInstanceAttachSoftwareSourcesManagementArgs.builder()
.managedInstanceId("string")
.softwareSources("string")
.workRequestDetails(ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs.builder()
.description("string")
.displayName("string")
.build())
.build());
managed_instance_attach_software_sources_management_resource = oci.osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagement("managedInstanceAttachSoftwareSourcesManagementResource",
managed_instance_id="string",
software_sources=["string"],
work_request_details={
"description": "string",
"display_name": "string",
})
const managedInstanceAttachSoftwareSourcesManagementResource = new oci.osmanagementhub.ManagedInstanceAttachSoftwareSourcesManagement("managedInstanceAttachSoftwareSourcesManagementResource", {
managedInstanceId: "string",
softwareSources: ["string"],
workRequestDetails: {
description: "string",
displayName: "string",
},
});
type: oci:OsManagementHub:ManagedInstanceAttachSoftwareSourcesManagement
properties:
managedInstanceId: string
softwareSources:
- string
workRequestDetails:
description: string
displayName: string
ManagedInstanceAttachSoftwareSourcesManagement 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 ManagedInstanceAttachSoftwareSourcesManagement resource accepts the following input properties:
- Managed
Instance stringId - The OCID of the managed instance.
- Software
Sources List<string> - The list of software source OCIDs to be attached/detached.
- Work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Software
Sources []string - The list of software source OCIDs to be attached/detached.
- Work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- software
Sources List<String> - The list of software source OCIDs to be attached/detached.
- work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- software
Sources string[] - The list of software source OCIDs to be attached/detached.
- work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- software_
sources Sequence[str] - The list of software source OCIDs to be attached/detached.
- work_
request_ Manageddetails Instance Attach Software Sources Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- software
Sources List<String> - The list of software source OCIDs to be attached/detached.
- work
Request Property MapDetails - Provides the name and description of the job.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedInstanceAttachSoftwareSourcesManagement 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 ManagedInstanceAttachSoftwareSourcesManagement Resource
Get an existing ManagedInstanceAttachSoftwareSourcesManagement 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?: ManagedInstanceAttachSoftwareSourcesManagementState, opts?: CustomResourceOptions): ManagedInstanceAttachSoftwareSourcesManagement@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
software_sources: Optional[Sequence[str]] = None,
work_request_details: Optional[ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs] = None) -> ManagedInstanceAttachSoftwareSourcesManagementfunc GetManagedInstanceAttachSoftwareSourcesManagement(ctx *Context, name string, id IDInput, state *ManagedInstanceAttachSoftwareSourcesManagementState, opts ...ResourceOption) (*ManagedInstanceAttachSoftwareSourcesManagement, error)public static ManagedInstanceAttachSoftwareSourcesManagement Get(string name, Input<string> id, ManagedInstanceAttachSoftwareSourcesManagementState? state, CustomResourceOptions? opts = null)public static ManagedInstanceAttachSoftwareSourcesManagement get(String name, Output<String> id, ManagedInstanceAttachSoftwareSourcesManagementState state, CustomResourceOptions options)resources: _: type: oci:OsManagementHub:ManagedInstanceAttachSoftwareSourcesManagement 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.
- Software
Sources List<string> - The list of software source OCIDs to be attached/detached.
- Work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Software
Sources []string - The list of software source OCIDs to be attached/detached.
- Work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- software
Sources List<String> - The list of software source OCIDs to be attached/detached.
- work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- software
Sources string[] - The list of software source OCIDs to be attached/detached.
- work
Request ManagedDetails Instance Attach Software Sources Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- software_
sources Sequence[str] - The list of software source OCIDs to be attached/detached.
- work_
request_ Manageddetails Instance Attach Software Sources Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- software
Sources List<String> - The list of software source OCIDs to be attached/detached.
- work
Request Property MapDetails - Provides the name and description of the job.
Supporting Types
ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetails, ManagedInstanceAttachSoftwareSourcesManagementWorkRequestDetailsArgs
- 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
ManagedInstanceAttachSoftwareSourcesManagement can be imported using the id, e.g.
$ pulumi import oci:OsManagementHub/managedInstanceAttachSoftwareSourcesManagement:ManagedInstanceAttachSoftwareSourcesManagement test_managed_instance_attach_software_sources_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
