oci.BigDataService.BdsInstanceOsPatchAction
Explore with Pulumi AI
This resource provides the Bds Instance OS Patch Action resource in Oracle Cloud Infrastructure Big Data Service service.
Install the specified OS patch to this cluster nodes.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceOsPatchAction = new oci.bigdataservice.BdsInstanceOsPatchAction("test_bds_instance_os_patch_action", {
    bdsInstanceId: testBdsInstance.id,
    clusterAdminPassword: bdsInstanceOsPatchActionClusterAdminPassword,
    osPatchVersion: bdsInstanceOsPatchActionOsPatchVersion,
    patchingConfigs: [{
        patchingConfigStrategy: bdsInstanceOsPatchActionPatchingConfigStrategy,
        batchSize: bdsInstanceOsPatchActionBatchSize,
        waitTimeBetweenBatchInSeconds: bdsInstanceOsPatchActionWaitTimeBetweenBatchInSeconds,
        toleranceThresholdPerBatch: bdsInstanceOsPatchActionToleranceThresholdPerBatch,
        waitTimeBetweenDomainInSeconds: bdsInstanceOsPatchActionWaitTimeBetweenDomainInSeconds,
        toleranceThresholdPerDomain: bdsInstanceOsPatchActionToleranceThresholdPerDomain,
    }],
});
import pulumi
import pulumi_oci as oci
test_bds_instance_os_patch_action = oci.big_data_service.BdsInstanceOsPatchAction("test_bds_instance_os_patch_action",
    bds_instance_id=test_bds_instance["id"],
    cluster_admin_password=bds_instance_os_patch_action_cluster_admin_password,
    os_patch_version=bds_instance_os_patch_action_os_patch_version,
    patching_configs=[{
        "patching_config_strategy": bds_instance_os_patch_action_patching_config_strategy,
        "batch_size": bds_instance_os_patch_action_batch_size,
        "wait_time_between_batch_in_seconds": bds_instance_os_patch_action_wait_time_between_batch_in_seconds,
        "tolerance_threshold_per_batch": bds_instance_os_patch_action_tolerance_threshold_per_batch,
        "wait_time_between_domain_in_seconds": bds_instance_os_patch_action_wait_time_between_domain_in_seconds,
        "tolerance_threshold_per_domain": bds_instance_os_patch_action_tolerance_threshold_per_domain,
    }])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/bigdataservice"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := bigdataservice.NewBdsInstanceOsPatchAction(ctx, "test_bds_instance_os_patch_action", &bigdataservice.BdsInstanceOsPatchActionArgs{
			BdsInstanceId:        pulumi.Any(testBdsInstance.Id),
			ClusterAdminPassword: pulumi.Any(bdsInstanceOsPatchActionClusterAdminPassword),
			OsPatchVersion:       pulumi.Any(bdsInstanceOsPatchActionOsPatchVersion),
			PatchingConfigs: bigdataservice.BdsInstanceOsPatchActionPatchingConfigArray{
				&bigdataservice.BdsInstanceOsPatchActionPatchingConfigArgs{
					PatchingConfigStrategy:         pulumi.Any(bdsInstanceOsPatchActionPatchingConfigStrategy),
					BatchSize:                      pulumi.Any(bdsInstanceOsPatchActionBatchSize),
					WaitTimeBetweenBatchInSeconds:  pulumi.Any(bdsInstanceOsPatchActionWaitTimeBetweenBatchInSeconds),
					ToleranceThresholdPerBatch:     pulumi.Any(bdsInstanceOsPatchActionToleranceThresholdPerBatch),
					WaitTimeBetweenDomainInSeconds: pulumi.Any(bdsInstanceOsPatchActionWaitTimeBetweenDomainInSeconds),
					ToleranceThresholdPerDomain:    pulumi.Any(bdsInstanceOsPatchActionToleranceThresholdPerDomain),
				},
			},
		})
		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 testBdsInstanceOsPatchAction = new Oci.BigDataService.BdsInstanceOsPatchAction("test_bds_instance_os_patch_action", new()
    {
        BdsInstanceId = testBdsInstance.Id,
        ClusterAdminPassword = bdsInstanceOsPatchActionClusterAdminPassword,
        OsPatchVersion = bdsInstanceOsPatchActionOsPatchVersion,
        PatchingConfigs = new[]
        {
            new Oci.BigDataService.Inputs.BdsInstanceOsPatchActionPatchingConfigArgs
            {
                PatchingConfigStrategy = bdsInstanceOsPatchActionPatchingConfigStrategy,
                BatchSize = bdsInstanceOsPatchActionBatchSize,
                WaitTimeBetweenBatchInSeconds = bdsInstanceOsPatchActionWaitTimeBetweenBatchInSeconds,
                ToleranceThresholdPerBatch = bdsInstanceOsPatchActionToleranceThresholdPerBatch,
                WaitTimeBetweenDomainInSeconds = bdsInstanceOsPatchActionWaitTimeBetweenDomainInSeconds,
                ToleranceThresholdPerDomain = bdsInstanceOsPatchActionToleranceThresholdPerDomain,
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BdsInstanceOsPatchAction;
import com.pulumi.oci.BigDataService.BdsInstanceOsPatchActionArgs;
import com.pulumi.oci.BigDataService.inputs.BdsInstanceOsPatchActionPatchingConfigArgs;
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 testBdsInstanceOsPatchAction = new BdsInstanceOsPatchAction("testBdsInstanceOsPatchAction", BdsInstanceOsPatchActionArgs.builder()
            .bdsInstanceId(testBdsInstance.id())
            .clusterAdminPassword(bdsInstanceOsPatchActionClusterAdminPassword)
            .osPatchVersion(bdsInstanceOsPatchActionOsPatchVersion)
            .patchingConfigs(BdsInstanceOsPatchActionPatchingConfigArgs.builder()
                .patchingConfigStrategy(bdsInstanceOsPatchActionPatchingConfigStrategy)
                .batchSize(bdsInstanceOsPatchActionBatchSize)
                .waitTimeBetweenBatchInSeconds(bdsInstanceOsPatchActionWaitTimeBetweenBatchInSeconds)
                .toleranceThresholdPerBatch(bdsInstanceOsPatchActionToleranceThresholdPerBatch)
                .waitTimeBetweenDomainInSeconds(bdsInstanceOsPatchActionWaitTimeBetweenDomainInSeconds)
                .toleranceThresholdPerDomain(bdsInstanceOsPatchActionToleranceThresholdPerDomain)
                .build())
            .build());
    }
}
resources:
  testBdsInstanceOsPatchAction:
    type: oci:BigDataService:BdsInstanceOsPatchAction
    name: test_bds_instance_os_patch_action
    properties:
      bdsInstanceId: ${testBdsInstance.id}
      clusterAdminPassword: ${bdsInstanceOsPatchActionClusterAdminPassword}
      osPatchVersion: ${bdsInstanceOsPatchActionOsPatchVersion}
      patchingConfigs:
        - patchingConfigStrategy: ${bdsInstanceOsPatchActionPatchingConfigStrategy}
          batchSize: ${bdsInstanceOsPatchActionBatchSize}
          waitTimeBetweenBatchInSeconds: ${bdsInstanceOsPatchActionWaitTimeBetweenBatchInSeconds}
          toleranceThresholdPerBatch: ${bdsInstanceOsPatchActionToleranceThresholdPerBatch}
          waitTimeBetweenDomainInSeconds: ${bdsInstanceOsPatchActionWaitTimeBetweenDomainInSeconds}
          toleranceThresholdPerDomain: ${bdsInstanceOsPatchActionToleranceThresholdPerDomain}
Create BdsInstanceOsPatchAction Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BdsInstanceOsPatchAction(name: string, args: BdsInstanceOsPatchActionArgs, opts?: CustomResourceOptions);@overload
def BdsInstanceOsPatchAction(resource_name: str,
                             args: BdsInstanceOsPatchActionArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def BdsInstanceOsPatchAction(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             bds_instance_id: Optional[str] = None,
                             cluster_admin_password: Optional[str] = None,
                             os_patch_version: Optional[str] = None,
                             patching_configs: Optional[Sequence[BdsInstanceOsPatchActionPatchingConfigArgs]] = None)func NewBdsInstanceOsPatchAction(ctx *Context, name string, args BdsInstanceOsPatchActionArgs, opts ...ResourceOption) (*BdsInstanceOsPatchAction, error)public BdsInstanceOsPatchAction(string name, BdsInstanceOsPatchActionArgs args, CustomResourceOptions? opts = null)
public BdsInstanceOsPatchAction(String name, BdsInstanceOsPatchActionArgs args)
public BdsInstanceOsPatchAction(String name, BdsInstanceOsPatchActionArgs args, CustomResourceOptions options)
type: oci:BigDataService:BdsInstanceOsPatchAction
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 BdsInstanceOsPatchActionArgs
- 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 BdsInstanceOsPatchActionArgs
- 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 BdsInstanceOsPatchActionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BdsInstanceOsPatchActionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BdsInstanceOsPatchActionArgs
- 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 bdsInstanceOsPatchActionResource = new Oci.BigDataService.BdsInstanceOsPatchAction("bdsInstanceOsPatchActionResource", new()
{
    BdsInstanceId = "string",
    ClusterAdminPassword = "string",
    OsPatchVersion = "string",
    PatchingConfigs = new[]
    {
        new Oci.BigDataService.Inputs.BdsInstanceOsPatchActionPatchingConfigArgs
        {
            PatchingConfigStrategy = "string",
            BatchSize = 0,
            ToleranceThresholdPerBatch = 0,
            ToleranceThresholdPerDomain = 0,
            WaitTimeBetweenBatchInSeconds = 0,
            WaitTimeBetweenDomainInSeconds = 0,
        },
    },
});
example, err := bigdataservice.NewBdsInstanceOsPatchAction(ctx, "bdsInstanceOsPatchActionResource", &bigdataservice.BdsInstanceOsPatchActionArgs{
	BdsInstanceId:        pulumi.String("string"),
	ClusterAdminPassword: pulumi.String("string"),
	OsPatchVersion:       pulumi.String("string"),
	PatchingConfigs: bigdataservice.BdsInstanceOsPatchActionPatchingConfigArray{
		&bigdataservice.BdsInstanceOsPatchActionPatchingConfigArgs{
			PatchingConfigStrategy:         pulumi.String("string"),
			BatchSize:                      pulumi.Int(0),
			ToleranceThresholdPerBatch:     pulumi.Int(0),
			ToleranceThresholdPerDomain:    pulumi.Int(0),
			WaitTimeBetweenBatchInSeconds:  pulumi.Int(0),
			WaitTimeBetweenDomainInSeconds: pulumi.Int(0),
		},
	},
})
var bdsInstanceOsPatchActionResource = new BdsInstanceOsPatchAction("bdsInstanceOsPatchActionResource", BdsInstanceOsPatchActionArgs.builder()
    .bdsInstanceId("string")
    .clusterAdminPassword("string")
    .osPatchVersion("string")
    .patchingConfigs(BdsInstanceOsPatchActionPatchingConfigArgs.builder()
        .patchingConfigStrategy("string")
        .batchSize(0)
        .toleranceThresholdPerBatch(0)
        .toleranceThresholdPerDomain(0)
        .waitTimeBetweenBatchInSeconds(0)
        .waitTimeBetweenDomainInSeconds(0)
        .build())
    .build());
bds_instance_os_patch_action_resource = oci.big_data_service.BdsInstanceOsPatchAction("bdsInstanceOsPatchActionResource",
    bds_instance_id="string",
    cluster_admin_password="string",
    os_patch_version="string",
    patching_configs=[{
        "patching_config_strategy": "string",
        "batch_size": 0,
        "tolerance_threshold_per_batch": 0,
        "tolerance_threshold_per_domain": 0,
        "wait_time_between_batch_in_seconds": 0,
        "wait_time_between_domain_in_seconds": 0,
    }])
const bdsInstanceOsPatchActionResource = new oci.bigdataservice.BdsInstanceOsPatchAction("bdsInstanceOsPatchActionResource", {
    bdsInstanceId: "string",
    clusterAdminPassword: "string",
    osPatchVersion: "string",
    patchingConfigs: [{
        patchingConfigStrategy: "string",
        batchSize: 0,
        toleranceThresholdPerBatch: 0,
        toleranceThresholdPerDomain: 0,
        waitTimeBetweenBatchInSeconds: 0,
        waitTimeBetweenDomainInSeconds: 0,
    }],
});
type: oci:BigDataService:BdsInstanceOsPatchAction
properties:
    bdsInstanceId: string
    clusterAdminPassword: string
    osPatchVersion: string
    patchingConfigs:
        - batchSize: 0
          patchingConfigStrategy: string
          toleranceThresholdPerBatch: 0
          toleranceThresholdPerDomain: 0
          waitTimeBetweenBatchInSeconds: 0
          waitTimeBetweenDomainInSeconds: 0
BdsInstanceOsPatchAction 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 BdsInstanceOsPatchAction resource accepts the following input properties:
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- OsPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- PatchingConfigs List<BdsInstance Os Patch Action Patching Config> 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- OsPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- PatchingConfigs []BdsInstance Os Patch Action Patching Config Args 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch StringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs List<BdsInstance Os Patch Action Patching Config> 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance stringId 
- The OCID of the cluster.
- clusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs BdsInstance Os Patch Action Patching Config[] 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bds_instance_ strid 
- The OCID of the cluster.
- cluster_admin_ strpassword 
- Base-64 encoded password for the cluster admin user.
- os_patch_ strversion 
- The version of the OS patch to be installed. - ** 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 
- patching_configs Sequence[BdsInstance Os Patch Action Patching Config Args] 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch StringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs List<Property Map>
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
Outputs
All input properties are implicitly available as output properties. Additionally, the BdsInstanceOsPatchAction 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 BdsInstanceOsPatchAction Resource
Get an existing BdsInstanceOsPatchAction 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?: BdsInstanceOsPatchActionState, opts?: CustomResourceOptions): BdsInstanceOsPatchAction@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bds_instance_id: Optional[str] = None,
        cluster_admin_password: Optional[str] = None,
        os_patch_version: Optional[str] = None,
        patching_configs: Optional[Sequence[BdsInstanceOsPatchActionPatchingConfigArgs]] = None) -> BdsInstanceOsPatchActionfunc GetBdsInstanceOsPatchAction(ctx *Context, name string, id IDInput, state *BdsInstanceOsPatchActionState, opts ...ResourceOption) (*BdsInstanceOsPatchAction, error)public static BdsInstanceOsPatchAction Get(string name, Input<string> id, BdsInstanceOsPatchActionState? state, CustomResourceOptions? opts = null)public static BdsInstanceOsPatchAction get(String name, Output<String> id, BdsInstanceOsPatchActionState state, CustomResourceOptions options)resources:  _:    type: oci:BigDataService:BdsInstanceOsPatchAction    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.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- OsPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- PatchingConfigs List<BdsInstance Os Patch Action Patching Config> 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- OsPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- PatchingConfigs []BdsInstance Os Patch Action Patching Config Args 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch StringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs List<BdsInstance Os Patch Action Patching Config> 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance stringId 
- The OCID of the cluster.
- clusterAdmin stringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch stringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs BdsInstance Os Patch Action Patching Config[] 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bds_instance_ strid 
- The OCID of the cluster.
- cluster_admin_ strpassword 
- Base-64 encoded password for the cluster admin user.
- os_patch_ strversion 
- The version of the OS patch to be installed. - ** 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 
- patching_configs Sequence[BdsInstance Os Patch Action Patching Config Args] 
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- Base-64 encoded password for the cluster admin user.
- osPatch StringVersion 
- The version of the OS patch to be installed. - ** 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 
- patchingConfigs List<Property Map>
- Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
Supporting Types
BdsInstanceOsPatchActionPatchingConfig, BdsInstanceOsPatchActionPatchingConfigArgs              
- PatchingConfig stringStrategy 
- Type of strategy used for detailed patching configuration
- BatchSize int
- How many nodes to be patched in each iteration.
- ToleranceThreshold intPer Batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- ToleranceThreshold intPer Domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- WaitTime intBetween Batch In Seconds 
- The wait time between batches in seconds.
- WaitTime intBetween Domain In Seconds 
- The wait time between AD/FD in seconds.
- PatchingConfig stringStrategy 
- Type of strategy used for detailed patching configuration
- BatchSize int
- How many nodes to be patched in each iteration.
- ToleranceThreshold intPer Batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- ToleranceThreshold intPer Domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- WaitTime intBetween Batch In Seconds 
- The wait time between batches in seconds.
- WaitTime intBetween Domain In Seconds 
- The wait time between AD/FD in seconds.
- patchingConfig StringStrategy 
- Type of strategy used for detailed patching configuration
- batchSize Integer
- How many nodes to be patched in each iteration.
- toleranceThreshold IntegerPer Batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- toleranceThreshold IntegerPer Domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- waitTime IntegerBetween Batch In Seconds 
- The wait time between batches in seconds.
- waitTime IntegerBetween Domain In Seconds 
- The wait time between AD/FD in seconds.
- patchingConfig stringStrategy 
- Type of strategy used for detailed patching configuration
- batchSize number
- How many nodes to be patched in each iteration.
- toleranceThreshold numberPer Batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- toleranceThreshold numberPer Domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- waitTime numberBetween Batch In Seconds 
- The wait time between batches in seconds.
- waitTime numberBetween Domain In Seconds 
- The wait time between AD/FD in seconds.
- patching_config_ strstrategy 
- Type of strategy used for detailed patching configuration
- batch_size int
- How many nodes to be patched in each iteration.
- tolerance_threshold_ intper_ batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- tolerance_threshold_ intper_ domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- wait_time_ intbetween_ batch_ in_ seconds 
- The wait time between batches in seconds.
- wait_time_ intbetween_ domain_ in_ seconds 
- The wait time between AD/FD in seconds.
- patchingConfig StringStrategy 
- Type of strategy used for detailed patching configuration
- batchSize Number
- How many nodes to be patched in each iteration.
- toleranceThreshold NumberPer Batch 
- Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- toleranceThreshold NumberPer Domain 
- Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
- waitTime NumberBetween Batch In Seconds 
- The wait time between batches in seconds.
- waitTime NumberBetween Domain In Seconds 
- The wait time between AD/FD in seconds.
Import
Import is not supported for this resource.
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.