oci.OsManagementHub.ManagedInstanceUpdatePackagesManagement
Explore with Pulumi AI
This resource provides the Managed Instance Update Packages Management resource in Oracle Cloud Infrastructure Os Management Hub service.
Updates a package on a managed instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedInstanceUpdatePackagesManagement = new oci.osmanagementhub.ManagedInstanceUpdatePackagesManagement("test_managed_instance_update_packages_management", {
managedInstanceId: testManagedInstance.id,
packageNames: managedInstanceUpdatePackagesManagementPackageNames,
updateTypes: managedInstanceUpdatePackagesManagementUpdateTypes,
workRequestDetails: {
description: managedInstanceUpdatePackagesManagementWorkRequestDetailsDescription,
displayName: managedInstanceUpdatePackagesManagementWorkRequestDetailsDisplayName,
},
});
import pulumi
import pulumi_oci as oci
test_managed_instance_update_packages_management = oci.os_management_hub.ManagedInstanceUpdatePackagesManagement("test_managed_instance_update_packages_management",
managed_instance_id=test_managed_instance["id"],
package_names=managed_instance_update_packages_management_package_names,
update_types=managed_instance_update_packages_management_update_types,
work_request_details={
"description": managed_instance_update_packages_management_work_request_details_description,
"display_name": managed_instance_update_packages_management_work_request_details_display_name,
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/OsManagementHub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := OsManagementHub.NewManagedInstanceUpdatePackagesManagement(ctx, "test_managed_instance_update_packages_management", &OsManagementHub.ManagedInstanceUpdatePackagesManagementArgs{
ManagedInstanceId: pulumi.Any(testManagedInstance.Id),
PackageNames: pulumi.Any(managedInstanceUpdatePackagesManagementPackageNames),
UpdateTypes: pulumi.Any(managedInstanceUpdatePackagesManagementUpdateTypes),
WorkRequestDetails: &osmanagementhub.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs{
Description: pulumi.Any(managedInstanceUpdatePackagesManagementWorkRequestDetailsDescription),
DisplayName: pulumi.Any(managedInstanceUpdatePackagesManagementWorkRequestDetailsDisplayName),
},
})
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 testManagedInstanceUpdatePackagesManagement = new Oci.OsManagementHub.ManagedInstanceUpdatePackagesManagement("test_managed_instance_update_packages_management", new()
{
ManagedInstanceId = testManagedInstance.Id,
PackageNames = managedInstanceUpdatePackagesManagementPackageNames,
UpdateTypes = managedInstanceUpdatePackagesManagementUpdateTypes,
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs
{
Description = managedInstanceUpdatePackagesManagementWorkRequestDetailsDescription,
DisplayName = managedInstanceUpdatePackagesManagementWorkRequestDetailsDisplayName,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.ManagedInstanceUpdatePackagesManagement;
import com.pulumi.oci.OsManagementHub.ManagedInstanceUpdatePackagesManagementArgs;
import com.pulumi.oci.OsManagementHub.inputs.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs;
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 testManagedInstanceUpdatePackagesManagement = new ManagedInstanceUpdatePackagesManagement("testManagedInstanceUpdatePackagesManagement", ManagedInstanceUpdatePackagesManagementArgs.builder()
.managedInstanceId(testManagedInstance.id())
.packageNames(managedInstanceUpdatePackagesManagementPackageNames)
.updateTypes(managedInstanceUpdatePackagesManagementUpdateTypes)
.workRequestDetails(ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs.builder()
.description(managedInstanceUpdatePackagesManagementWorkRequestDetailsDescription)
.displayName(managedInstanceUpdatePackagesManagementWorkRequestDetailsDisplayName)
.build())
.build());
}
}
resources:
testManagedInstanceUpdatePackagesManagement:
type: oci:OsManagementHub:ManagedInstanceUpdatePackagesManagement
name: test_managed_instance_update_packages_management
properties:
managedInstanceId: ${testManagedInstance.id}
packageNames: ${managedInstanceUpdatePackagesManagementPackageNames}
updateTypes: ${managedInstanceUpdatePackagesManagementUpdateTypes}
workRequestDetails:
description: ${managedInstanceUpdatePackagesManagementWorkRequestDetailsDescription}
displayName: ${managedInstanceUpdatePackagesManagementWorkRequestDetailsDisplayName}
Create ManagedInstanceUpdatePackagesManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedInstanceUpdatePackagesManagement(name: string, args: ManagedInstanceUpdatePackagesManagementArgs, opts?: CustomResourceOptions);
@overload
def ManagedInstanceUpdatePackagesManagement(resource_name: str,
args: ManagedInstanceUpdatePackagesManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedInstanceUpdatePackagesManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
package_names: Optional[Sequence[str]] = None,
update_types: Optional[Sequence[str]] = None,
work_request_details: Optional[_osmanagementhub.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs] = None)
func NewManagedInstanceUpdatePackagesManagement(ctx *Context, name string, args ManagedInstanceUpdatePackagesManagementArgs, opts ...ResourceOption) (*ManagedInstanceUpdatePackagesManagement, error)
public ManagedInstanceUpdatePackagesManagement(string name, ManagedInstanceUpdatePackagesManagementArgs args, CustomResourceOptions? opts = null)
public ManagedInstanceUpdatePackagesManagement(String name, ManagedInstanceUpdatePackagesManagementArgs args)
public ManagedInstanceUpdatePackagesManagement(String name, ManagedInstanceUpdatePackagesManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:ManagedInstanceUpdatePackagesManagement
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 ManagedInstanceUpdatePackagesManagementArgs
- 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 ManagedInstanceUpdatePackagesManagementArgs
- 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 ManagedInstanceUpdatePackagesManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedInstanceUpdatePackagesManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedInstanceUpdatePackagesManagementArgs
- 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 managedInstanceUpdatePackagesManagementResource = new Oci.OsManagementHub.ManagedInstanceUpdatePackagesManagement("managedInstanceUpdatePackagesManagementResource", new()
{
ManagedInstanceId = "string",
PackageNames = new[]
{
"string",
},
UpdateTypes = new[]
{
"string",
},
WorkRequestDetails = new Oci.OsManagementHub.Inputs.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs
{
Description = "string",
DisplayName = "string",
},
});
example, err := OsManagementHub.NewManagedInstanceUpdatePackagesManagement(ctx, "managedInstanceUpdatePackagesManagementResource", &OsManagementHub.ManagedInstanceUpdatePackagesManagementArgs{
ManagedInstanceId: pulumi.String("string"),
PackageNames: pulumi.StringArray{
pulumi.String("string"),
},
UpdateTypes: pulumi.StringArray{
pulumi.String("string"),
},
WorkRequestDetails: &osmanagementhub.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
})
var managedInstanceUpdatePackagesManagementResource = new ManagedInstanceUpdatePackagesManagement("managedInstanceUpdatePackagesManagementResource", ManagedInstanceUpdatePackagesManagementArgs.builder()
.managedInstanceId("string")
.packageNames("string")
.updateTypes("string")
.workRequestDetails(ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs.builder()
.description("string")
.displayName("string")
.build())
.build());
managed_instance_update_packages_management_resource = oci.os_management_hub.ManagedInstanceUpdatePackagesManagement("managedInstanceUpdatePackagesManagementResource",
managed_instance_id="string",
package_names=["string"],
update_types=["string"],
work_request_details=oci.os_management_hub.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs(
description="string",
display_name="string",
))
const managedInstanceUpdatePackagesManagementResource = new oci.osmanagementhub.ManagedInstanceUpdatePackagesManagement("managedInstanceUpdatePackagesManagementResource", {
managedInstanceId: "string",
packageNames: ["string"],
updateTypes: ["string"],
workRequestDetails: {
description: "string",
displayName: "string",
},
});
type: oci:OsManagementHub:ManagedInstanceUpdatePackagesManagement
properties:
managedInstanceId: string
packageNames:
- string
updateTypes:
- string
workRequestDetails:
description: string
displayName: string
ManagedInstanceUpdatePackagesManagement Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ManagedInstanceUpdatePackagesManagement resource accepts the following input properties:
- Managed
Instance stringId - The OCID of the managed instance.
- Package
Names List<string> - The list of package names.
- Update
Types List<string> - The types of updates to be applied.
- Work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Package
Names []string - The list of package names.
- Update
Types []string - The types of updates to be applied.
- Work
Request ManagedDetails Instance Update Packages Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- package
Names List<String> - The list of package names.
- update
Types List<String> - The types of updates to be applied.
- work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- package
Names string[] - The list of package names.
- update
Types string[] - The types of updates to be applied.
- work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- package_
names Sequence[str] - The list of package names.
- update_
types Sequence[str] - The types of updates to be applied.
- work_
request_ osmanagementhub.details Managed Instance Update Packages Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- package
Names List<String> - The list of package names.
- update
Types List<String> - The types of updates to be applied.
- work
Request Property MapDetails - Provides the name and description of the job.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedInstanceUpdatePackagesManagement 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 ManagedInstanceUpdatePackagesManagement Resource
Get an existing ManagedInstanceUpdatePackagesManagement 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?: ManagedInstanceUpdatePackagesManagementState, opts?: CustomResourceOptions): ManagedInstanceUpdatePackagesManagement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
managed_instance_id: Optional[str] = None,
package_names: Optional[Sequence[str]] = None,
update_types: Optional[Sequence[str]] = None,
work_request_details: Optional[_osmanagementhub.ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs] = None) -> ManagedInstanceUpdatePackagesManagement
func GetManagedInstanceUpdatePackagesManagement(ctx *Context, name string, id IDInput, state *ManagedInstanceUpdatePackagesManagementState, opts ...ResourceOption) (*ManagedInstanceUpdatePackagesManagement, error)
public static ManagedInstanceUpdatePackagesManagement Get(string name, Input<string> id, ManagedInstanceUpdatePackagesManagementState? state, CustomResourceOptions? opts = null)
public static ManagedInstanceUpdatePackagesManagement get(String name, Output<String> id, ManagedInstanceUpdatePackagesManagementState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Package
Names List<string> - The list of package names.
- Update
Types List<string> - The types of updates to be applied.
- Work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- Managed
Instance stringId - The OCID of the managed instance.
- Package
Names []string - The list of package names.
- Update
Types []string - The types of updates to be applied.
- Work
Request ManagedDetails Instance Update Packages Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- package
Names List<String> - The list of package names.
- update
Types List<String> - The types of updates to be applied.
- work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- managed
Instance stringId - The OCID of the managed instance.
- package
Names string[] - The list of package names.
- update
Types string[] - The types of updates to be applied.
- work
Request ManagedDetails Instance Update Packages Management Work Request Details - Provides the name and description of the job.
- managed_
instance_ strid - The OCID of the managed instance.
- package_
names Sequence[str] - The list of package names.
- update_
types Sequence[str] - The types of updates to be applied.
- work_
request_ osmanagementhub.details Managed Instance Update Packages Management Work Request Details Args - Provides the name and description of the job.
- managed
Instance StringId - The OCID of the managed instance.
- package
Names List<String> - The list of package names.
- update
Types List<String> - The types of updates to be applied.
- work
Request Property MapDetails - Provides the name and description of the job.
Supporting Types
ManagedInstanceUpdatePackagesManagementWorkRequestDetails, ManagedInstanceUpdatePackagesManagementWorkRequestDetailsArgs
- 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
ManagedInstanceUpdatePackagesManagement can be imported using the id
, e.g.
$ pulumi import oci:OsManagementHub/managedInstanceUpdatePackagesManagement:ManagedInstanceUpdatePackagesManagement test_managed_instance_update_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.