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.
Files changed (26) hide show
  1. pulumi_oci/dataflow/get_invoke_run.py +1 -11
  2. pulumi_oci/dataflow/invoke_run.py +0 -49
  3. pulumi_oci/dataflow/outputs.py +0 -7
  4. pulumi_oci/devops/_inputs.py +10 -380
  5. pulumi_oci/devops/outputs.py +32 -953
  6. pulumi_oci/filestorage/replication.py +4 -4
  7. pulumi_oci/networkfirewall/outputs.py +16 -12
  8. pulumi_oci/networkloadbalancer/_inputs.py +10 -222
  9. pulumi_oci/networkloadbalancer/backend_set.py +7 -70
  10. pulumi_oci/networkloadbalancer/get_backend_set.py +2 -15
  11. pulumi_oci/networkloadbalancer/network_load_balancer.py +62 -7
  12. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -70
  13. pulumi_oci/networkloadbalancer/outputs.py +28 -397
  14. pulumi_oci/stackmonitoring/_inputs.py +1 -209
  15. pulumi_oci/stackmonitoring/get_monitored_resource.py +1 -27
  16. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +1 -27
  17. pulumi_oci/stackmonitoring/get_monitored_resources.py +1 -18
  18. pulumi_oci/stackmonitoring/monitored_resource.py +0 -56
  19. pulumi_oci/stackmonitoring/monitored_resource_task.py +0 -18
  20. pulumi_oci/stackmonitoring/monitored_resource_type.py +19 -117
  21. pulumi_oci/stackmonitoring/monitored_resources_search.py +1 -197
  22. pulumi_oci/stackmonitoring/outputs.py +1 -436
  23. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/METADATA +1 -1
  24. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/RECORD +26 -26
  25. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/WHEEL +0 -0
  26. {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/top_level.txt +0 -0
@@ -20,12 +20,11 @@ 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,
24
23
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
25
24
  name: Optional[pulumi.Input[str]] = None):
26
25
  """
27
26
  The set of arguments for constructing a BackendSet resource.
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).
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).
29
28
  :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
29
  :param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
31
30
 
@@ -33,7 +32,6 @@ class BackendSetArgs:
33
32
  ** IMPORTANT **
34
33
  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
34
  :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.
37
35
  :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
36
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
39
37
 
@@ -46,8 +44,6 @@ class BackendSetArgs:
46
44
  pulumi.set(__self__, "policy", policy)
47
45
  if ip_version is not None:
48
46
  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)
51
47
  if is_preserve_source is not None:
52
48
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
53
49
  if name is not None:
@@ -57,7 +53,7 @@ class BackendSetArgs:
57
53
  @pulumi.getter(name="healthChecker")
58
54
  def health_checker(self) -> pulumi.Input['BackendSetHealthCheckerArgs']:
59
55
  """
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).
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).
61
57
  """
62
58
  return pulumi.get(self, "health_checker")
63
59
 
@@ -105,18 +101,6 @@ class BackendSetArgs:
105
101
  def ip_version(self, value: Optional[pulumi.Input[str]]):
106
102
  pulumi.set(self, "ip_version", value)
107
103
 
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
-
120
104
  @property
121
105
  @pulumi.getter(name="isPreserveSource")
122
106
  def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
@@ -152,7 +136,6 @@ class _BackendSetState:
152
136
  backends: Optional[pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]]] = None,
153
137
  health_checker: Optional[pulumi.Input['BackendSetHealthCheckerArgs']] = None,
154
138
  ip_version: Optional[pulumi.Input[str]] = None,
155
- is_fail_open: Optional[pulumi.Input[bool]] = None,
156
139
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
157
140
  name: Optional[pulumi.Input[str]] = None,
158
141
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -160,9 +143,8 @@ class _BackendSetState:
160
143
  """
161
144
  Input properties used for looking up and filtering BackendSet resources.
162
145
  :param pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
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).
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).
164
147
  :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.
166
148
  :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
149
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
168
150
 
@@ -182,8 +164,6 @@ class _BackendSetState:
182
164
  pulumi.set(__self__, "health_checker", health_checker)
183
165
  if ip_version is not None:
184
166
  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)
187
167
  if is_preserve_source is not None:
188
168
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
189
169
  if name is not None:
@@ -209,7 +189,7 @@ class _BackendSetState:
209
189
  @pulumi.getter(name="healthChecker")
210
190
  def health_checker(self) -> Optional[pulumi.Input['BackendSetHealthCheckerArgs']]:
211
191
  """
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).
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).
213
193
  """
214
194
  return pulumi.get(self, "health_checker")
215
195
 
@@ -229,18 +209,6 @@ class _BackendSetState:
229
209
  def ip_version(self, value: Optional[pulumi.Input[str]]):
230
210
  pulumi.set(self, "ip_version", value)
231
211
 
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
-
244
212
  @property
245
213
  @pulumi.getter(name="isPreserveSource")
246
214
  def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
@@ -305,7 +273,6 @@ class BackendSet(pulumi.CustomResource):
305
273
  opts: Optional[pulumi.ResourceOptions] = None,
306
274
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
307
275
  ip_version: Optional[pulumi.Input[str]] = None,
308
- is_fail_open: Optional[pulumi.Input[bool]] = None,
309
276
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
310
277
  name: Optional[pulumi.Input[str]] = None,
311
278
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -326,13 +293,6 @@ class BackendSet(pulumi.CustomResource):
326
293
  test_backend_set = oci.network_load_balancer.BackendSet("testBackendSet",
327
294
  health_checker=oci.network_load_balancer.BackendSetHealthCheckerArgs(
328
295
  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
- ),
336
296
  interval_in_millis=var["backend_set_health_checker_interval_in_millis"],
337
297
  port=var["backend_set_health_checker_port"],
338
298
  request_data=var["backend_set_health_checker_request_data"],
@@ -346,7 +306,6 @@ class BackendSet(pulumi.CustomResource):
346
306
  network_load_balancer_id=oci_network_load_balancer_network_load_balancer["test_network_load_balancer"]["id"],
347
307
  policy=var["backend_set_policy"],
348
308
  ip_version=var["backend_set_ip_version"],
349
- is_fail_open=var["backend_set_is_fail_open"],
350
309
  is_preserve_source=var["backend_set_is_preserve_source"])
351
310
  ```
352
311
  <!--End PulumiCodeChooser -->
@@ -361,9 +320,8 @@ class BackendSet(pulumi.CustomResource):
361
320
 
362
321
  :param str resource_name: The name of the resource.
363
322
  :param pulumi.ResourceOptions opts: Options for the resource.
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).
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).
365
324
  :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.
367
325
  :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.
368
326
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
369
327
 
@@ -398,13 +356,6 @@ class BackendSet(pulumi.CustomResource):
398
356
  test_backend_set = oci.network_load_balancer.BackendSet("testBackendSet",
399
357
  health_checker=oci.network_load_balancer.BackendSetHealthCheckerArgs(
400
358
  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
- ),
408
359
  interval_in_millis=var["backend_set_health_checker_interval_in_millis"],
409
360
  port=var["backend_set_health_checker_port"],
410
361
  request_data=var["backend_set_health_checker_request_data"],
@@ -418,7 +369,6 @@ class BackendSet(pulumi.CustomResource):
418
369
  network_load_balancer_id=oci_network_load_balancer_network_load_balancer["test_network_load_balancer"]["id"],
419
370
  policy=var["backend_set_policy"],
420
371
  ip_version=var["backend_set_ip_version"],
421
- is_fail_open=var["backend_set_is_fail_open"],
422
372
  is_preserve_source=var["backend_set_is_preserve_source"])
423
373
  ```
424
374
  <!--End PulumiCodeChooser -->
@@ -448,7 +398,6 @@ class BackendSet(pulumi.CustomResource):
448
398
  opts: Optional[pulumi.ResourceOptions] = None,
449
399
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
450
400
  ip_version: Optional[pulumi.Input[str]] = None,
451
- is_fail_open: Optional[pulumi.Input[bool]] = None,
452
401
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
453
402
  name: Optional[pulumi.Input[str]] = None,
454
403
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -466,7 +415,6 @@ class BackendSet(pulumi.CustomResource):
466
415
  raise TypeError("Missing required property 'health_checker'")
467
416
  __props__.__dict__["health_checker"] = health_checker
468
417
  __props__.__dict__["ip_version"] = ip_version
469
- __props__.__dict__["is_fail_open"] = is_fail_open
470
418
  __props__.__dict__["is_preserve_source"] = is_preserve_source
471
419
  __props__.__dict__["name"] = name
472
420
  if network_load_balancer_id is None and not opts.urn:
@@ -489,7 +437,6 @@ class BackendSet(pulumi.CustomResource):
489
437
  backends: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]]] = None,
490
438
  health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
491
439
  ip_version: Optional[pulumi.Input[str]] = None,
492
- is_fail_open: Optional[pulumi.Input[bool]] = None,
493
440
  is_preserve_source: Optional[pulumi.Input[bool]] = None,
494
441
  name: Optional[pulumi.Input[str]] = None,
495
442
  network_load_balancer_id: Optional[pulumi.Input[str]] = None,
@@ -502,9 +449,8 @@ class BackendSet(pulumi.CustomResource):
502
449
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
503
450
  :param pulumi.ResourceOptions opts: Options for the resource.
504
451
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]] backends: (Updatable) An array of backends to be associated with the backend set.
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).
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).
506
453
  :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.
508
454
  :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.
509
455
  :param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
510
456
 
@@ -525,7 +471,6 @@ class BackendSet(pulumi.CustomResource):
525
471
  __props__.__dict__["backends"] = backends
526
472
  __props__.__dict__["health_checker"] = health_checker
527
473
  __props__.__dict__["ip_version"] = ip_version
528
- __props__.__dict__["is_fail_open"] = is_fail_open
529
474
  __props__.__dict__["is_preserve_source"] = is_preserve_source
530
475
  __props__.__dict__["name"] = name
531
476
  __props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
@@ -544,7 +489,7 @@ class BackendSet(pulumi.CustomResource):
544
489
  @pulumi.getter(name="healthChecker")
545
490
  def health_checker(self) -> pulumi.Output['outputs.BackendSetHealthChecker']:
546
491
  """
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).
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).
548
493
  """
549
494
  return pulumi.get(self, "health_checker")
550
495
 
@@ -556,14 +501,6 @@ class BackendSet(pulumi.CustomResource):
556
501
  """
557
502
  return pulumi.get(self, "ip_version")
558
503
 
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
-
567
504
  @property
568
505
  @pulumi.getter(name="isPreserveSource")
569
506
  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_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,9 +38,6 @@ 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)
44
41
  if is_preserve_source and not isinstance(is_preserve_source, bool):
45
42
  raise TypeError("Expected argument 'is_preserve_source' to be a bool")
46
43
  pulumi.set(__self__, "is_preserve_source", is_preserve_source)
@@ -71,7 +68,7 @@ class GetBackendSetResult:
71
68
  @pulumi.getter(name="healthCheckers")
72
69
  def health_checkers(self) -> Sequence['outputs.GetBackendSetHealthCheckerResult']:
73
70
  """
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).
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).
75
72
  """
76
73
  return pulumi.get(self, "health_checkers")
77
74
 
@@ -88,14 +85,6 @@ class GetBackendSetResult:
88
85
  """
89
86
  return pulumi.get(self, "ip_version")
90
87
 
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
-
99
88
  @property
100
89
  @pulumi.getter(name="isPreserveSource")
101
90
  def is_preserve_source(self) -> bool:
@@ -137,7 +126,6 @@ class AwaitableGetBackendSetResult(GetBackendSetResult):
137
126
  health_checkers=self.health_checkers,
138
127
  id=self.id,
139
128
  ip_version=self.ip_version,
140
- is_fail_open=self.is_fail_open,
141
129
  is_preserve_source=self.is_preserve_source,
142
130
  name=self.name,
143
131
  network_load_balancer_id=self.network_load_balancer_id,
@@ -168,7 +156,6 @@ def get_backend_set(backend_set_name: Optional[str] = None,
168
156
  health_checkers=pulumi.get(__ret__, 'health_checkers'),
169
157
  id=pulumi.get(__ret__, 'id'),
170
158
  ip_version=pulumi.get(__ret__, 'ip_version'),
171
- is_fail_open=pulumi.get(__ret__, 'is_fail_open'),
172
159
  is_preserve_source=pulumi.get(__ret__, 'is_preserve_source'),
173
160
  name=pulumi.get(__ret__, 'name'),
174
161
  network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
@@ -52,7 +52,6 @@ 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`
56
55
  :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.
57
56
 
58
57
  During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
@@ -218,7 +217,6 @@ class NetworkLoadBalancerArgs:
218
217
  """
219
218
  (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.
220
219
 
221
- Example: `true`
222
220
  Example: `true`
223
221
  """
224
222
  return pulumi.get(self, "is_symmetric_hash_enabled")
@@ -333,7 +331,6 @@ class _NetworkLoadBalancerState:
333
331
  :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.
334
332
 
335
333
  Example: `true`
336
- Example: `true`
337
334
  :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.
338
335
  :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.
339
336
 
@@ -520,7 +517,6 @@ class _NetworkLoadBalancerState:
520
517
  """
521
518
  (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.
522
519
 
523
- Example: `true`
524
520
  Example: `true`
525
521
  """
526
522
  return pulumi.get(self, "is_symmetric_hash_enabled")
@@ -687,6 +683,37 @@ class NetworkLoadBalancer(pulumi.CustomResource):
687
683
 
688
684
  Creates a network load balancer.
689
685
 
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
+
690
717
  ## Import
691
718
 
692
719
  NetworkLoadBalancers can be imported using the `id`, e.g.
@@ -716,7 +743,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
716
743
  :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.
717
744
 
718
745
  Example: `true`
719
- Example: `true`
720
746
  :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.
721
747
 
722
748
  During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
@@ -746,6 +772,37 @@ class NetworkLoadBalancer(pulumi.CustomResource):
746
772
 
747
773
  Creates a network load balancer.
748
774
 
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
+
749
806
  ## Import
750
807
 
751
808
  NetworkLoadBalancers can be imported using the `id`, e.g.
@@ -875,7 +932,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
875
932
  :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.
876
933
 
877
934
  Example: `true`
878
- Example: `true`
879
935
  :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.
880
936
  :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.
881
937
 
@@ -1011,7 +1067,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
1011
1067
  """
1012
1068
  (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.
1013
1069
 
1014
- Example: `true`
1015
1070
  Example: `true`
1016
1071
  """
1017
1072
  return pulumi.get(self, "is_symmetric_hash_enabled")