pulumi-oci 2.6.0a1722924801__py3-none-any.whl → 2.6.0a1723107075__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +32 -0
- pulumi_oci/bigdataservice/_inputs.py +157 -14
- pulumi_oci/bigdataservice/bds_instance.py +128 -0
- pulumi_oci/bigdataservice/bds_instance_patch_action.py +64 -3
- pulumi_oci/bigdataservice/get_bds_instance.py +31 -1
- pulumi_oci/bigdataservice/outputs.py +257 -30
- pulumi_oci/devops/__init__.py +6 -0
- pulumi_oci/devops/_inputs.py +531 -32
- pulumi_oci/devops/get_build_runs.py +0 -5
- pulumi_oci/devops/get_project_repository_setting.py +129 -0
- pulumi_oci/devops/get_repositories.py +1 -1
- pulumi_oci/devops/get_repository.py +17 -4
- pulumi_oci/devops/get_repository_diffs.py +20 -3
- pulumi_oci/devops/get_repository_protected_branches.py +150 -0
- pulumi_oci/devops/get_repository_ref.py +2 -2
- pulumi_oci/devops/get_repository_setting.py +142 -0
- pulumi_oci/devops/get_triggers.py +0 -5
- pulumi_oci/devops/outputs.py +1216 -180
- pulumi_oci/devops/project_repository_setting.py +338 -0
- pulumi_oci/devops/repository.py +66 -75
- pulumi_oci/devops/repository_protected_branch_management.py +333 -0
- pulumi_oci/devops/repository_ref.py +2 -2
- pulumi_oci/devops/repository_setting.py +391 -0
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +80 -0
- pulumi_oci/jms/get_agent_installers.py +190 -0
- pulumi_oci/jms/get_fleet_blocklists.py +2 -2
- pulumi_oci/jms/get_fleet_crypto_analysis_result.py +29 -3
- pulumi_oci/jms/get_fleet_crypto_analysis_results.py +97 -3
- pulumi_oci/jms/get_fleet_export_setting.py +3 -3
- pulumi_oci/jms/get_fleet_export_status.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_result.py +2 -2
- pulumi_oci/jms/get_fleet_java_migration_analysis_results.py +45 -5
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_result.py +4 -4
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +25 -5
- pulumi_oci/jms/get_fleets.py +2 -2
- pulumi_oci/jms/get_installation_site.py +4 -4
- pulumi_oci/jms/get_installation_sites.py +4 -4
- pulumi_oci/jms/get_java_downloads_java_download_tokens.py +2 -2
- pulumi_oci/jms/get_java_downloads_java_license_acceptance_records.py +2 -2
- pulumi_oci/jms/get_java_family.py +14 -1
- pulumi_oci/jms/get_jms_plugin.py +313 -0
- pulumi_oci/jms/get_jms_plugins.py +291 -0
- pulumi_oci/jms/jms_plugin.py +731 -0
- pulumi_oci/jms/outputs.py +488 -32
- pulumi_oci/osmanagementhub/get_software_source.py +19 -1
- pulumi_oci/osmanagementhub/software_source.py +82 -0
- pulumi_oci/psql/_inputs.py +8 -4
- pulumi_oci/psql/backup.py +4 -4
- pulumi_oci/psql/configuration.py +141 -38
- pulumi_oci/psql/db_system.py +53 -55
- pulumi_oci/psql/get_backup.py +1 -1
- pulumi_oci/psql/get_configuration.py +27 -1
- pulumi_oci/psql/get_configurations.py +2 -2
- pulumi_oci/psql/get_default_configuration.py +15 -2
- pulumi_oci/psql/get_default_configurations.py +2 -2
- pulumi_oci/psql/outputs.py +176 -13
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/METADATA +1 -1
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/RECORD +62 -52
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.6.0a1722924801.dist-info → pulumi_oci-2.6.0a1723107075.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -3221,6 +3221,14 @@ _utilities.register(
|
|
3221
3221
|
"oci:DevOps/project:Project": "Project"
|
3222
3222
|
}
|
3223
3223
|
},
|
3224
|
+
{
|
3225
|
+
"pkg": "oci",
|
3226
|
+
"mod": "DevOps/projectRepositorySetting",
|
3227
|
+
"fqn": "pulumi_oci.devops",
|
3228
|
+
"classes": {
|
3229
|
+
"oci:DevOps/projectRepositorySetting:ProjectRepositorySetting": "ProjectRepositorySetting"
|
3230
|
+
}
|
3231
|
+
},
|
3224
3232
|
{
|
3225
3233
|
"pkg": "oci",
|
3226
3234
|
"mod": "DevOps/repository",
|
@@ -3237,6 +3245,14 @@ _utilities.register(
|
|
3237
3245
|
"oci:DevOps/repositoryMirror:RepositoryMirror": "RepositoryMirror"
|
3238
3246
|
}
|
3239
3247
|
},
|
3248
|
+
{
|
3249
|
+
"pkg": "oci",
|
3250
|
+
"mod": "DevOps/repositoryProtectedBranchManagement",
|
3251
|
+
"fqn": "pulumi_oci.devops",
|
3252
|
+
"classes": {
|
3253
|
+
"oci:DevOps/repositoryProtectedBranchManagement:RepositoryProtectedBranchManagement": "RepositoryProtectedBranchManagement"
|
3254
|
+
}
|
3255
|
+
},
|
3240
3256
|
{
|
3241
3257
|
"pkg": "oci",
|
3242
3258
|
"mod": "DevOps/repositoryRef",
|
@@ -3245,6 +3261,14 @@ _utilities.register(
|
|
3245
3261
|
"oci:DevOps/repositoryRef:RepositoryRef": "RepositoryRef"
|
3246
3262
|
}
|
3247
3263
|
},
|
3264
|
+
{
|
3265
|
+
"pkg": "oci",
|
3266
|
+
"mod": "DevOps/repositorySetting",
|
3267
|
+
"fqn": "pulumi_oci.devops",
|
3268
|
+
"classes": {
|
3269
|
+
"oci:DevOps/repositorySetting:RepositorySetting": "RepositorySetting"
|
3270
|
+
}
|
3271
|
+
},
|
3248
3272
|
{
|
3249
3273
|
"pkg": "oci",
|
3250
3274
|
"mod": "DevOps/trigger",
|
@@ -4293,6 +4317,14 @@ _utilities.register(
|
|
4293
4317
|
"oci:Jms/javaDownloadsJavaLicenseAcceptanceRecord:JavaDownloadsJavaLicenseAcceptanceRecord": "JavaDownloadsJavaLicenseAcceptanceRecord"
|
4294
4318
|
}
|
4295
4319
|
},
|
4320
|
+
{
|
4321
|
+
"pkg": "oci",
|
4322
|
+
"mod": "Jms/jmsPlugin",
|
4323
|
+
"fqn": "pulumi_oci.jms",
|
4324
|
+
"classes": {
|
4325
|
+
"oci:Jms/jmsPlugin:JmsPlugin": "JmsPlugin"
|
4326
|
+
}
|
4327
|
+
},
|
4296
4328
|
{
|
4297
4329
|
"pkg": "oci",
|
4298
4330
|
"mod": "Kms/ekmsPrivateEndpoint",
|
@@ -46,6 +46,7 @@ __all__ = [
|
|
46
46
|
'BdsInstanceNodeAttachedBlockVolumeArgs',
|
47
47
|
'BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs',
|
48
48
|
'BdsInstanceOsPatchActionPatchingConfigArgs',
|
49
|
+
'BdsInstancePatchActionPatchingConfigArgs',
|
49
50
|
'BdsInstanceUtilNodeArgs',
|
50
51
|
'BdsInstanceUtilNodeShapeConfigArgs',
|
51
52
|
'BdsInstanceWorkerNodeArgs',
|
@@ -348,7 +349,7 @@ class AutoScalingConfigurationPolicyDetailsScaleDownConfigMetricArgs:
|
|
348
349
|
metric_type: Optional[pulumi.Input[str]] = None,
|
349
350
|
threshold: Optional[pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleDownConfigMetricThresholdArgs']] = None):
|
350
351
|
"""
|
351
|
-
:param pulumi.Input[str] metric_type: (Updatable) Allowed
|
352
|
+
:param pulumi.Input[str] metric_type: (Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
352
353
|
:param pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleDownConfigMetricThresholdArgs'] threshold: (Updatable) An autoscale action is triggered when a performance metric exceeds a threshold.
|
353
354
|
"""
|
354
355
|
if metric_type is not None:
|
@@ -360,7 +361,7 @@ class AutoScalingConfigurationPolicyDetailsScaleDownConfigMetricArgs:
|
|
360
361
|
@pulumi.getter(name="metricType")
|
361
362
|
def metric_type(self) -> Optional[pulumi.Input[str]]:
|
362
363
|
"""
|
363
|
-
(Updatable) Allowed
|
364
|
+
(Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
364
365
|
"""
|
365
366
|
return pulumi.get(self, "metric_type")
|
366
367
|
|
@@ -497,7 +498,7 @@ class AutoScalingConfigurationPolicyDetailsScaleInConfigMetricArgs:
|
|
497
498
|
metric_type: Optional[pulumi.Input[str]] = None,
|
498
499
|
threshold: Optional[pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleInConfigMetricThresholdArgs']] = None):
|
499
500
|
"""
|
500
|
-
:param pulumi.Input[str] metric_type: (Updatable) Allowed
|
501
|
+
:param pulumi.Input[str] metric_type: (Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
501
502
|
:param pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleInConfigMetricThresholdArgs'] threshold: (Updatable) An autoscale action is triggered when a performance metric exceeds a threshold.
|
502
503
|
"""
|
503
504
|
if metric_type is not None:
|
@@ -509,7 +510,7 @@ class AutoScalingConfigurationPolicyDetailsScaleInConfigMetricArgs:
|
|
509
510
|
@pulumi.getter(name="metricType")
|
510
511
|
def metric_type(self) -> Optional[pulumi.Input[str]]:
|
511
512
|
"""
|
512
|
-
(Updatable) Allowed
|
513
|
+
(Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
513
514
|
"""
|
514
515
|
return pulumi.get(self, "metric_type")
|
515
516
|
|
@@ -646,7 +647,7 @@ class AutoScalingConfigurationPolicyDetailsScaleOutConfigMetricArgs:
|
|
646
647
|
metric_type: Optional[pulumi.Input[str]] = None,
|
647
648
|
threshold: Optional[pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleOutConfigMetricThresholdArgs']] = None):
|
648
649
|
"""
|
649
|
-
:param pulumi.Input[str] metric_type: (Updatable) Allowed
|
650
|
+
:param pulumi.Input[str] metric_type: (Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
650
651
|
:param pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleOutConfigMetricThresholdArgs'] threshold: (Updatable) An autoscale action is triggered when a performance metric exceeds a threshold.
|
651
652
|
"""
|
652
653
|
if metric_type is not None:
|
@@ -658,7 +659,7 @@ class AutoScalingConfigurationPolicyDetailsScaleOutConfigMetricArgs:
|
|
658
659
|
@pulumi.getter(name="metricType")
|
659
660
|
def metric_type(self) -> Optional[pulumi.Input[str]]:
|
660
661
|
"""
|
661
|
-
(Updatable) Allowed
|
662
|
+
(Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
662
663
|
"""
|
663
664
|
return pulumi.get(self, "metric_type")
|
664
665
|
|
@@ -827,7 +828,7 @@ class AutoScalingConfigurationPolicyDetailsScaleUpConfigMetricArgs:
|
|
827
828
|
metric_type: Optional[pulumi.Input[str]] = None,
|
828
829
|
threshold: Optional[pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleUpConfigMetricThresholdArgs']] = None):
|
829
830
|
"""
|
830
|
-
:param pulumi.Input[str] metric_type: (Updatable) Allowed
|
831
|
+
:param pulumi.Input[str] metric_type: (Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
831
832
|
:param pulumi.Input['AutoScalingConfigurationPolicyDetailsScaleUpConfigMetricThresholdArgs'] threshold: (Updatable) An autoscale action is triggered when a performance metric exceeds a threshold.
|
832
833
|
"""
|
833
834
|
if metric_type is not None:
|
@@ -839,7 +840,7 @@ class AutoScalingConfigurationPolicyDetailsScaleUpConfigMetricArgs:
|
|
839
840
|
@pulumi.getter(name="metricType")
|
840
841
|
def metric_type(self) -> Optional[pulumi.Input[str]]:
|
841
842
|
"""
|
842
|
-
(Updatable) Allowed
|
843
|
+
(Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
843
844
|
"""
|
844
845
|
return pulumi.get(self, "metric_type")
|
845
846
|
|
@@ -1123,7 +1124,7 @@ class AutoScalingConfigurationPolicyRuleMetricArgs:
|
|
1123
1124
|
metric_type: pulumi.Input[str],
|
1124
1125
|
threshold: pulumi.Input['AutoScalingConfigurationPolicyRuleMetricThresholdArgs']):
|
1125
1126
|
"""
|
1126
|
-
:param pulumi.Input[str] metric_type: (Updatable) Allowed
|
1127
|
+
:param pulumi.Input[str] metric_type: (Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
1127
1128
|
:param pulumi.Input['AutoScalingConfigurationPolicyRuleMetricThresholdArgs'] threshold: (Updatable) An autoscale action is triggered when a performance metric exceeds a threshold.
|
1128
1129
|
"""
|
1129
1130
|
pulumi.set(__self__, "metric_type", metric_type)
|
@@ -1133,7 +1134,7 @@ class AutoScalingConfigurationPolicyRuleMetricArgs:
|
|
1133
1134
|
@pulumi.getter(name="metricType")
|
1134
1135
|
def metric_type(self) -> pulumi.Input[str]:
|
1135
1136
|
"""
|
1136
|
-
(Updatable) Allowed
|
1137
|
+
(Updatable) Allowed values are CPU_UTILIZATION and MEMORY_UTILIZATION.
|
1137
1138
|
"""
|
1138
1139
|
return pulumi.get(self, "metric_type")
|
1139
1140
|
|
@@ -1216,7 +1217,10 @@ class BdsInstanceCloudSqlDetailArgs:
|
|
1216
1217
|
kerberos_details: Optional[pulumi.Input[Sequence[pulumi.Input['BdsInstanceCloudSqlDetailKerberosDetailArgs']]]] = None,
|
1217
1218
|
memory_in_gbs: Optional[pulumi.Input[int]] = None,
|
1218
1219
|
nvmes: Optional[pulumi.Input[int]] = None,
|
1219
|
-
ocpus: Optional[pulumi.Input[int]] = None
|
1220
|
+
ocpus: Optional[pulumi.Input[int]] = None,
|
1221
|
+
odh_version: Optional[pulumi.Input[str]] = None,
|
1222
|
+
os_version: Optional[pulumi.Input[str]] = None,
|
1223
|
+
ssh_fingerprint: Optional[pulumi.Input[str]] = None):
|
1220
1224
|
"""
|
1221
1225
|
:param pulumi.Input[str] shape: Shape of the node
|
1222
1226
|
:param pulumi.Input[str] block_volume_size_in_gbs: The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.
|
@@ -1226,6 +1230,9 @@ class BdsInstanceCloudSqlDetailArgs:
|
|
1226
1230
|
:param pulumi.Input[int] memory_in_gbs: The total amount of memory available to the node, in gigabytes.
|
1227
1231
|
:param pulumi.Input[int] nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
|
1228
1232
|
:param pulumi.Input[int] ocpus: The total number of OCPUs available to the node.
|
1233
|
+
:param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
|
1234
|
+
:param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
|
1235
|
+
:param pulumi.Input[str] ssh_fingerprint: The fingerprint of the SSH key used for node access
|
1229
1236
|
"""
|
1230
1237
|
pulumi.set(__self__, "shape", shape)
|
1231
1238
|
if block_volume_size_in_gbs is not None:
|
@@ -1242,6 +1249,12 @@ class BdsInstanceCloudSqlDetailArgs:
|
|
1242
1249
|
pulumi.set(__self__, "nvmes", nvmes)
|
1243
1250
|
if ocpus is not None:
|
1244
1251
|
pulumi.set(__self__, "ocpus", ocpus)
|
1252
|
+
if odh_version is not None:
|
1253
|
+
pulumi.set(__self__, "odh_version", odh_version)
|
1254
|
+
if os_version is not None:
|
1255
|
+
pulumi.set(__self__, "os_version", os_version)
|
1256
|
+
if ssh_fingerprint is not None:
|
1257
|
+
pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
|
1245
1258
|
|
1246
1259
|
@property
|
1247
1260
|
@pulumi.getter
|
@@ -1339,6 +1352,42 @@ class BdsInstanceCloudSqlDetailArgs:
|
|
1339
1352
|
def ocpus(self, value: Optional[pulumi.Input[int]]):
|
1340
1353
|
pulumi.set(self, "ocpus", value)
|
1341
1354
|
|
1355
|
+
@property
|
1356
|
+
@pulumi.getter(name="odhVersion")
|
1357
|
+
def odh_version(self) -> Optional[pulumi.Input[str]]:
|
1358
|
+
"""
|
1359
|
+
Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
|
1360
|
+
"""
|
1361
|
+
return pulumi.get(self, "odh_version")
|
1362
|
+
|
1363
|
+
@odh_version.setter
|
1364
|
+
def odh_version(self, value: Optional[pulumi.Input[str]]):
|
1365
|
+
pulumi.set(self, "odh_version", value)
|
1366
|
+
|
1367
|
+
@property
|
1368
|
+
@pulumi.getter(name="osVersion")
|
1369
|
+
def os_version(self) -> Optional[pulumi.Input[str]]:
|
1370
|
+
"""
|
1371
|
+
BDS-assigned Operating System version for the node.
|
1372
|
+
"""
|
1373
|
+
return pulumi.get(self, "os_version")
|
1374
|
+
|
1375
|
+
@os_version.setter
|
1376
|
+
def os_version(self, value: Optional[pulumi.Input[str]]):
|
1377
|
+
pulumi.set(self, "os_version", value)
|
1378
|
+
|
1379
|
+
@property
|
1380
|
+
@pulumi.getter(name="sshFingerprint")
|
1381
|
+
def ssh_fingerprint(self) -> Optional[pulumi.Input[str]]:
|
1382
|
+
"""
|
1383
|
+
The fingerprint of the SSH key used for node access
|
1384
|
+
"""
|
1385
|
+
return pulumi.get(self, "ssh_fingerprint")
|
1386
|
+
|
1387
|
+
@ssh_fingerprint.setter
|
1388
|
+
def ssh_fingerprint(self, value: Optional[pulumi.Input[str]]):
|
1389
|
+
pulumi.set(self, "ssh_fingerprint", value)
|
1390
|
+
|
1342
1391
|
|
1343
1392
|
@pulumi.input_type
|
1344
1393
|
class BdsInstanceCloudSqlDetailKerberosDetailArgs:
|
@@ -1409,7 +1458,7 @@ class BdsInstanceClusterDetailArgs:
|
|
1409
1458
|
:param pulumi.Input[str] db_version: Cloud SQL query server database version.
|
1410
1459
|
:param pulumi.Input[str] hue_server_url: The URL of the Hue server.
|
1411
1460
|
:param pulumi.Input[str] jupyter_hub_url: The URL of the Jupyterhub.
|
1412
|
-
:param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop)
|
1461
|
+
:param pulumi.Input[str] odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
|
1413
1462
|
:param pulumi.Input[str] os_version: BDS-assigned Operating System version for the node.
|
1414
1463
|
:param pulumi.Input[str] time_created: The time the BDS instance was created. An RFC3339 formatted datetime string
|
1415
1464
|
:param pulumi.Input[str] time_refreshed: The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.
|
@@ -1581,7 +1630,7 @@ class BdsInstanceClusterDetailArgs:
|
|
1581
1630
|
@pulumi.getter(name="odhVersion")
|
1582
1631
|
def odh_version(self) -> Optional[pulumi.Input[str]]:
|
1583
1632
|
"""
|
1584
|
-
Version of the ODH (Oracle Distribution including Apache Hadoop)
|
1633
|
+
Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
|
1585
1634
|
"""
|
1586
1635
|
return pulumi.get(self, "odh_version")
|
1587
1636
|
|
@@ -2652,14 +2701,20 @@ class BdsInstanceOsPatchActionPatchingConfigArgs:
|
|
2652
2701
|
patching_config_strategy: pulumi.Input[str],
|
2653
2702
|
batch_size: Optional[pulumi.Input[int]] = None,
|
2654
2703
|
tolerance_threshold_per_batch: Optional[pulumi.Input[int]] = None,
|
2655
|
-
|
2704
|
+
tolerance_threshold_per_domain: Optional[pulumi.Input[int]] = None,
|
2705
|
+
wait_time_between_batch_in_seconds: Optional[pulumi.Input[int]] = None,
|
2706
|
+
wait_time_between_domain_in_seconds: Optional[pulumi.Input[int]] = None):
|
2656
2707
|
pulumi.set(__self__, "patching_config_strategy", patching_config_strategy)
|
2657
2708
|
if batch_size is not None:
|
2658
2709
|
pulumi.set(__self__, "batch_size", batch_size)
|
2659
2710
|
if tolerance_threshold_per_batch is not None:
|
2660
2711
|
pulumi.set(__self__, "tolerance_threshold_per_batch", tolerance_threshold_per_batch)
|
2712
|
+
if tolerance_threshold_per_domain is not None:
|
2713
|
+
pulumi.set(__self__, "tolerance_threshold_per_domain", tolerance_threshold_per_domain)
|
2661
2714
|
if wait_time_between_batch_in_seconds is not None:
|
2662
2715
|
pulumi.set(__self__, "wait_time_between_batch_in_seconds", wait_time_between_batch_in_seconds)
|
2716
|
+
if wait_time_between_domain_in_seconds is not None:
|
2717
|
+
pulumi.set(__self__, "wait_time_between_domain_in_seconds", wait_time_between_domain_in_seconds)
|
2663
2718
|
|
2664
2719
|
@property
|
2665
2720
|
@pulumi.getter(name="patchingConfigStrategy")
|
@@ -2688,15 +2743,103 @@ class BdsInstanceOsPatchActionPatchingConfigArgs:
|
|
2688
2743
|
def tolerance_threshold_per_batch(self, value: Optional[pulumi.Input[int]]):
|
2689
2744
|
pulumi.set(self, "tolerance_threshold_per_batch", value)
|
2690
2745
|
|
2746
|
+
@property
|
2747
|
+
@pulumi.getter(name="toleranceThresholdPerDomain")
|
2748
|
+
def tolerance_threshold_per_domain(self) -> Optional[pulumi.Input[int]]:
|
2749
|
+
return pulumi.get(self, "tolerance_threshold_per_domain")
|
2750
|
+
|
2751
|
+
@tolerance_threshold_per_domain.setter
|
2752
|
+
def tolerance_threshold_per_domain(self, value: Optional[pulumi.Input[int]]):
|
2753
|
+
pulumi.set(self, "tolerance_threshold_per_domain", value)
|
2754
|
+
|
2755
|
+
@property
|
2756
|
+
@pulumi.getter(name="waitTimeBetweenBatchInSeconds")
|
2757
|
+
def wait_time_between_batch_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2758
|
+
return pulumi.get(self, "wait_time_between_batch_in_seconds")
|
2759
|
+
|
2760
|
+
@wait_time_between_batch_in_seconds.setter
|
2761
|
+
def wait_time_between_batch_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2762
|
+
pulumi.set(self, "wait_time_between_batch_in_seconds", value)
|
2763
|
+
|
2764
|
+
@property
|
2765
|
+
@pulumi.getter(name="waitTimeBetweenDomainInSeconds")
|
2766
|
+
def wait_time_between_domain_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2767
|
+
return pulumi.get(self, "wait_time_between_domain_in_seconds")
|
2768
|
+
|
2769
|
+
@wait_time_between_domain_in_seconds.setter
|
2770
|
+
def wait_time_between_domain_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2771
|
+
pulumi.set(self, "wait_time_between_domain_in_seconds", value)
|
2772
|
+
|
2773
|
+
|
2774
|
+
@pulumi.input_type
|
2775
|
+
class BdsInstancePatchActionPatchingConfigArgs:
|
2776
|
+
def __init__(__self__, *,
|
2777
|
+
patching_config_strategy: pulumi.Input[str],
|
2778
|
+
batch_size: Optional[pulumi.Input[int]] = None,
|
2779
|
+
wait_time_between_batch_in_seconds: Optional[pulumi.Input[int]] = None,
|
2780
|
+
wait_time_between_domain_in_seconds: Optional[pulumi.Input[int]] = None):
|
2781
|
+
"""
|
2782
|
+
:param pulumi.Input[str] patching_config_strategy: Type of strategy used for detailed patching configuration
|
2783
|
+
:param pulumi.Input[int] batch_size: How many nodes to be patched in each iteration.
|
2784
|
+
:param pulumi.Input[int] wait_time_between_batch_in_seconds: The wait time between batches in seconds.
|
2785
|
+
:param pulumi.Input[int] wait_time_between_domain_in_seconds: The wait time between AD/FD in seconds.
|
2786
|
+
"""
|
2787
|
+
pulumi.set(__self__, "patching_config_strategy", patching_config_strategy)
|
2788
|
+
if batch_size is not None:
|
2789
|
+
pulumi.set(__self__, "batch_size", batch_size)
|
2790
|
+
if wait_time_between_batch_in_seconds is not None:
|
2791
|
+
pulumi.set(__self__, "wait_time_between_batch_in_seconds", wait_time_between_batch_in_seconds)
|
2792
|
+
if wait_time_between_domain_in_seconds is not None:
|
2793
|
+
pulumi.set(__self__, "wait_time_between_domain_in_seconds", wait_time_between_domain_in_seconds)
|
2794
|
+
|
2795
|
+
@property
|
2796
|
+
@pulumi.getter(name="patchingConfigStrategy")
|
2797
|
+
def patching_config_strategy(self) -> pulumi.Input[str]:
|
2798
|
+
"""
|
2799
|
+
Type of strategy used for detailed patching configuration
|
2800
|
+
"""
|
2801
|
+
return pulumi.get(self, "patching_config_strategy")
|
2802
|
+
|
2803
|
+
@patching_config_strategy.setter
|
2804
|
+
def patching_config_strategy(self, value: pulumi.Input[str]):
|
2805
|
+
pulumi.set(self, "patching_config_strategy", value)
|
2806
|
+
|
2807
|
+
@property
|
2808
|
+
@pulumi.getter(name="batchSize")
|
2809
|
+
def batch_size(self) -> Optional[pulumi.Input[int]]:
|
2810
|
+
"""
|
2811
|
+
How many nodes to be patched in each iteration.
|
2812
|
+
"""
|
2813
|
+
return pulumi.get(self, "batch_size")
|
2814
|
+
|
2815
|
+
@batch_size.setter
|
2816
|
+
def batch_size(self, value: Optional[pulumi.Input[int]]):
|
2817
|
+
pulumi.set(self, "batch_size", value)
|
2818
|
+
|
2691
2819
|
@property
|
2692
2820
|
@pulumi.getter(name="waitTimeBetweenBatchInSeconds")
|
2693
2821
|
def wait_time_between_batch_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2822
|
+
"""
|
2823
|
+
The wait time between batches in seconds.
|
2824
|
+
"""
|
2694
2825
|
return pulumi.get(self, "wait_time_between_batch_in_seconds")
|
2695
2826
|
|
2696
2827
|
@wait_time_between_batch_in_seconds.setter
|
2697
2828
|
def wait_time_between_batch_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2698
2829
|
pulumi.set(self, "wait_time_between_batch_in_seconds", value)
|
2699
2830
|
|
2831
|
+
@property
|
2832
|
+
@pulumi.getter(name="waitTimeBetweenDomainInSeconds")
|
2833
|
+
def wait_time_between_domain_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2834
|
+
"""
|
2835
|
+
The wait time between AD/FD in seconds.
|
2836
|
+
"""
|
2837
|
+
return pulumi.get(self, "wait_time_between_domain_in_seconds")
|
2838
|
+
|
2839
|
+
@wait_time_between_domain_in_seconds.setter
|
2840
|
+
def wait_time_between_domain_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2841
|
+
pulumi.set(self, "wait_time_between_domain_in_seconds", value)
|
2842
|
+
|
2700
2843
|
|
2701
2844
|
@pulumi.input_type
|
2702
2845
|
class BdsInstanceUtilNodeArgs:
|