pulumi-oci 1.31.0a1712469963__py3-none-any.whl → 1.31.0a1712742264__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/dataflow/get_invoke_run.py +11 -1
- pulumi_oci/dataflow/invoke_run.py +49 -0
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/devops/_inputs.py +380 -10
- pulumi_oci/devops/outputs.py +953 -32
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/networkfirewall/outputs.py +12 -16
- pulumi_oci/networkloadbalancer/_inputs.py +222 -10
- pulumi_oci/networkloadbalancer/backend_set.py +70 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
- pulumi_oci/networkloadbalancer/outputs.py +397 -28
- pulumi_oci/stackmonitoring/_inputs.py +209 -1
- pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
- pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
- pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
- pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
- pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
- pulumi_oci/stackmonitoring/outputs.py +436 -1
- {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
- {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/top_level.txt +0 -0
@@ -21,11 +21,12 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
21
21
|
policy: pulumi.Input[str],
|
22
22
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
23
23
|
ip_version: Optional[pulumi.Input[str]] = None,
|
24
|
+
is_fail_open: 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
|
"""
|
27
28
|
The set of arguments for constructing a NetworkLoadBalancersBackendSetsUnified resource.
|
28
|
-
: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/
|
29
|
+
: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).
|
29
30
|
:param pulumi.Input[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.
|
30
31
|
:param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
|
31
32
|
|
@@ -34,6 +35,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
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[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
36
37
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
38
|
+
: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.
|
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 NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
48
50
|
pulumi.set(__self__, "backends", backends)
|
49
51
|
if ip_version is not None:
|
50
52
|
pulumi.set(__self__, "ip_version", ip_version)
|
53
|
+
if is_fail_open is not None:
|
54
|
+
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
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:
|
@@ -57,7 +61,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
57
61
|
@pulumi.getter(name="healthChecker")
|
58
62
|
def health_checker(self) -> pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']:
|
59
63
|
"""
|
60
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
64
|
+
(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).
|
61
65
|
"""
|
62
66
|
return pulumi.get(self, "health_checker")
|
63
67
|
|
@@ -117,6 +121,18 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
117
121
|
def ip_version(self, value: Optional[pulumi.Input[str]]):
|
118
122
|
pulumi.set(self, "ip_version", value)
|
119
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="isFailOpen")
|
126
|
+
def is_fail_open(self) -> Optional[pulumi.Input[bool]]:
|
127
|
+
"""
|
128
|
+
(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.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "is_fail_open")
|
131
|
+
|
132
|
+
@is_fail_open.setter
|
133
|
+
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
134
|
+
pulumi.set(self, "is_fail_open", value)
|
135
|
+
|
120
136
|
@property
|
121
137
|
@pulumi.getter(name="isPreserveSource")
|
122
138
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -152,6 +168,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
152
168
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
153
169
|
health_checker: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] = None,
|
154
170
|
ip_version: Optional[pulumi.Input[str]] = None,
|
171
|
+
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
155
172
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
156
173
|
name: Optional[pulumi.Input[str]] = None,
|
157
174
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -159,8 +176,9 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
159
176
|
"""
|
160
177
|
Input properties used for looking up and filtering NetworkLoadBalancersBackendSetsUnified resources.
|
161
178
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
162
|
-
: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/
|
179
|
+
: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).
|
163
180
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
181
|
+
: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.
|
164
182
|
: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.
|
165
183
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
166
184
|
|
@@ -180,6 +198,8 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
180
198
|
pulumi.set(__self__, "health_checker", health_checker)
|
181
199
|
if ip_version is not None:
|
182
200
|
pulumi.set(__self__, "ip_version", ip_version)
|
201
|
+
if is_fail_open is not None:
|
202
|
+
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
183
203
|
if is_preserve_source is not None:
|
184
204
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
185
205
|
if name is not None:
|
@@ -205,7 +225,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
205
225
|
@pulumi.getter(name="healthChecker")
|
206
226
|
def health_checker(self) -> Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]:
|
207
227
|
"""
|
208
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
228
|
+
(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).
|
209
229
|
"""
|
210
230
|
return pulumi.get(self, "health_checker")
|
211
231
|
|
@@ -225,6 +245,18 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
225
245
|
def ip_version(self, value: Optional[pulumi.Input[str]]):
|
226
246
|
pulumi.set(self, "ip_version", value)
|
227
247
|
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="isFailOpen")
|
250
|
+
def is_fail_open(self) -> Optional[pulumi.Input[bool]]:
|
251
|
+
"""
|
252
|
+
(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.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "is_fail_open")
|
255
|
+
|
256
|
+
@is_fail_open.setter
|
257
|
+
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
258
|
+
pulumi.set(self, "is_fail_open", value)
|
259
|
+
|
228
260
|
@property
|
229
261
|
@pulumi.getter(name="isPreserveSource")
|
230
262
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -290,6 +322,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
290
322
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]]] = None,
|
291
323
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
292
324
|
ip_version: Optional[pulumi.Input[str]] = None,
|
325
|
+
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
293
326
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
294
327
|
name: Optional[pulumi.Input[str]] = None,
|
295
328
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -310,6 +343,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
310
343
|
test_network_load_balancers_backend_sets_unified = oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnified("testNetworkLoadBalancersBackendSetsUnified",
|
311
344
|
health_checker=oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs(
|
312
345
|
protocol=var["network_load_balancers_backend_sets_unified_health_checker_protocol"],
|
346
|
+
dns=oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs(
|
347
|
+
domain_name=oci_identity_domain["test_domain"]["name"],
|
348
|
+
query_class=var["network_load_balancers_backend_sets_unified_health_checker_dns_query_class"],
|
349
|
+
query_type=var["network_load_balancers_backend_sets_unified_health_checker_dns_query_type"],
|
350
|
+
rcodes=var["network_load_balancers_backend_sets_unified_health_checker_dns_rcodes"],
|
351
|
+
transport_protocol=var["network_load_balancers_backend_sets_unified_health_checker_dns_transport_protocol"],
|
352
|
+
),
|
313
353
|
interval_in_millis=var["network_load_balancers_backend_sets_unified_health_checker_interval_in_millis"],
|
314
354
|
port=var["network_load_balancers_backend_sets_unified_health_checker_port"],
|
315
355
|
request_data=var["network_load_balancers_backend_sets_unified_health_checker_request_data"],
|
@@ -333,6 +373,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
333
373
|
weight=var["network_load_balancers_backend_sets_unified_backends_weight"],
|
334
374
|
)],
|
335
375
|
ip_version=var["network_load_balancers_backend_sets_unified_ip_version"],
|
376
|
+
is_fail_open=var["network_load_balancers_backend_sets_unified_is_fail_open"],
|
336
377
|
is_preserve_source=var["network_load_balancers_backend_sets_unified_is_preserve_source"])
|
337
378
|
```
|
338
379
|
<!--End PulumiCodeChooser -->
|
@@ -348,8 +389,9 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
348
389
|
:param str resource_name: The name of the resource.
|
349
390
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
350
391
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] backends: (Updatable) An array of backends to be associated with the backend set.
|
351
|
-
: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/
|
392
|
+
: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).
|
352
393
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
394
|
+
: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.
|
353
395
|
: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.
|
354
396
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
355
397
|
|
@@ -384,6 +426,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
384
426
|
test_network_load_balancers_backend_sets_unified = oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnified("testNetworkLoadBalancersBackendSetsUnified",
|
385
427
|
health_checker=oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs(
|
386
428
|
protocol=var["network_load_balancers_backend_sets_unified_health_checker_protocol"],
|
429
|
+
dns=oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs(
|
430
|
+
domain_name=oci_identity_domain["test_domain"]["name"],
|
431
|
+
query_class=var["network_load_balancers_backend_sets_unified_health_checker_dns_query_class"],
|
432
|
+
query_type=var["network_load_balancers_backend_sets_unified_health_checker_dns_query_type"],
|
433
|
+
rcodes=var["network_load_balancers_backend_sets_unified_health_checker_dns_rcodes"],
|
434
|
+
transport_protocol=var["network_load_balancers_backend_sets_unified_health_checker_dns_transport_protocol"],
|
435
|
+
),
|
387
436
|
interval_in_millis=var["network_load_balancers_backend_sets_unified_health_checker_interval_in_millis"],
|
388
437
|
port=var["network_load_balancers_backend_sets_unified_health_checker_port"],
|
389
438
|
request_data=var["network_load_balancers_backend_sets_unified_health_checker_request_data"],
|
@@ -407,6 +456,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
407
456
|
weight=var["network_load_balancers_backend_sets_unified_backends_weight"],
|
408
457
|
)],
|
409
458
|
ip_version=var["network_load_balancers_backend_sets_unified_ip_version"],
|
459
|
+
is_fail_open=var["network_load_balancers_backend_sets_unified_is_fail_open"],
|
410
460
|
is_preserve_source=var["network_load_balancers_backend_sets_unified_is_preserve_source"])
|
411
461
|
```
|
412
462
|
<!--End PulumiCodeChooser -->
|
@@ -437,6 +487,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
437
487
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]]] = None,
|
438
488
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
439
489
|
ip_version: Optional[pulumi.Input[str]] = None,
|
490
|
+
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
440
491
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
441
492
|
name: Optional[pulumi.Input[str]] = None,
|
442
493
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -455,6 +506,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
455
506
|
raise TypeError("Missing required property 'health_checker'")
|
456
507
|
__props__.__dict__["health_checker"] = health_checker
|
457
508
|
__props__.__dict__["ip_version"] = ip_version
|
509
|
+
__props__.__dict__["is_fail_open"] = is_fail_open
|
458
510
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
459
511
|
__props__.__dict__["name"] = name
|
460
512
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -476,6 +528,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
476
528
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]]] = None,
|
477
529
|
health_checker: Optional[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]] = None,
|
478
530
|
ip_version: Optional[pulumi.Input[str]] = None,
|
531
|
+
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
479
532
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
480
533
|
name: Optional[pulumi.Input[str]] = None,
|
481
534
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -488,8 +541,9 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
488
541
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
489
542
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
490
543
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] backends: (Updatable) An array of backends to be associated with the backend set.
|
491
|
-
: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/
|
544
|
+
: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).
|
492
545
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
546
|
+
: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.
|
493
547
|
: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.
|
494
548
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
495
549
|
|
@@ -510,6 +564,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
510
564
|
__props__.__dict__["backends"] = backends
|
511
565
|
__props__.__dict__["health_checker"] = health_checker
|
512
566
|
__props__.__dict__["ip_version"] = ip_version
|
567
|
+
__props__.__dict__["is_fail_open"] = is_fail_open
|
513
568
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
514
569
|
__props__.__dict__["name"] = name
|
515
570
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -528,7 +583,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
528
583
|
@pulumi.getter(name="healthChecker")
|
529
584
|
def health_checker(self) -> pulumi.Output['outputs.NetworkLoadBalancersBackendSetsUnifiedHealthChecker']:
|
530
585
|
"""
|
531
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
586
|
+
(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).
|
532
587
|
"""
|
533
588
|
return pulumi.get(self, "health_checker")
|
534
589
|
|
@@ -540,6 +595,14 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
540
595
|
"""
|
541
596
|
return pulumi.get(self, "ip_version")
|
542
597
|
|
598
|
+
@property
|
599
|
+
@pulumi.getter(name="isFailOpen")
|
600
|
+
def is_fail_open(self) -> pulumi.Output[bool]:
|
601
|
+
"""
|
602
|
+
(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.
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "is_fail_open")
|
605
|
+
|
543
606
|
@property
|
544
607
|
@pulumi.getter(name="isPreserveSource")
|
545
608
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|