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.
Files changed (26) hide show
  1. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  2. pulumi_oci/dataflow/invoke_run.py +49 -0
  3. pulumi_oci/dataflow/outputs.py +7 -0
  4. pulumi_oci/devops/_inputs.py +380 -10
  5. pulumi_oci/devops/outputs.py +953 -32
  6. pulumi_oci/filestorage/replication.py +4 -4
  7. pulumi_oci/networkfirewall/outputs.py +12 -16
  8. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  9. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  10. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  11. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  12. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  13. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  14. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  15. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  16. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  17. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  18. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  19. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  20. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  21. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  22. pulumi_oci/stackmonitoring/outputs.py +436 -1
  23. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
  24. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
  25. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
  26. {pulumi_oci-1.31.0a1712469963.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/top_level.txt +0 -0
@@ -20,11 +20,12 @@ class BackendSetArgs:
20
20
  network_load_balancer_id: pulumi.Input[str],
21
21
  policy: pulumi.Input[str],
22
22
  ip_version: Optional[pulumi.Input[str]] = None,
23
+ is_fail_open: Optional[pulumi.Input[bool]] = None,
23
24
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
24
25
  name: Optional[pulumi.Input[str]] = None):
25
26
  """
26
27
  The set of arguments for constructing a BackendSet resource.
27
- :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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
28
+ :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).
28
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.
29
30
  :param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
30
31
 
@@ -32,6 +33,7 @@ class BackendSetArgs:
32
33
  ** IMPORTANT **
33
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
34
35
  :param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
36
+ :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.
35
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.
36
38
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
37
39
 
@@ -44,6 +46,8 @@ class BackendSetArgs:
44
46
  pulumi.set(__self__, "policy", policy)
45
47
  if ip_version is not None:
46
48
  pulumi.set(__self__, "ip_version", ip_version)
49
+ if is_fail_open is not None:
50
+ pulumi.set(__self__, "is_fail_open", is_fail_open)
47
51
  if is_preserve_source is not None:
48
52
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
49
53
  if name is not None:
@@ -53,7 +57,7 @@ class BackendSetArgs:
53
57
  @pulumi.getter(name="healthChecker")
54
58
  def health_checker(self) -> pulumi.Input['BackendSetHealthCheckerArgs']:
55
59
  """
56
- (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).
60
+ (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).
57
61
  """
58
62
  return pulumi.get(self, "health_checker")
59
63
 
@@ -101,6 +105,18 @@ class BackendSetArgs:
101
105
  def ip_version(self, value: Optional[pulumi.Input[str]]):
102
106
  pulumi.set(self, "ip_version", value)
103
107
 
108
+ @property
109
+ @pulumi.getter(name="isFailOpen")
110
+ def is_fail_open(self) -> Optional[pulumi.Input[bool]]:
111
+ """
112
+ (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.
113
+ """
114
+ return pulumi.get(self, "is_fail_open")
115
+
116
+ @is_fail_open.setter
117
+ def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
118
+ pulumi.set(self, "is_fail_open", value)
119
+
104
120
  @property
105
121
  @pulumi.getter(name="isPreserveSource")
106
122
  def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
@@ -136,6 +152,7 @@ class _BackendSetState:
136
152
  backends: Optional[pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]]] = None,
137
153
  health_checker: Optional[pulumi.Input['BackendSetHealthCheckerArgs']] = None,
138
154
  ip_version: Optional[pulumi.Input[str]] = None,
155
+ is_fail_open: Optional[pulumi.Input[bool]] = None,
139
156
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
140
157
  name: Optional[pulumi.Input[str]] = None,
141
158
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -143,8 +160,9 @@ class _BackendSetState:
143
160
  """
144
161
  Input properties used for looking up and filtering BackendSet resources.
145
162
  :param pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
146
- :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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
163
+ :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).
147
164
  :param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
165
+ :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.
148
166
  :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.
149
167
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
150
168
 
@@ -164,6 +182,8 @@ class _BackendSetState:
164
182
  pulumi.set(__self__, "health_checker", health_checker)
165
183
  if ip_version is not None:
166
184
  pulumi.set(__self__, "ip_version", ip_version)
185
+ if is_fail_open is not None:
186
+ pulumi.set(__self__, "is_fail_open", is_fail_open)
167
187
  if is_preserve_source is not None:
168
188
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
169
189
  if name is not None:
@@ -189,7 +209,7 @@ class _BackendSetState:
189
209
  @pulumi.getter(name="healthChecker")
190
210
  def health_checker(self) -> Optional[pulumi.Input['BackendSetHealthCheckerArgs']]:
191
211
  """
192
- (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).
212
+ (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).
193
213
  """
194
214
  return pulumi.get(self, "health_checker")
195
215
 
@@ -209,6 +229,18 @@ class _BackendSetState:
209
229
  def ip_version(self, value: Optional[pulumi.Input[str]]):
210
230
  pulumi.set(self, "ip_version", value)
211
231
 
232
+ @property
233
+ @pulumi.getter(name="isFailOpen")
234
+ def is_fail_open(self) -> Optional[pulumi.Input[bool]]:
235
+ """
236
+ (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.
237
+ """
238
+ return pulumi.get(self, "is_fail_open")
239
+
240
+ @is_fail_open.setter
241
+ def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
242
+ pulumi.set(self, "is_fail_open", value)
243
+
212
244
  @property
213
245
  @pulumi.getter(name="isPreserveSource")
214
246
  def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
@@ -273,6 +305,7 @@ class BackendSet(pulumi.CustomResource):
273
305
  opts: Optional[pulumi.ResourceOptions] = None,
274
306
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
275
307
  ip_version: Optional[pulumi.Input[str]] = None,
308
+ is_fail_open: Optional[pulumi.Input[bool]] = None,
276
309
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
277
310
  name: Optional[pulumi.Input[str]] = None,
