1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. BigDataService
  5. BdsInstanceOsPatchAction
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.BigDataService.BdsInstanceOsPatchAction

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    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[_bigdataservice.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=[oci.big_data_service.BdsInstanceOsPatchActionPatchingConfigArgs(
            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

    The BdsInstanceOsPatchAction resource accepts the following input properties:

    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    OsPatchVersion string

    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<BdsInstanceOsPatchActionPatchingConfig>
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    OsPatchVersion string

    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 []BdsInstanceOsPatchActionPatchingConfigArgs
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    osPatchVersion String

    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<BdsInstanceOsPatchActionPatchingConfig>
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId string
    The OCID of the cluster.
    clusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    osPatchVersion string

    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 BdsInstanceOsPatchActionPatchingConfig[]
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bds_instance_id str
    The OCID of the cluster.
    cluster_admin_password str
    Base-64 encoded password for the cluster admin user.
    os_patch_version str

    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[bigdataservice.BdsInstanceOsPatchActionPatchingConfigArgs]
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    osPatchVersion String

    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[_bigdataservice.BdsInstanceOsPatchActionPatchingConfigArgs]] = None) -> BdsInstanceOsPatchAction
    func 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)
    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.
    The following state arguments are supported:
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    OsPatchVersion string

    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<BdsInstanceOsPatchActionPatchingConfig>
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    OsPatchVersion string

    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 []BdsInstanceOsPatchActionPatchingConfigArgs
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    osPatchVersion String

    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<BdsInstanceOsPatchActionPatchingConfig>
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId string
    The OCID of the cluster.
    clusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    osPatchVersion string

    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 BdsInstanceOsPatchActionPatchingConfig[]
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bds_instance_id str
    The OCID of the cluster.
    cluster_admin_password str
    Base-64 encoded password for the cluster admin user.
    os_patch_version str

    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[bigdataservice.BdsInstanceOsPatchActionPatchingConfigArgs]
    Detailed configurations for defining the behavior when installing ODH patches. If not provided, nodes will be patched with down time.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    osPatchVersion String

    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

    PatchingConfigStrategy string
    Type of strategy used for detailed patching configuration
    BatchSize int
    How many nodes to be patched in each iteration.
    ToleranceThresholdPerBatch int
    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.
    ToleranceThresholdPerDomain int
    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.
    WaitTimeBetweenBatchInSeconds int
    The wait time between batches in seconds.
    WaitTimeBetweenDomainInSeconds int
    The wait time between AD/FD in seconds.
    PatchingConfigStrategy string
    Type of strategy used for detailed patching configuration
    BatchSize int
    How many nodes to be patched in each iteration.
    ToleranceThresholdPerBatch int
    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.
    ToleranceThresholdPerDomain int
    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.
    WaitTimeBetweenBatchInSeconds int
    The wait time between batches in seconds.
    WaitTimeBetweenDomainInSeconds int
    The wait time between AD/FD in seconds.
    patchingConfigStrategy String
    Type of strategy used for detailed patching configuration
    batchSize Integer
    How many nodes to be patched in each iteration.
    toleranceThresholdPerBatch Integer
    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.
    toleranceThresholdPerDomain Integer
    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.
    waitTimeBetweenBatchInSeconds Integer
    The wait time between batches in seconds.
    waitTimeBetweenDomainInSeconds Integer
    The wait time between AD/FD in seconds.
    patchingConfigStrategy string
    Type of strategy used for detailed patching configuration
    batchSize number
    How many nodes to be patched in each iteration.
    toleranceThresholdPerBatch number
    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.
    toleranceThresholdPerDomain number
    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.
    waitTimeBetweenBatchInSeconds number
    The wait time between batches in seconds.
    waitTimeBetweenDomainInSeconds number
    The wait time between AD/FD in seconds.
    patching_config_strategy str
    Type of strategy used for detailed patching configuration
    batch_size int
    How many nodes to be patched in each iteration.
    tolerance_threshold_per_batch int
    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_per_domain int
    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_between_batch_in_seconds int
    The wait time between batches in seconds.
    wait_time_between_domain_in_seconds int
    The wait time between AD/FD in seconds.
    patchingConfigStrategy String
    Type of strategy used for detailed patching configuration
    batchSize Number
    How many nodes to be patched in each iteration.
    toleranceThresholdPerBatch Number
    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.
    toleranceThresholdPerDomain Number
    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.
    waitTimeBetweenBatchInSeconds Number
    The wait time between batches in seconds.
    waitTimeBetweenDomainInSeconds Number
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi