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[_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:
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Os
Patch 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
- Patching
Configs 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.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Os
Patch 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
- Patching
Configs []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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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.
- bds
Instance stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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[bigdataservice.Bds Instance 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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Os
Patch 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
- Patching
Configs 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.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Os
Patch 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
- Patching
Configs []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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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.
- bds
Instance stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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[bigdataservice.Bds Instance 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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- os
Patch 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
- patching
Configs 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
- Patching
Config stringStrategy - 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.
- Patching
Config stringStrategy - 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.
- patching
Config StringStrategy - Type of strategy used for detailed patching configuration
- batch
Size Integer - How many nodes to be patched in each iteration.
- tolerance
Threshold 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.
- tolerance
Threshold 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.
- wait
Time IntegerBetween Batch In Seconds - The wait time between batches in seconds.
- wait
Time IntegerBetween Domain In Seconds - The wait time between AD/FD in seconds.
- patching
Config stringStrategy - Type of strategy used for detailed patching configuration
- batch
Size number - How many nodes to be patched in each iteration.
- tolerance
Threshold 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.
- tolerance
Threshold 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.
- wait
Time numberBetween Batch In Seconds - The wait time between batches in seconds.
- wait
Time 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.
- patching
Config StringStrategy - Type of strategy used for detailed patching configuration
- batch
Size Number - How many nodes to be patched in each iteration.
- tolerance
Threshold 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.
- tolerance
Threshold 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.
- wait
Time NumberBetween Batch In Seconds - The wait time between batches in seconds.
- wait
Time 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
oci
Terraform Provider.