pulumi-oci 1.31.0a1712729931__py3-none-any.whl → 1.32.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. pulumi_oci/__init__.py +16 -0
  2. pulumi_oci/database/__init__.py +3 -0
  3. pulumi_oci/database/_inputs.py +192 -0
  4. pulumi_oci/database/autonomous_container_database.py +83 -8
  5. pulumi_oci/database/autonomous_database_software_image.py +638 -0
  6. pulumi_oci/database/autonomous_vm_cluster.py +12 -4
  7. pulumi_oci/database/get_autonomous_container_database.py +26 -5
  8. pulumi_oci/database/get_autonomous_container_database_resource_usage.py +3 -3
  9. pulumi_oci/database/get_autonomous_database_software_image.py +262 -0
  10. pulumi_oci/database/get_autonomous_database_software_images.py +200 -0
  11. pulumi_oci/database/get_autonomous_vm_cluster.py +3 -1
  12. pulumi_oci/database/outputs.py +538 -28
  13. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  14. pulumi_oci/dataflow/invoke_run.py +49 -0
  15. pulumi_oci/dataflow/outputs.py +7 -0
  16. pulumi_oci/datascience/_inputs.py +17 -1
  17. pulumi_oci/datascience/model_deployment.py +2 -0
  18. pulumi_oci/datascience/outputs.py +39 -3
  19. pulumi_oci/devops/_inputs.py +380 -10
  20. pulumi_oci/devops/outputs.py +953 -32
  21. pulumi_oci/filestorage/replication.py +4 -4
  22. pulumi_oci/meteringcomputation/__init__.py +3 -0
  23. pulumi_oci/meteringcomputation/_inputs.py +110 -0
  24. pulumi_oci/meteringcomputation/get_schedule.py +1 -1
  25. pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
  26. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +173 -0
  27. pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +157 -0
  28. pulumi_oci/meteringcomputation/outputs.py +292 -2
  29. pulumi_oci/meteringcomputation/schedule.py +7 -7
  30. pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +392 -0
  31. pulumi_oci/networkfirewall/outputs.py +12 -16
  32. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  33. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  34. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  35. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  36. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  37. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  38. pulumi_oci/opa/opa_instance.py +41 -22
  39. pulumi_oci/psql/_inputs.py +4 -4
  40. pulumi_oci/psql/db_system.py +7 -7
  41. pulumi_oci/psql/outputs.py +4 -4
  42. pulumi_oci/redis/get_redis_cluster.py +14 -1
  43. pulumi_oci/redis/outputs.py +11 -0
  44. pulumi_oci/redis/redis_cluster.py +52 -3
  45. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  46. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  47. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  48. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  49. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  50. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  51. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  52. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  53. pulumi_oci/stackmonitoring/outputs.py +436 -1
  54. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/METADATA +1 -1
  55. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/RECORD +57 -51
  56. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/WHEEL +0 -0
  57. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/top_level.txt +0 -0
@@ -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")
@@ -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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
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]: