pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.0__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 +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ class BackendSetArgs:
|
|
21
21
|
policy: pulumi.Input[str],
|
22
22
|
ip_version: Optional[pulumi.Input[str]] = None,
|
23
23
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
24
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
24
25
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
25
26
|
name: Optional[pulumi.Input[str]] = None):
|
26
27
|
"""
|
@@ -34,6 +35,7 @@ class BackendSetArgs:
|
|
34
35
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
35
36
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
36
37
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
38
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
37
39
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
38
40
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
39
41
|
|
@@ -48,6 +50,8 @@ class BackendSetArgs:
|
|
48
50
|
pulumi.set(__self__, "ip_version", ip_version)
|
49
51
|
if is_fail_open is not None:
|
50
52
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
53
|
+
if is_instant_failover_enabled is not None:
|
54
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
51
55
|
if is_preserve_source is not None:
|
52
56
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
53
57
|
if name is not None:
|
@@ -117,6 +121,18 @@ class BackendSetArgs:
|
|
117
121
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
118
122
|
pulumi.set(self, "is_fail_open", value)
|
119
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
126
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
127
|
+
"""
|
128
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
131
|
+
|
132
|
+
@is_instant_failover_enabled.setter
|
133
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
134
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
135
|
+
|
120
136
|
@property
|
121
137
|
@pulumi.getter(name="isPreserveSource")
|
122
138
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -153,6 +169,7 @@ class _BackendSetState:
|
|
153
169
|
health_checker: Optional[pulumi.Input['BackendSetHealthCheckerArgs']] = None,
|
154
170
|
ip_version: Optional[pulumi.Input[str]] = None,
|
155
171
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
172
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
156
173
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
157
174
|
name: Optional[pulumi.Input[str]] = None,
|
158
175
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -163,6 +180,7 @@ class _BackendSetState:
|
|
163
180
|
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
164
181
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
165
182
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
183
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
166
184
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
167
185
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
168
186
|
|
@@ -184,6 +202,8 @@ class _BackendSetState:
|
|
184
202
|
pulumi.set(__self__, "ip_version", ip_version)
|
185
203
|
if is_fail_open is not None:
|
186
204
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
205
|
+
if is_instant_failover_enabled is not None:
|
206
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
187
207
|
if is_preserve_source is not None:
|
188
208
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
189
209
|
if name is not None:
|
@@ -241,6 +261,18 @@ class _BackendSetState:
|
|
241
261
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
242
262
|
pulumi.set(self, "is_fail_open", value)
|
243
263
|
|
264
|
+
@property
|
265
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
266
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
267
|
+
"""
|
268
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
271
|
+
|
272
|
+
@is_instant_failover_enabled.setter
|
273
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
274
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
275
|
+
|
244
276
|
@property
|
245
277
|
@pulumi.getter(name="isPreserveSource")
|
246
278
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -306,6 +338,7 @@ class BackendSet(pulumi.CustomResource):
|
|
306
338
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
307
339
|
ip_version: Optional[pulumi.Input[str]] = None,
|
308
340
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
341
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
309
342
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
310
343
|
name: Optional[pulumi.Input[str]] = None,
|
311
344
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -346,6 +379,7 @@ class BackendSet(pulumi.CustomResource):
|
|
346
379
|
network_load_balancer_id=test_network_load_balancer["id"],
|
347
380
|
policy=backend_set_policy,
|
348
381
|
ip_version=backend_set_ip_version,
|
382
|
+
is_instant_failover_enabled=backend_set_is_instant_failover_enabled,
|
349
383
|
is_fail_open=backend_set_is_fail_open,
|
350
384
|
is_preserve_source=backend_set_is_preserve_source)
|
351
385
|
```
|
@@ -363,6 +397,7 @@ class BackendSet(pulumi.CustomResource):
|
|
363
397
|
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
364
398
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
365
399
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
400
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
366
401
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
367
402
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
368
403
|
|
@@ -417,6 +452,7 @@ class BackendSet(pulumi.CustomResource):
|
|
417
452
|
network_load_balancer_id=test_network_load_balancer["id"],
|
418
453
|
policy=backend_set_policy,
|
419
454
|
ip_version=backend_set_ip_version,
|
455
|
+
is_instant_failover_enabled=backend_set_is_instant_failover_enabled,
|
420
456
|
is_fail_open=backend_set_is_fail_open,
|
421
457
|
is_preserve_source=backend_set_is_preserve_source)
|
422
458
|
```
|
@@ -447,6 +483,7 @@ class BackendSet(pulumi.CustomResource):
|
|
447
483
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
448
484
|
ip_version: Optional[pulumi.Input[str]] = None,
|
449
485
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
486
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
450
487
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
451
488
|
name: Optional[pulumi.Input[str]] = None,
|
452
489
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -465,6 +502,7 @@ class BackendSet(pulumi.CustomResource):
|
|
465
502
|
__props__.__dict__["health_checker"] = health_checker
|
466
503
|
__props__.__dict__["ip_version"] = ip_version
|
467
504
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
505
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
468
506
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
469
507
|
__props__.__dict__["name"] = name
|
470
508
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -488,6 +526,7 @@ class BackendSet(pulumi.CustomResource):
|
|
488
526
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
489
527
|
ip_version: Optional[pulumi.Input[str]] = None,
|
490
528
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
529
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
491
530
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
492
531
|
name: Optional[pulumi.Input[str]] = None,
|
493
532
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -503,6 +542,7 @@ class BackendSet(pulumi.CustomResource):
|
|
503
542
|
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
504
543
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
505
544
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
545
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
506
546
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
507
547
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
508
548
|
|
@@ -524,6 +564,7 @@ class BackendSet(pulumi.CustomResource):
|
|
524
564
|
__props__.__dict__["health_checker"] = health_checker
|
525
565
|
__props__.__dict__["ip_version"] = ip_version
|
526
566
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
567
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
527
568
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
528
569
|
__props__.__dict__["name"] = name
|
529
570
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -562,6 +603,14 @@ class BackendSet(pulumi.CustomResource):
|
|
562
603
|
"""
|
563
604
|
return pulumi.get(self, "is_fail_open")
|
564
605
|
|
606
|
+
@property
|
607
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
608
|
+
def is_instant_failover_enabled(self) -> pulumi.Output[bool]:
|
609
|
+
"""
|
610
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
613
|
+
|
565
614
|
@property
|
566
615
|
@pulumi.getter(name="isPreserveSource")
|
567
616
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|
@@ -22,7 +22,7 @@ class GetBackendSetResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getBackendSet.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, backend_set_name=None, backends=None, health_checkers=None, id=None, ip_version=None, is_fail_open=None, is_preserve_source=None, name=None, network_load_balancer_id=None, policy=None):
|
25
|
+
def __init__(__self__, backend_set_name=None, backends=None, health_checkers=None, id=None, ip_version=None, is_fail_open=None, is_instant_failover_enabled=None, is_preserve_source=None, name=None, network_load_balancer_id=None, policy=None):
|
26
26
|
if backend_set_name and not isinstance(backend_set_name, str):
|
27
27
|
raise TypeError("Expected argument 'backend_set_name' to be a str")
|
28
28
|
pulumi.set(__self__, "backend_set_name", backend_set_name)
|
@@ -41,6 +41,9 @@ class GetBackendSetResult:
|
|
41
41
|
if is_fail_open and not isinstance(is_fail_open, bool):
|
42
42
|
raise TypeError("Expected argument 'is_fail_open' to be a bool")
|
43
43
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
44
|
+
if is_instant_failover_enabled and not isinstance(is_instant_failover_enabled, bool):
|
45
|
+
raise TypeError("Expected argument 'is_instant_failover_enabled' to be a bool")
|
46
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
44
47
|
if is_preserve_source and not isinstance(is_preserve_source, bool):
|
45
48
|
raise TypeError("Expected argument 'is_preserve_source' to be a bool")
|
46
49
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
@@ -96,6 +99,14 @@ class GetBackendSetResult:
|
|
96
99
|
"""
|
97
100
|
return pulumi.get(self, "is_fail_open")
|
98
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
104
|
+
def is_instant_failover_enabled(self) -> bool:
|
105
|
+
"""
|
106
|
+
If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
109
|
+
|
99
110
|
@property
|
100
111
|
@pulumi.getter(name="isPreserveSource")
|
101
112
|
def is_preserve_source(self) -> bool:
|
@@ -138,6 +149,7 @@ class AwaitableGetBackendSetResult(GetBackendSetResult):
|
|
138
149
|
id=self.id,
|
139
150
|
ip_version=self.ip_version,
|
140
151
|
is_fail_open=self.is_fail_open,
|
152
|
+
is_instant_failover_enabled=self.is_instant_failover_enabled,
|
141
153
|
is_preserve_source=self.is_preserve_source,
|
142
154
|
name=self.name,
|
143
155
|
network_load_balancer_id=self.network_load_balancer_id,
|
@@ -169,6 +181,7 @@ def get_backend_set(backend_set_name: Optional[str] = None,
|
|
169
181
|
id=pulumi.get(__ret__, 'id'),
|
170
182
|
ip_version=pulumi.get(__ret__, 'ip_version'),
|
171
183
|
is_fail_open=pulumi.get(__ret__, 'is_fail_open'),
|
184
|
+
is_instant_failover_enabled=pulumi.get(__ret__, 'is_instant_failover_enabled'),
|
172
185
|
is_preserve_source=pulumi.get(__ret__, 'is_preserve_source'),
|
173
186
|
name=pulumi.get(__ret__, 'name'),
|
174
187
|
network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
|
@@ -22,6 +22,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
22
22
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
23
23
|
ip_version: Optional[pulumi.Input[str]] = None,
|
24
24
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
25
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
25
26
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
26
27
|
name: Optional[pulumi.Input[str]] = None):
|
27
28
|
"""
|
@@ -36,6 +37,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
36
37
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
37
38
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
38
39
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
40
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
39
41
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
40
42
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
41
43
|
|
@@ -52,6 +54,8 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
52
54
|
pulumi.set(__self__, "ip_version", ip_version)
|
53
55
|
if is_fail_open is not None:
|
54
56
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
57
|
+
if is_instant_failover_enabled is not None:
|
58
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
55
59
|
if is_preserve_source is not None:
|
56
60
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
57
61
|
if name is not None:
|
@@ -133,6 +137,18 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
133
137
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
134
138
|
pulumi.set(self, "is_fail_open", value)
|
135
139
|
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
142
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
143
|
+
"""
|
144
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
147
|
+
|
148
|
+
@is_instant_failover_enabled.setter
|
149
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
150
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
151
|
+
|
136
152
|
@property
|
137
153
|
@pulumi.getter(name="isPreserveSource")
|
138
154
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -169,6 +185,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
169
185
|
health_checker: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] = None,
|
170
186
|
ip_version: Optional[pulumi.Input[str]] = None,
|
171
187
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
188
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
172
189
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
173
190
|
name: Optional[pulumi.Input[str]] = None,
|
174
191
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -179,6 +196,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
179
196
|
:param pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
180
197
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
181
198
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
199
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
182
200
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
183
201
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
184
202
|
|
@@ -200,6 +218,8 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
200
218
|
pulumi.set(__self__, "ip_version", ip_version)
|
201
219
|
if is_fail_open is not None:
|
202
220
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
221
|
+
if is_instant_failover_enabled is not None:
|
222
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
203
223
|
if is_preserve_source is not None:
|
204
224
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
205
225
|
if name is not None:
|
@@ -257,6 +277,18 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
257
277
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
258
278
|
pulumi.set(self, "is_fail_open", value)
|
259
279
|
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
282
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
283
|
+
"""
|
284
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
287
|
+
|
288
|
+
@is_instant_failover_enabled.setter
|
289
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
290
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
291
|
+
|
260
292
|
@property
|
261
293
|
@pulumi.getter(name="isPreserveSource")
|
262
294
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -323,6 +355,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
323
355
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
324
356
|
ip_version: Optional[pulumi.Input[str]] = None,
|
325
357
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
358
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
326
359
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
327
360
|
name: Optional[pulumi.Input[str]] = None,
|
328
361
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -373,6 +406,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
373
406
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
374
407
|
)],
|
375
408
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
409
|
+
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
376
410
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
377
411
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
378
412
|
```
|
@@ -391,6 +425,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
391
425
|
:param pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
392
426
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
393
427
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
428
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
394
429
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
395
430
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
396
431
|
|
@@ -455,6 +490,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
455
490
|
weight=network_load_balancers_backend_sets_unified_backends_weight,
|
456
491
|
)],
|
457
492
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
493
|
+
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
458
494
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
459
495
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
460
496
|
```
|
@@ -486,6 +522,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
486
522
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
487
523
|
ip_version: Optional[pulumi.Input[str]] = None,
|
488
524
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
525
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
489
526
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
490
527
|
name: Optional[pulumi.Input[str]] = None,
|
491
528
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -505,6 +542,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
505
542
|
__props__.__dict__["health_checker"] = health_checker
|
506
543
|
__props__.__dict__["ip_version"] = ip_version
|
507
544
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
545
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
508
546
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
509
547
|
__props__.__dict__["name"] = name
|
510
548
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -527,6 +565,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
527
565
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
528
566
|
ip_version: Optional[pulumi.Input[str]] = None,
|
529
567
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
568
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
530
569
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
531
570
|
name: Optional[pulumi.Input[str]] = None,
|
532
571
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -542,6 +581,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
542
581
|
:param pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
543
582
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
544
583
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
584
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
545
585
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
546
586
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
547
587
|
|
@@ -563,6 +603,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
563
603
|
__props__.__dict__["health_checker"] = health_checker
|
564
604
|
__props__.__dict__["ip_version"] = ip_version
|
565
605
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
606
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
566
607
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
567
608
|
__props__.__dict__["name"] = name
|
568
609
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -601,6 +642,14 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
601
642
|
"""
|
602
643
|
return pulumi.get(self, "is_fail_open")
|
603
644
|
|
645
|
+
@property
|
646
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
647
|
+
def is_instant_failover_enabled(self) -> pulumi.Output[bool]:
|
648
|
+
"""
|
649
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
650
|
+
"""
|
651
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
652
|
+
|
604
653
|
@property
|
605
654
|
@pulumi.getter(name="isPreserveSource")
|
606
655
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|
@@ -1299,6 +1299,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1299
1299
|
id: str,
|
1300
1300
|
ip_version: str,
|
1301
1301
|
is_fail_open: bool,
|
1302
|
+
is_instant_failover_enabled: bool,
|
1302
1303
|
is_preserve_source: bool,
|
1303
1304
|
name: str,
|
1304
1305
|
network_load_balancer_id: str,
|
@@ -1308,6 +1309,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1308
1309
|
:param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
1309
1310
|
:param str ip_version: IP version associated with the backend set.
|
1310
1311
|
:param bool is_fail_open: If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
1312
|
+
:param bool is_instant_failover_enabled: If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
1311
1313
|
:param bool is_preserve_source: If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
1312
1314
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
1313
1315
|
:param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
@@ -1318,6 +1320,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1318
1320
|
pulumi.set(__self__, "id", id)
|
1319
1321
|
pulumi.set(__self__, "ip_version", ip_version)
|
1320
1322
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
1323
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
1321
1324
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
1322
1325
|
pulumi.set(__self__, "name", name)
|
1323
1326
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
@@ -1360,6 +1363,14 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1360
1363
|
"""
|
1361
1364
|
return pulumi.get(self, "is_fail_open")
|
1362
1365
|
|
1366
|
+
@property
|
1367
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
1368
|
+
def is_instant_failover_enabled(self) -> bool:
|
1369
|
+
"""
|
1370
|
+
If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
1371
|
+
"""
|
1372
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
1373
|
+
|
1363
1374
|
@property
|
1364
1375
|
@pulumi.getter(name="isPreserveSource")
|
1365
1376
|
def is_preserve_source(self) -> bool:
|
pulumi_oci/provider.py
CHANGED
@@ -29,8 +29,8 @@ class ProviderArgs:
|
|
29
29
|
user_ocid: Optional[pulumi.Input[str]] = None):
|
30
30
|
"""
|
31
31
|
The set of arguments for constructing a Provider resource.
|
32
|
-
:param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken'
|
33
|
-
'
|
32
|
+
:param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
33
|
+
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
34
34
|
:param pulumi.Input[str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
|
35
35
|
:param pulumi.Input[bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors. Automatic retries were introduced to solve some eventual
|
36
36
|
consistency problems but it also introduced performance issues on destroy operations.
|
@@ -84,8 +84,8 @@ class ProviderArgs:
|
|
84
84
|
@pulumi.getter
|
85
85
|
def auth(self) -> Optional[pulumi.Input[str]]:
|
86
86
|
"""
|
87
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken'
|
88
|
-
'
|
87
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
88
|
+
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
89
89
|
"""
|
90
90
|
return pulumi.get(self, "auth")
|
91
91
|
|
@@ -274,8 +274,8 @@ class Provider(pulumi.ProviderResource):
|
|
274
274
|
|
275
275
|
:param str resource_name: The name of the resource.
|
276
276
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
277
|
-
:param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken'
|
278
|
-
'
|
277
|
+
:param pulumi.Input[str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
278
|
+
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
279
279
|
:param pulumi.Input[str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
|
280
280
|
:param pulumi.Input[bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors. Automatic retries were introduced to solve some eventual
|
281
281
|
consistency problems but it also introduced performance issues on destroy operations.
|
@@ -372,8 +372,8 @@ class Provider(pulumi.ProviderResource):
|
|
372
372
|
@pulumi.getter
|
373
373
|
def auth(self) -> pulumi.Output[Optional[str]]:
|
374
374
|
"""
|
375
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken'
|
376
|
-
'
|
375
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
376
|
+
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
377
377
|
"""
|
378
378
|
return pulumi.get(self, "auth")
|
379
379
|
|
@@ -25,6 +25,7 @@ class ProtectedDatabaseMetricArgs:
|
|
25
25
|
current_retention_period_in_seconds: Optional[pulumi.Input[float]] = None,
|
26
26
|
db_size_in_gbs: Optional[pulumi.Input[float]] = None,
|
27
27
|
is_redo_logs_enabled: Optional[pulumi.Input[bool]] = None,
|
28
|
+
minimum_recovery_needed_in_days: Optional[pulumi.Input[float]] = None,
|
28
29
|
retention_period_in_days: Optional[pulumi.Input[float]] = None,
|
29
30
|
unprotected_window_in_seconds: Optional[pulumi.Input[float]] = None):
|
30
31
|
"""
|
@@ -33,6 +34,7 @@ class ProtectedDatabaseMetricArgs:
|
|
33
34
|
:param pulumi.Input[float] current_retention_period_in_seconds: Number of seconds backups are currently retained for this database.
|
34
35
|
:param pulumi.Input[float] db_size_in_gbs: The estimated space, in gigabytes, consumed by the protected database. The database size is based on the size of the data files in the catalog, and does not include archive logs.
|
35
36
|
:param pulumi.Input[bool] is_redo_logs_enabled: The value TRUE indicates that the protected database is configured to use Real-time data protection, and redo-data is sent from the protected database to Recovery Service. Real-time data protection substantially reduces the window of potential data loss that exists between successive archived redo log backups.
|
37
|
+
:param pulumi.Input[float] minimum_recovery_needed_in_days: Number of days of redo/archive to be applied to recover database.
|
36
38
|
:param pulumi.Input[float] retention_period_in_days: The maximum number of days to retain backups for a protected database.
|
37
39
|
:param pulumi.Input[float] unprotected_window_in_seconds: This is the time window when there is data loss exposure. The point after which recovery is impossible unless additional redo is available. This is the time we received the last backup or last redo-log shipped.
|
38
40
|
"""
|
@@ -46,6 +48,8 @@ class ProtectedDatabaseMetricArgs:
|
|
46
48
|
pulumi.set(__self__, "db_size_in_gbs", db_size_in_gbs)
|
47
49
|
if is_redo_logs_enabled is not None:
|
48
50
|
pulumi.set(__self__, "is_redo_logs_enabled", is_redo_logs_enabled)
|
51
|
+
if minimum_recovery_needed_in_days is not None:
|
52
|
+
pulumi.set(__self__, "minimum_recovery_needed_in_days", minimum_recovery_needed_in_days)
|
49
53
|
if retention_period_in_days is not None:
|
50
54
|
pulumi.set(__self__, "retention_period_in_days", retention_period_in_days)
|
51
55
|
if unprotected_window_in_seconds is not None:
|
@@ -111,6 +115,18 @@ class ProtectedDatabaseMetricArgs:
|
|
111
115
|
def is_redo_logs_enabled(self, value: Optional[pulumi.Input[bool]]):
|
112
116
|
pulumi.set(self, "is_redo_logs_enabled", value)
|
113
117
|
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="minimumRecoveryNeededInDays")
|
120
|
+
def minimum_recovery_needed_in_days(self) -> Optional[pulumi.Input[float]]:
|
121
|
+
"""
|
122
|
+
Number of days of redo/archive to be applied to recover database.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "minimum_recovery_needed_in_days")
|
125
|
+
|
126
|
+
@minimum_recovery_needed_in_days.setter
|
127
|
+
def minimum_recovery_needed_in_days(self, value: Optional[pulumi.Input[float]]):
|
128
|
+
pulumi.set(self, "minimum_recovery_needed_in_days", value)
|
129
|
+
|
114
130
|
@property
|
115
131
|
@pulumi.getter(name="retentionPeriodInDays")
|
116
132
|
def retention_period_in_days(self) -> Optional[pulumi.Input[float]]:
|
@@ -22,7 +22,7 @@ class GetProtectedDatabaseResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getProtectedDatabase.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, database_id=None, database_size=None, db_unique_name=None, defined_tags=None, display_name=None, freeform_tags=None, health=None, health_details=None, id=None, is_read_only_resource=None, is_redo_logs_shipped=None, lifecycle_details=None, metrics=None, password=None, protected_database_id=None, protection_policy_id=None, recovery_service_subnets=None, state=None, system_tags=None, time_created=None, time_updated=None, vpc_user_name=None):
|
25
|
+
def __init__(__self__, compartment_id=None, database_id=None, database_size=None, db_unique_name=None, defined_tags=None, deletion_schedule=None, display_name=None, freeform_tags=None, health=None, health_details=None, id=None, is_read_only_resource=None, is_redo_logs_shipped=None, lifecycle_details=None, metrics=None, password=None, policy_locked_date_time=None, protected_database_id=None, protection_policy_id=None, recovery_service_subnets=None, state=None, system_tags=None, time_created=None, time_updated=None, vpc_user_name=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -38,6 +38,9 @@ class GetProtectedDatabaseResult:
|
|
38
38
|
if defined_tags and not isinstance(defined_tags, dict):
|
39
39
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
40
40
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
41
|
+
if deletion_schedule and not isinstance(deletion_schedule, str):
|
42
|
+
raise TypeError("Expected argument 'deletion_schedule' to be a str")
|
43
|
+
pulumi.set(__self__, "deletion_schedule", deletion_schedule)
|
41
44
|
if display_name and not isinstance(display_name, str):
|
42
45
|
raise TypeError("Expected argument 'display_name' to be a str")
|
43
46
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -68,6 +71,9 @@ class GetProtectedDatabaseResult:
|
|
68
71
|
if password and not isinstance(password, str):
|
69
72
|
raise TypeError("Expected argument 'password' to be a str")
|
70
73
|
pulumi.set(__self__, "password", password)
|
74
|
+
if policy_locked_date_time and not isinstance(policy_locked_date_time, str):
|
75
|
+
raise TypeError("Expected argument 'policy_locked_date_time' to be a str")
|
76
|
+
pulumi.set(__self__, "policy_locked_date_time", policy_locked_date_time)
|
71
77
|
if protected_database_id and not isinstance(protected_database_id, str):
|
72
78
|
raise TypeError("Expected argument 'protected_database_id' to be a str")
|
73
79
|
pulumi.set(__self__, "protected_database_id", protected_database_id)
|
@@ -133,6 +139,11 @@ class GetProtectedDatabaseResult:
|
|
133
139
|
"""
|
134
140
|
return pulumi.get(self, "defined_tags")
|
135
141
|
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="deletionSchedule")
|
144
|
+
def deletion_schedule(self) -> str:
|
145
|
+
return pulumi.get(self, "deletion_schedule")
|
146
|
+
|
136
147
|
@property
|
137
148
|
@pulumi.getter(name="displayName")
|
138
149
|
def display_name(self) -> str:
|
@@ -153,10 +164,7 @@ class GetProtectedDatabaseResult:
|
|
153
164
|
@pulumi.getter
|
154
165
|
def health(self) -> str:
|
155
166
|
"""
|
156
|
-
Indicates the protection status of the database.
|
157
|
-
* HEALTHY
|
158
|
-
* WARNING
|
159
|
-
* ALERT
|
167
|
+
Indicates the protection status of the database.
|
160
168
|
"""
|
161
169
|
return pulumi.get(self, "health")
|
162
170
|
|
@@ -213,6 +221,14 @@ class GetProtectedDatabaseResult:
|
|
213
221
|
def password(self) -> str:
|
214
222
|
return pulumi.get(self, "password")
|
215
223
|
|
224
|
+
@property
|
225
|
+
@pulumi.getter(name="policyLockedDateTime")
|
226
|
+
def policy_locked_date_time(self) -> str:
|
227
|
+
"""
|
228
|
+
An RFC3339 formatted datetime string that specifies the exact date and time for the retention lock to take effect and permanently lock the retention period defined in the policy.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "policy_locked_date_time")
|
231
|
+
|
216
232
|
@property
|
217
233
|
@pulumi.getter(name="protectedDatabaseId")
|
218
234
|
def protected_database_id(self) -> str:
|
@@ -286,6 +302,7 @@ class AwaitableGetProtectedDatabaseResult(GetProtectedDatabaseResult):
|
|
286
302
|
database_size=self.database_size,
|
287
303
|
db_unique_name=self.db_unique_name,
|
288
304
|
defined_tags=self.defined_tags,
|
305
|
+
deletion_schedule=self.deletion_schedule,
|
289
306
|
display_name=self.display_name,
|
290
307
|
freeform_tags=self.freeform_tags,
|
291
308
|
health=self.health,
|
@@ -296,6 +313,7 @@ class AwaitableGetProtectedDatabaseResult(GetProtectedDatabaseResult):
|
|
296
313
|
lifecycle_details=self.lifecycle_details,
|
297
314
|
metrics=self.metrics,
|
298
315
|
password=self.password,
|
316
|
+
policy_locked_date_time=self.policy_locked_date_time,
|
299
317
|
protected_database_id=self.protected_database_id,
|
300
318
|
protection_policy_id=self.protection_policy_id,
|
301
319
|
recovery_service_subnets=self.recovery_service_subnets,
|
@@ -336,6 +354,7 @@ def get_protected_database(protected_database_id: Optional[str] = None,
|
|
336
354
|
database_size=pulumi.get(__ret__, 'database_size'),
|
337
355
|
db_unique_name=pulumi.get(__ret__, 'db_unique_name'),
|
338
356
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
357
|
+
deletion_schedule=pulumi.get(__ret__, 'deletion_schedule'),
|
339
358
|
display_name=pulumi.get(__ret__, 'display_name'),
|
340
359
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
341
360
|
health=pulumi.get(__ret__, 'health'),
|
@@ -346,6 +365,7 @@ def get_protected_database(protected_database_id: Optional[str] = None,
|
|
346
365
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
347
366
|
metrics=pulumi.get(__ret__, 'metrics'),
|
348
367
|
password=pulumi.get(__ret__, 'password'),
|
368
|
+
policy_locked_date_time=pulumi.get(__ret__, 'policy_locked_date_time'),
|
349
369
|
protected_database_id=pulumi.get(__ret__, 'protected_database_id'),
|
350
370
|
protection_policy_id=pulumi.get(__ret__, 'protection_policy_id'),
|
351
371
|
recovery_service_subnets=pulumi.get(__ret__, 'recovery_service_subnets'),
|
@@ -100,13 +100,7 @@ class GetProtectionPoliciesResult:
|
|
100
100
|
@pulumi.getter
|
101
101
|
def state(self) -> Optional[str]:
|
102
102
|
"""
|
103
|
-
The current state of the protection policy.
|
104
|
-
* CREATING
|
105
|
-
* UPDATING
|
106
|
-
* ACTIVE
|
107
|
-
* DELETING
|
108
|
-
* DELETED
|
109
|
-
* FAILED
|
103
|
+
The current state of the protection policy.
|
110
104
|
"""
|
111
105
|
return pulumi.get(self, "state")
|
112
106
|
|