278
311
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -293,6 +326,13 @@ class BackendSet(pulumi.CustomResource):
293
326
  test_backend_set = oci.network_load_balancer.BackendSet("testBackendSet",
294
327
  health_checker=oci.network_load_balancer.BackendSetHealthCheckerArgs(
295
328
  protocol=var["backend_set_health_checker_protocol"],
329
+ dns=oci.network_load_balancer.BackendSetHealthCheckerDnsArgs(
330
+ domain_name=oci_identity_domain["test_domain"]["name"],
331
+ query_class=var["backend_set_health_checker_dns_query_class"],
332
+ query_type=var["backend_set_health_checker_dns_query_type"],
333
+ rcodes=var["backend_set_health_checker_dns_rcodes"],
334
+ transport_protocol=var["backend_set_health_checker_dns_transport_protocol"],
335
+ ),
296
336
  interval_in_millis=var["backend_set_health_checker_interval_in_millis"],
297
337
  port=var["backend_set_health_checker_port"],
298
338
  request_data=var["backend_set_health_checker_request_data"],
@@ -306,6 +346,7 @@ class BackendSet(pulumi.CustomResource):
306
346
  network_load_balancer_id=oci_network_load_balancer_network_load_balancer["test_network_load_balancer"]["id"],
307
347
  policy=var["backend_set_policy"],
308
348
  ip_version=var["backend_set_ip_version"],
349
+ is_fail_open=var["backend_set_is_fail_open"],
309
350
  is_preserve_source=var["backend_set_is_preserve_source"])
310
351
  ```
311
352
  <!--End PulumiCodeChooser -->
@@ -320,8 +361,9 @@ class BackendSet(pulumi.CustomResource):
320
361
 
321
362
  :param str resource_name: The name of the resource.
322
363
  :param pulumi.ResourceOptions opts: Options for the resource.
323
- :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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
364
+ :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).
324
365
  :param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
366
+ :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.
325
367
  :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.
326
368
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
327
369
 
@@ -356,6 +398,13 @@ class BackendSet(pulumi.CustomResource):
356
398
  test_backend_set = oci.network_load_balancer.BackendSet("testBackendSet",
357
399
  health_checker=oci.network_load_balancer.BackendSetHealthCheckerArgs(
358
400
  protocol=var["backend_set_health_checker_protocol"],
401
+ dns=oci.network_load_balancer.BackendSetHealthCheckerDnsArgs(
402
+ domain_name=oci_identity_domain["test_domain"]["name"],
403
+ query_class=var["backend_set_health_checker_dns_query_class"],
404
+ query_type=var["backend_set_health_checker_dns_query_type"],
405
+ rcodes=var["backend_set_health_checker_dns_rcodes"],
406
+ transport_protocol=var["backend_set_health_checker_dns_transport_protocol"],
407
+ ),
359
408
  interval_in_millis=var["backend_set_health_checker_interval_in_millis"],
360
409
  port=var["backend_set_health_checker_port"],
361
410
  request_data=var["backend_set_health_checker_request_data"],
@@ -369,6 +418,7 @@ class BackendSet(pulumi.CustomResource):
369
418
  network_load_balancer_id=oci_network_load_balancer_network_load_balancer["test_network_load_balancer"]["id"],
370
419
  policy=var["backend_set_policy"],
371
420
  ip_version=var["backend_set_ip_version"],
421
+ is_fail_open=var["backend_set_is_fail_open"],
372
422
  is_preserve_source=var["backend_set_is_preserve_source"])
373
423
  ```
374
424
  <!--End PulumiCodeChooser -->
@@ -398,6 +448,7 @@ class BackendSet(pulumi.CustomResource):
398
448
  opts: Optional[pulumi.ResourceOptions] = None,
399
449
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
400
450
  ip_version: Optional[pulumi.Input[str]] = None,
451
+ is_fail_open: Optional[pulumi.Input[bool]] = None,
401
452
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
402
453
  name: Optional[pulumi.Input[str]] = None,
403
454
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -415,6 +466,7 @@ class BackendSet(pulumi.CustomResource):
415
466
  raise TypeError("Missing required property 'health_checker'")
416
467
  __props__.__dict__["health_checker"] = health_checker
417
468
  __props__.__dict__["ip_version"] = ip_version
469
+ __props__.__dict__["is_fail_open"] = is_fail_open
418
470
  __props__.__dict__["is_preserve_source"] = is_preserve_source
419
471
  __props__.__dict__["name"] = name
420
472
  if network_load_balancer_id is None and not opts.urn:
@@ -437,6 +489,7 @@ class BackendSet(pulumi.CustomResource):
437
489
  backends: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]]] = None,
438
490
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
439
491
  ip_version: Optional[pulumi.Input[str]] = None,
492
+ is_fail_open: Optional[pulumi.Input[bool]] = None,
440
493
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
441
494
  name: Optional[pulumi.Input[str]] = None,
442
495
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -449,8 +502,9 @@ class BackendSet(pulumi.CustomResource):
449
502
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
450
503
  :param pulumi.ResourceOptions opts: Options for the resource.
451
504
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]] backends: (Updatable) An array of backends to be associated with the backend set.
452
- :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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
505
+ :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).
453
506
  :param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
507
+ :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.
454
508
  :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.
455
509
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
456
510
 
@@ -471,6 +525,7 @@ class BackendSet(pulumi.CustomResource):
471
525
  __props__.__dict__["backends"] = backends
472
526
  __props__.__dict__["health_checker"] = health_checker
473
527
  __props__.__dict__["ip_version"] = ip_version
528
+ __props__.__dict__["is_fail_open"] = is_fail_open
474
529
  __props__.__dict__["is_preserve_source"] = is_preserve_source
475
530
  __props__.__dict__["name"] = name
476
531
  __props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
@@ -489,7 +544,7 @@ class BackendSet(pulumi.CustomResource):
489
544
  @pulumi.getter(name="healthChecker")
490
545
  def health_checker(self) -> pulumi.Output['outputs.BackendSetHealthChecker']:
491
546
  """
492
- (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).
547
+ (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).
493
548
  """
494
549
  return pulumi.get(self, "health_checker")
495
550
 
