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