@@ -501,6 +556,14 @@ class BackendSet(pulumi.CustomResource):
501
556
  """
502
557
  return pulumi.get(self, "ip_version")
503
558
 
559
+ @property
560
+ @pulumi.getter(name="isFailOpen")
561
+ def is_fail_open(self) -> pulumi.Output[bool]:
562
+ """
563
+ (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.
564
+ """
565
+ return pulumi.get(self, "is_fail_open")
566
+
504
567
  @property
505
568
  @pulumi.getter(name="isPreserveSource")
506
569
  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_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_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)
@@ -38,6 +38,9 @@ class GetBackendSetResult:
38
38
  if ip_version and not isinstance(ip_version, str):
39
39
  raise TypeError("Expected argument 'ip_version' to be a str")
40
40
  pulumi.set(__self__, "ip_version", ip_version)
41
+ if is_fail_open and not isinstance(is_fail_open, bool):
42
+ raise TypeError("Expected argument 'is_fail_open' to be a bool")
43
+ pulumi.set(__self__, "is_fail_open", is_fail_open)
41
44
  if is_preserve_source and not isinstance(is_preserve_source, bool):
42
45
  raise TypeError("Expected argument 'is_preserve_source' to be a bool")
43
46
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
@@ -68,7 +71,7 @@ class GetBackendSetResult:
68
71
  @pulumi.getter(name="healthCheckers")
69
72
  def health_checkers(self) -> Sequence['outputs.GetBackendSetHealthCheckerResult']:
70
73
  """
71
- 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).
74
+ The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
72
75
  """
73
76
  return pulumi.get(self, "health_checkers")
74
77
 
@@ -85,6 +88,14 @@ class GetBackendSetResult:
85
88
  """
86
89
  return pulumi.get(self, "ip_version")
87
90
 
91
+ @property
92
+ @pulumi.getter(name="isFailOpen")
93
+ def is_fail_open(self) -> bool:
94
+ """
95
+ 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.
96
+ """
97
+ return pulumi.get(self, "is_fail_open")
98
+
88
99
  @property
89
100
  @pulumi.getter(name="isPreserveSource")
90
101
  def is_preserve_source(self) -> bool:
@@ -126,6 +137,7 @@ class AwaitableGetBackendSetResult(GetBackendSetResult):
126
137
  health_checkers=self.health_checkers,
127
138
  id=self.id,
128
139
  ip_version=self.ip_version,
140
+ is_fail_open=self.is_fail_open,
129
141
  is_preserve_source=self.is_preserve_source,
130
142
  name=self.name,
131
143
  network_load_balancer_id=self.network_load_balancer_id,
@@ -156,6 +168,7 @@ def get_backend_set(backend_set_name: Optional[str] = None,
156
168
  health_checkers=pulumi.get(__ret__, 'health_checkers'),
157
169
  id=pulumi.get(__ret__, 'id'),
158
170
  ip_version=pulumi.get(__ret__, 'ip_version'),
171
+ is_fail_open=pulumi.get(__ret__, 'is_fail_open'),
159
172
  is_preserve_source=pulumi.get(__ret__, 'is_preserve_source'),
160
173
  name=pulumi.get(__ret__, 'name'),
161
174
  network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
@@ -52,6 +52,7 @@ class NetworkLoadBalancerArgs:
52
52
  :param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
53
53
 
54
54
  Example: `true`
55
+ Example: `true`
55
56
  :param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
56
57
 
57
58
  During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
@@ -217,6 +218,7 @@ class NetworkLoadBalancerArgs:
217
218
  """
218
219
  (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
219
220
 
221
+ Example: `true`
220
222
  Example: `true`
221
223
  """
222
224
  return pulumi.get(self, "is_symmetric_hash_enabled")
@@ -331,6 +333,7 @@ class _NetworkLoadBalancerState:
331
333
  :param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
332
334
 
333
335
  Example: `true`
336
+ Example: `true`
334
337
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
335
338
  :param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
336
339
 
@@ -517,6 +520,7 @@ class _NetworkLoadBalancerState:
517
520
  """
518
521
  (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
519
522
 
523
+ Example: `true`
520
524
  Example: `true`
521
525
  """
522
526
  return pulumi.get(self, "is_symmetric_hash_enabled")
@@ -683,37 +687,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
683
687
 
684
688
  Creates a network load balancer.
685
689
 
686
- ## Example Usage
687
-
688
- <!--Start PulumiCodeChooser -->
689
- ```python
690
- import pulumi
691
- import pulumi_oci as oci
692
-
693
- test_network_load_balancer = oci.network_load_balancer.NetworkLoadBalancer("testNetworkLoadBalancer",
694
- compartment_id=var["compartment_id"],
695
- display_name=var["network_load_balancer_display_name"],
696
- subnet_id=oci_core_subnet["test_subnet"]["id"],
697
- assigned_ipv6=var["network_load_balancer_assigned_ipv6"],
698
- assigned_private_ipv4=var["network_load_balancer_assigned_private_ipv4"],
699
- defined_tags={
700
- "Operations.CostCenter": "42",
701
- },
702
- freeform_tags={
703
- "Department": "Finance",
704
- },
705
- is_preserve_source_destination=var["network_load_balancer_is_preserve_source_destination"],
706
- is_private=var["network_load_balancer_is_private"],
707
- is_symmetric_hash_enabled=var["network_load_balancer_is_symmetric_hash_enabled"],
708
- network_security_group_ids=var["network_load_balancer_network_security_group_ids"],
709
- nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
710
- reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
711
- id=var["network_load_balancer_reserved_ips_id"],
712
- )],
713
- subnet_ipv6cidr=var["network_load_balancer_subnet_ipv6cidr"])
714
- ```
715
- <!--End PulumiCodeChooser -->
716
-
717
690
  ## Import
718
691
 
719
692
  NetworkLoadBalancers can be imported using the `id`, e.g.
@@ -743,6 +716,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
743
716
  :param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
744
717
 
745
718
  Example: `true`
719
+ Example: `true`
746
720
  :param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
747
721
 
748
722
  During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
@@ -772,37 +746,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
772
746
 
773
747
  Creates a network load balancer.
774
748
 
775
- ## Example Usage
776
-
777
- <!--Start PulumiCodeChooser -->
778
- ```python
779
- import pulumi
780
- import pulumi_oci as oci
781
-
782
- test_network_load_balancer = oci.network_load_balancer.NetworkLoadBalancer("testNetworkLoadBalancer",
783
- compartment_id=var["compartment_id"],
784
- display_name=var["network_load_balancer_display_name"],
785
- subnet_id=oci_core_subnet["test_subnet"]["id"],
786
- assigned_ipv6=var["network_load_balancer_assigned_ipv6"],
787
- assigned_private_ipv4=var["network_load_balancer_assigned_private_ipv4"],
788
- defined_tags={
789
- "Operations.CostCenter": "42",
790
- },
791
- freeform_tags={
792
- "Department": "Finance",
793
- },
794
- is_preserve_source_destination=var["network_load_balancer_is_preserve_source_destination"],
795
- is_private=var["network_load_balancer_is_private"],
796
- is_symmetric_hash_enabled=var["network_load_balancer_is_symmetric_hash_enabled"],
797
- network_security_group_ids=var["network_load_balancer_network_security_group_ids"],
798
- nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
799
- reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
800
- id=var["network_load_balancer_reserved_ips_id"],
801
- )],
802
- subnet_ipv6cidr=var["network_load_balancer_subnet_ipv6cidr"])
803
- ```
804
- <!--End PulumiCodeChooser -->
805
-
806
749
  ## Import
807
750
 
808
751
  NetworkLoadBalancers can be imported using the `id`, e.g.
@@ -932,6 +875,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
932
875
  :param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
933
876
 
934
877
  Example: `true`
878
+ Example: `true`
935
879
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
936
880
  :param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
937
881
 
@@ -1067,6 +1011,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
1067
1011
  """
1068
1012
  (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
1069
1013
 
1014
+ Example: `true`
1070
1015
  Example: `true`
1071
1016
  """
1072
1017
  return pulumi.get(self, "is_symmetric_hash_enabled")