pulumi-oci 2.22.0a1737613119__py3-none-any.whl → 2.23.0a1737786272__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +8 -0
- pulumi_oci/bigdataservice/bds_instance_api_key.py +0 -14
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +0 -2
- pulumi_oci/bigdataservice/outputs.py +0 -4
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +143 -0
- pulumi_oci/core/byoasn.py +595 -0
- pulumi_oci/core/get_byoasn.py +268 -0
- pulumi_oci/core/get_byoasns.py +131 -0
- pulumi_oci/core/get_byoip_range.py +15 -1
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +457 -0
- pulumi_oci/database/_inputs.py +696 -89
- pulumi_oci/database/autonomous_database.py +98 -4
- pulumi_oci/database/autonomous_exadata_infrastructure.py +0 -2
- pulumi_oci/database/autonomous_vm_cluster.py +0 -2
- pulumi_oci/database/cloud_exadata_infrastructure.py +0 -2
- pulumi_oci/database/data_guard_association.py +75 -28
- pulumi_oci/database/database.py +147 -32
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +0 -2
- pulumi_oci/database/get_autonomous_database.py +30 -2
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_database.py +40 -1
- pulumi_oci/database/outputs.py +994 -114
- pulumi_oci/networkloadbalancer/__init__.py +1 -0
- pulumi_oci/networkloadbalancer/_inputs.py +6 -6
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +105 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +30 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py +165 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +105 -7
- pulumi_oci/networkloadbalancer/outputs.py +34 -12
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/METADATA +1 -1
- {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/RECORD +39 -35
- {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.22.0a1737613119.dist-info → pulumi_oci-2.23.0a1737786272.dist-info}/top_level.txt +0 -0
pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult',
|
19
|
+
'AwaitableGetNetworkLoadBalancerBackendSetBackendOperationalStatusResult',
|
20
|
+
'get_network_load_balancer_backend_set_backend_operational_status',
|
21
|
+
'get_network_load_balancer_backend_set_backend_operational_status_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getNetworkLoadBalancerBackendSetBackendOperationalStatus.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, backend_name=None, backend_set_name=None, id=None, network_load_balancer_id=None, status=None):
|
30
|
+
if backend_name and not isinstance(backend_name, str):
|
31
|
+
raise TypeError("Expected argument 'backend_name' to be a str")
|
32
|
+
pulumi.set(__self__, "backend_name", backend_name)
|
33
|
+
if backend_set_name and not isinstance(backend_set_name, str):
|
34
|
+
raise TypeError("Expected argument 'backend_set_name' to be a str")
|
35
|
+
pulumi.set(__self__, "backend_set_name", backend_set_name)
|
36
|
+
if id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if network_load_balancer_id and not isinstance(network_load_balancer_id, str):
|
40
|
+
raise TypeError("Expected argument 'network_load_balancer_id' to be a str")
|
41
|
+
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
42
|
+
if status and not isinstance(status, str):
|
43
|
+
raise TypeError("Expected argument 'status' to be a str")
|
44
|
+
pulumi.set(__self__, "status", status)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="backendName")
|
48
|
+
def backend_name(self) -> str:
|
49
|
+
return pulumi.get(self, "backend_name")
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="backendSetName")
|
53
|
+
def backend_set_name(self) -> str:
|
54
|
+
return pulumi.get(self, "backend_set_name")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter
|
58
|
+
def id(self) -> str:
|
59
|
+
"""
|
60
|
+
The provider-assigned unique ID for this managed resource.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "id")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="networkLoadBalancerId")
|
66
|
+
def network_load_balancer_id(self) -> str:
|
67
|
+
return pulumi.get(self, "network_load_balancer_id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def status(self) -> str:
|
72
|
+
"""
|
73
|
+
The operational status.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "status")
|
76
|
+
|
77
|
+
|
78
|
+
class AwaitableGetNetworkLoadBalancerBackendSetBackendOperationalStatusResult(GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult):
|
79
|
+
# pylint: disable=using-constant-test
|
80
|
+
def __await__(self):
|
81
|
+
if False:
|
82
|
+
yield self
|
83
|
+
return GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult(
|
84
|
+
backend_name=self.backend_name,
|
85
|
+
backend_set_name=self.backend_set_name,
|
86
|
+
id=self.id,
|
87
|
+
network_load_balancer_id=self.network_load_balancer_id,
|
88
|
+
status=self.status)
|
89
|
+
|
90
|
+
|
91
|
+
def get_network_load_balancer_backend_set_backend_operational_status(backend_name: Optional[str] = None,
|
92
|
+
backend_set_name: Optional[str] = None,
|
93
|
+
network_load_balancer_id: Optional[str] = None,
|
94
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkLoadBalancerBackendSetBackendOperationalStatusResult:
|
95
|
+
"""
|
96
|
+
This data source provides details about a specific Network Load Balancer Backend Set Backend Operational Status resource in Oracle Cloud Infrastructure Network Load Balancer service.
|
97
|
+
|
98
|
+
Retrieves the current operational status of the specified backend server.
|
99
|
+
|
100
|
+
## Example Usage
|
101
|
+
|
102
|
+
```python
|
103
|
+
import pulumi
|
104
|
+
import pulumi_oci as oci
|
105
|
+
|
106
|
+
test_network_load_balancer_backend_set_backend_operational_status = oci.NetworkLoadBalancer.get_network_load_balancer_backend_set_backend_operational_status(backend_name=test_backend["name"],
|
107
|
+
backend_set_name=test_backend_set["name"],
|
108
|
+
network_load_balancer_id=test_network_load_balancer["id"])
|
109
|
+
```
|
110
|
+
|
111
|
+
|
112
|
+
:param str backend_name: The name of the backend server to retrieve health status for. If the backend was created with an explicitly specified name, that name should be used here. If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as <ipAddress>:<port>. If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as <targetId>:<port>. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<var><unique_ID></var>:8080`
|
113
|
+
:param str backend_set_name: The name of the backend set associated with the backend server for which to retrieve the operational status. Example: `example_backend_set`
|
114
|
+
:param 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.
|
115
|
+
"""
|
116
|
+
__args__ = dict()
|
117
|
+
__args__['backendName'] = backend_name
|
118
|
+
__args__['backendSetName'] = backend_set_name
|
119
|
+
__args__['networkLoadBalancerId'] = network_load_balancer_id
|
120
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
121
|
+
__ret__ = pulumi.runtime.invoke('oci:NetworkLoadBalancer/getNetworkLoadBalancerBackendSetBackendOperationalStatus:getNetworkLoadBalancerBackendSetBackendOperationalStatus', __args__, opts=opts, typ=GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult).value
|
122
|
+
|
123
|
+
return AwaitableGetNetworkLoadBalancerBackendSetBackendOperationalStatusResult(
|
124
|
+
backend_name=pulumi.get(__ret__, 'backend_name'),
|
125
|
+
backend_set_name=pulumi.get(__ret__, 'backend_set_name'),
|
126
|
+
id=pulumi.get(__ret__, 'id'),
|
127
|
+
network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
|
128
|
+
status=pulumi.get(__ret__, 'status'))
|
129
|
+
def get_network_load_balancer_backend_set_backend_operational_status_output(backend_name: Optional[pulumi.Input[str]] = None,
|
130
|
+
backend_set_name: Optional[pulumi.Input[str]] = None,
|
131
|
+
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
132
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult]:
|
133
|
+
"""
|
134
|
+
This data source provides details about a specific Network Load Balancer Backend Set Backend Operational Status resource in Oracle Cloud Infrastructure Network Load Balancer service.
|
135
|
+
|
136
|
+
Retrieves the current operational status of the specified backend server.
|
137
|
+
|
138
|
+
## Example Usage
|
139
|
+
|
140
|
+
```python
|
141
|
+
import pulumi
|
142
|
+
import pulumi_oci as oci
|
143
|
+
|
144
|
+
test_network_load_balancer_backend_set_backend_operational_status = oci.NetworkLoadBalancer.get_network_load_balancer_backend_set_backend_operational_status(backend_name=test_backend["name"],
|
145
|
+
backend_set_name=test_backend_set["name"],
|
146
|
+
network_load_balancer_id=test_network_load_balancer["id"])
|
147
|
+
```
|
148
|
+
|
149
|
+
|
150
|
+
:param str backend_name: The name of the backend server to retrieve health status for. If the backend was created with an explicitly specified name, that name should be used here. If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as <ipAddress>:<port>. If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as <targetId>:<port>. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<var><unique_ID></var>:8080`
|
151
|
+
:param str backend_set_name: The name of the backend set associated with the backend server for which to retrieve the operational status. Example: `example_backend_set`
|
152
|
+
:param 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.
|
153
|
+
"""
|
154
|
+
__args__ = dict()
|
155
|
+
__args__['backendName'] = backend_name
|
156
|
+
__args__['backendSetName'] = backend_set_name
|
157
|
+
__args__['networkLoadBalancerId'] = network_load_balancer_id
|
158
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
159
|
+
__ret__ = pulumi.runtime.invoke_output('oci:NetworkLoadBalancer/getNetworkLoadBalancerBackendSetBackendOperationalStatus:getNetworkLoadBalancerBackendSetBackendOperationalStatus', __args__, opts=opts, typ=GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult)
|
160
|
+
return __ret__.apply(lambda __response__: GetNetworkLoadBalancerBackendSetBackendOperationalStatusResult(
|
161
|
+
backend_name=pulumi.get(__response__, 'backend_name'),
|
162
|
+
backend_set_name=pulumi.get(__response__, 'backend_set_name'),
|
163
|
+
id=pulumi.get(__response__, 'id'),
|
164
|
+
network_load_balancer_id=pulumi.get(__response__, 'network_load_balancer_id'),
|
165
|
+
status=pulumi.get(__response__, 'status')))
|
@@ -52,7 +52,7 @@ class NetworkLoadBalancerArgs:
|
|
52
52
|
|
53
53
|
If "false", then the service assigns a public IP address to the network load balancer.
|
54
54
|
|
55
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
55
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
56
56
|
|
57
57
|
Example: `true`
|
58
58
|
: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.
|
@@ -211,7 +211,7 @@ class NetworkLoadBalancerArgs:
|
|
211
211
|
|
212
212
|
If "false", then the service assigns a public IP address to the network load balancer.
|
213
213
|
|
214
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
214
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
215
215
|
|
216
216
|
Example: `true`
|
217
217
|
"""
|
@@ -349,7 +349,7 @@ class _NetworkLoadBalancerState:
|
|
349
349
|
|
350
350
|
If "false", then the service assigns a public IP address to the network load balancer.
|
351
351
|
|
352
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
352
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
353
353
|
|
354
354
|
Example: `true`
|
355
355
|
: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.
|
@@ -529,7 +529,7 @@ class _NetworkLoadBalancerState:
|
|
529
529
|
|
530
530
|
If "false", then the service assigns a public IP address to the network load balancer.
|
531
531
|
|
532
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
532
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
533
533
|
|
534
534
|
Example: `true`
|
535
535
|
"""
|
@@ -748,7 +748,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
748
748
|
|
749
749
|
If "false", then the service assigns a public IP address to the network load balancer.
|
750
750
|
|
751
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
751
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
752
752
|
|
753
753
|
Example: `true`
|
754
754
|
: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.
|
@@ -911,7 +911,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
911
911
|
|
912
912
|
If "false", then the service assigns a public IP address to the network load balancer.
|
913
913
|
|
914
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
914
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
915
915
|
|
916
916
|
Example: `true`
|
917
917
|
: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.
|
@@ -1043,7 +1043,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
1043
1043
|
|
1044
1044
|
If "false", then the service assigns a public IP address to the network load balancer.
|
1045
1045
|
|
1046
|
-
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [
|
1046
|
+
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [Network Load Balancer Types](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introduction.htm#NetworkLoadBalancerTypes). This value is true by default.
|
1047
1047
|
|
1048
1048
|
Example: `true`
|
1049
1049
|
"""
|
@@ -24,25 +24,29 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
24
24
|
health_checker: pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs'],
|
25
25
|
network_load_balancer_id: pulumi.Input[str],
|
26
26
|
policy: pulumi.Input[str],
|
27
|
+
are_operationally_active_backends_preferred: Optional[pulumi.Input[bool]] = None,
|
27
28
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
28
29
|
ip_version: Optional[pulumi.Input[str]] = None,
|
29
30
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
30
31
|
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
32
|
+
is_instant_failover_tcp_reset_enabled: Optional[pulumi.Input[bool]] = None,
|
31
33
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
32
34
|
name: Optional[pulumi.Input[str]] = None):
|
33
35
|
"""
|
34
36
|
The set of arguments for constructing a NetworkLoadBalancersBackendSetsUnified resource.
|
35
|
-
: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/
|
37
|
+
:param pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
36
38
|
: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.
|
37
39
|
:param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
|
38
40
|
|
39
41
|
|
40
42
|
** IMPORTANT **
|
41
43
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
44
|
+
:param pulumi.Input[bool] are_operationally_active_backends_preferred: (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
42
45
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
43
46
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
44
47
|
: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.
|
45
48
|
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
49
|
+
:param pulumi.Input[bool] is_instant_failover_tcp_reset_enabled: (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
46
50
|
: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.
|
47
51
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
48
52
|
|
@@ -53,6 +57,8 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
53
57
|
pulumi.set(__self__, "health_checker", health_checker)
|
54
58
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
55
59
|
pulumi.set(__self__, "policy", policy)
|
60
|
+
if are_operationally_active_backends_preferred is not None:
|
61
|
+
pulumi.set(__self__, "are_operationally_active_backends_preferred", are_operationally_active_backends_preferred)
|
56
62
|
if backends is not None:
|
57
63
|
pulumi.set(__self__, "backends", backends)
|
58
64
|
if ip_version is not None:
|
@@ -61,6 +67,8 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
61
67
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
62
68
|
if is_instant_failover_enabled is not None:
|
63
69
|
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
70
|
+
if is_instant_failover_tcp_reset_enabled is not None:
|
71
|
+
pulumi.set(__self__, "is_instant_failover_tcp_reset_enabled", is_instant_failover_tcp_reset_enabled)
|
64
72
|
if is_preserve_source is not None:
|
65
73
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
66
74
|
if name is not None:
|
@@ -70,7 +78,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
70
78
|
@pulumi.getter(name="healthChecker")
|
71
79
|
def health_checker(self) -> pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']:
|
72
80
|
"""
|
73
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
81
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
74
82
|
"""
|
75
83
|
return pulumi.get(self, "health_checker")
|
76
84
|
|
@@ -106,6 +114,18 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
106
114
|
def policy(self, value: pulumi.Input[str]):
|
107
115
|
pulumi.set(self, "policy", value)
|
108
116
|
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="areOperationallyActiveBackendsPreferred")
|
119
|
+
def are_operationally_active_backends_preferred(self) -> Optional[pulumi.Input[bool]]:
|
120
|
+
"""
|
121
|
+
(Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "are_operationally_active_backends_preferred")
|
124
|
+
|
125
|
+
@are_operationally_active_backends_preferred.setter
|
126
|
+
def are_operationally_active_backends_preferred(self, value: Optional[pulumi.Input[bool]]):
|
127
|
+
pulumi.set(self, "are_operationally_active_backends_preferred", value)
|
128
|
+
|
109
129
|
@property
|
110
130
|
@pulumi.getter
|
111
131
|
def backends(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]]:
|
@@ -154,6 +174,18 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
154
174
|
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
155
175
|
pulumi.set(self, "is_instant_failover_enabled", value)
|
156
176
|
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="isInstantFailoverTcpResetEnabled")
|
179
|
+
def is_instant_failover_tcp_reset_enabled(self) -> Optional[pulumi.Input[bool]]:
|
180
|
+
"""
|
181
|
+
(Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "is_instant_failover_tcp_reset_enabled")
|
184
|
+
|
185
|
+
@is_instant_failover_tcp_reset_enabled.setter
|
186
|
+
def is_instant_failover_tcp_reset_enabled(self, value: Optional[pulumi.Input[bool]]):
|
187
|
+
pulumi.set(self, "is_instant_failover_tcp_reset_enabled", value)
|
188
|
+
|
157
189
|
@property
|
158
190
|
@pulumi.getter(name="isPreserveSource")
|
159
191
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -186,22 +218,26 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
186
218
|
@pulumi.input_type
|
187
219
|
class _NetworkLoadBalancersBackendSetsUnifiedState:
|
188
220
|
def __init__(__self__, *,
|
221
|
+
are_operationally_active_backends_preferred: Optional[pulumi.Input[bool]] = None,
|
189
222
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]] = None,
|
190
223
|
health_checker: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']] = None,
|
191
224
|
ip_version: Optional[pulumi.Input[str]] = None,
|
192
225
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
193
226
|
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
227
|
+
is_instant_failover_tcp_reset_enabled: Optional[pulumi.Input[bool]] = None,
|
194
228
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
195
229
|
name: Optional[pulumi.Input[str]] = None,
|
196
230
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
197
231
|
policy: Optional[pulumi.Input[str]] = None):
|
198
232
|
"""
|
199
233
|
Input properties used for looking up and filtering NetworkLoadBalancersBackendSetsUnified resources.
|
234
|
+
:param pulumi.Input[bool] are_operationally_active_backends_preferred: (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
200
235
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
201
|
-
: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/
|
236
|
+
:param pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
202
237
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
203
238
|
: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.
|
204
239
|
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
240
|
+
:param pulumi.Input[bool] is_instant_failover_tcp_reset_enabled: (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
205
241
|
: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.
|
206
242
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
207
243
|
|
@@ -215,6 +251,8 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
215
251
|
** IMPORTANT **
|
216
252
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
217
253
|
"""
|
254
|
+
if are_operationally_active_backends_preferred is not None:
|
255
|
+
pulumi.set(__self__, "are_operationally_active_backends_preferred", are_operationally_active_backends_preferred)
|
218
256
|
if backends is not None:
|
219
257
|
pulumi.set(__self__, "backends", backends)
|
220
258
|
if health_checker is not None:
|
@@ -225,6 +263,8 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
225
263
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
226
264
|
if is_instant_failover_enabled is not None:
|
227
265
|
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
266
|
+
if is_instant_failover_tcp_reset_enabled is not None:
|
267
|
+
pulumi.set(__self__, "is_instant_failover_tcp_reset_enabled", is_instant_failover_tcp_reset_enabled)
|
228
268
|
if is_preserve_source is not None:
|
229
269
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
230
270
|
if name is not None:
|
@@ -234,6 +274,18 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
234
274
|
if policy is not None:
|
235
275
|
pulumi.set(__self__, "policy", policy)
|
236
276
|
|
277
|
+
@property
|
278
|
+
@pulumi.getter(name="areOperationallyActiveBackendsPreferred")
|
279
|
+
def are_operationally_active_backends_preferred(self) -> Optional[pulumi.Input[bool]]:
|
280
|
+
"""
|
281
|
+
(Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "are_operationally_active_backends_preferred")
|
284
|
+
|
285
|
+
@are_operationally_active_backends_preferred.setter
|
286
|
+
def are_operationally_active_backends_preferred(self, value: Optional[pulumi.Input[bool]]):
|
287
|
+
pulumi.set(self, "are_operationally_active_backends_preferred", value)
|
288
|
+
|
237
289
|
@property
|
238
290
|
@pulumi.getter
|
239
291
|
def backends(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedBackendArgs']]]]:
|
@@ -250,7 +302,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
250
302
|
@pulumi.getter(name="healthChecker")
|
251
303
|
def health_checker(self) -> Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]:
|
252
304
|
"""
|
253
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
305
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
254
306
|
"""
|
255
307
|
return pulumi.get(self, "health_checker")
|
256
308
|
|
@@ -294,6 +346,18 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
294
346
|
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
295
347
|
pulumi.set(self, "is_instant_failover_enabled", value)
|
296
348
|
|
349
|
+
@property
|
350
|
+
@pulumi.getter(name="isInstantFailoverTcpResetEnabled")
|
351
|
+
def is_instant_failover_tcp_reset_enabled(self) -> Optional[pulumi.Input[bool]]:
|
352
|
+
"""
|
353
|
+
(Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
354
|
+
"""
|
355
|
+
return pulumi.get(self, "is_instant_failover_tcp_reset_enabled")
|
356
|
+
|
357
|
+
@is_instant_failover_tcp_reset_enabled.setter
|
358
|
+
def is_instant_failover_tcp_reset_enabled(self, value: Optional[pulumi.Input[bool]]):
|
359
|
+
pulumi.set(self, "is_instant_failover_tcp_reset_enabled", value)
|
360
|
+
|
297
361
|
@property
|
298
362
|
@pulumi.getter(name="isPreserveSource")
|
299
363
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -356,11 +420,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
356
420
|
def __init__(__self__,
|
357
421
|
resource_name: str,
|
358
422
|
opts: Optional[pulumi.ResourceOptions] = None,
|
423
|
+
are_operationally_active_backends_preferred: Optional[pulumi.Input[bool]] = None,
|
359
424
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedBackendArgs', 'NetworkLoadBalancersBackendSetsUnifiedBackendArgsDict']]]]] = None,
|
360
425
|
health_checker: Optional[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']]] = None,
|
361
426
|
ip_version: Optional[pulumi.Input[str]] = None,
|
362
427
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
363
428
|
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
429
|
+
is_instant_failover_tcp_reset_enabled: Optional[pulumi.Input[bool]] = None,
|
364
430
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
365
431
|
name: Optional[pulumi.Input[str]] = None,
|
366
432
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -400,6 +466,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
400
466
|
name=network_load_balancers_backend_sets_unified_name,
|
401
467
|
network_load_balancer_id=test_network_load_balancer["id"],
|
402
468
|
policy=network_load_balancers_backend_sets_unified_policy,
|
469
|
+
are_operationally_active_backends_preferred=network_load_balancers_backend_sets_unified_are_operationally_active_backends_preferred,
|
403
470
|
backends=[{
|
404
471
|
"port": network_load_balancers_backend_sets_unified_backends_port,
|
405
472
|
"ip_address": network_load_balancers_backend_sets_unified_backends_ip_address,
|
@@ -413,6 +480,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
413
480
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
414
481
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
415
482
|
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
483
|
+
is_instant_failover_tcp_reset_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_tcp_reset_enabled,
|
416
484
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
417
485
|
```
|
418
486
|
|
@@ -426,11 +494,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
426
494
|
|
427
495
|
:param str resource_name: The name of the resource.
|
428
496
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
497
|
+
:param pulumi.Input[bool] are_operationally_active_backends_preferred: (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
429
498
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedBackendArgs', 'NetworkLoadBalancersBackendSetsUnifiedBackendArgsDict']]]] backends: (Updatable) An array of backends to be associated with the backend set.
|
430
|
-
:param pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
499
|
+
:param pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
431
500
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
432
501
|
: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.
|
433
502
|
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
503
|
+
:param pulumi.Input[bool] is_instant_failover_tcp_reset_enabled: (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
434
504
|
: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.
|
435
505
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
436
506
|
|
@@ -484,6 +554,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
484
554
|
name=network_load_balancers_backend_sets_unified_name,
|
485
555
|
network_load_balancer_id=test_network_load_balancer["id"],
|
486
556
|
policy=network_load_balancers_backend_sets_unified_policy,
|
557
|
+
are_operationally_active_backends_preferred=network_load_balancers_backend_sets_unified_are_operationally_active_backends_preferred,
|
487
558
|
backends=[{
|
488
559
|
"port": network_load_balancers_backend_sets_unified_backends_port,
|
489
560
|
"ip_address": network_load_balancers_backend_sets_unified_backends_ip_address,
|
@@ -497,6 +568,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
497
568
|
ip_version=network_load_balancers_backend_sets_unified_ip_version,
|
498
569
|
is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
|
499
570
|
is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
|
571
|
+
is_instant_failover_tcp_reset_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_tcp_reset_enabled,
|
500
572
|
is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
|
501
573
|
```
|
502
574
|
|
@@ -523,11 +595,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
523
595
|
def _internal_init(__self__,
|
524
596
|
resource_name: str,
|
525
597
|
opts: Optional[pulumi.ResourceOptions] = None,
|
598
|
+
are_operationally_active_backends_preferred: Optional[pulumi.Input[bool]] = None,
|
526
599
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedBackendArgs', 'NetworkLoadBalancersBackendSetsUnifiedBackendArgsDict']]]]] = None,
|
527
600
|
health_checker: Optional[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']]] = None,
|
528
601
|
ip_version: Optional[pulumi.Input[str]] = None,
|
529
602
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
530
603
|
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
604
|
+
is_instant_failover_tcp_reset_enabled: Optional[pulumi.Input[bool]] = None,
|
531
605
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
532
606
|
name: Optional[pulumi.Input[str]] = None,
|
533
607
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -541,6 +615,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
541
615
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
542
616
|
__props__ = NetworkLoadBalancersBackendSetsUnifiedArgs.__new__(NetworkLoadBalancersBackendSetsUnifiedArgs)
|
543
617
|
|
618
|
+
__props__.__dict__["are_operationally_active_backends_preferred"] = are_operationally_active_backends_preferred
|
544
619
|
__props__.__dict__["backends"] = backends
|
545
620
|
if health_checker is None and not opts.urn:
|
546
621
|
raise TypeError("Missing required property 'health_checker'")
|
@@ -548,6 +623,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
548
623
|
__props__.__dict__["ip_version"] = ip_version
|
549
624
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
550
625
|
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
626
|
+
__props__.__dict__["is_instant_failover_tcp_reset_enabled"] = is_instant_failover_tcp_reset_enabled
|
551
627
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
552
628
|
__props__.__dict__["name"] = name
|
553
629
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -566,11 +642,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
566
642
|
def get(resource_name: str,
|
567
643
|
id: pulumi.Input[str],
|
568
644
|
opts: Optional[pulumi.ResourceOptions] = None,
|
645
|
+
are_operationally_active_backends_preferred: Optional[pulumi.Input[bool]] = None,
|
569
646
|
backends: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedBackendArgs', 'NetworkLoadBalancersBackendSetsUnifiedBackendArgsDict']]]]] = None,
|
570
647
|
health_checker: Optional[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']]] = None,
|
571
648
|
ip_version: Optional[pulumi.Input[str]] = None,
|
572
649
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
573
650
|
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
651
|
+
is_instant_failover_tcp_reset_enabled: Optional[pulumi.Input[bool]] = None,
|
574
652
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
575
653
|
name: Optional[pulumi.Input[str]] = None,
|
576
654
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -582,11 +660,13 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
582
660
|
:param str resource_name: The unique name of the resulting resource.
|
583
661
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
584
662
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
663
|
+
:param pulumi.Input[bool] are_operationally_active_backends_preferred: (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
585
664
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedBackendArgs', 'NetworkLoadBalancersBackendSetsUnifiedBackendArgsDict']]]] backends: (Updatable) An array of backends to be associated with the backend set.
|
586
|
-
:param pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
665
|
+
:param pulumi.Input[Union['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs', 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
587
666
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
588
667
|
: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.
|
589
668
|
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
669
|
+
:param pulumi.Input[bool] is_instant_failover_tcp_reset_enabled: (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
590
670
|
: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.
|
591
671
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
592
672
|
|
@@ -604,17 +684,27 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
604
684
|
|
605
685
|
__props__ = _NetworkLoadBalancersBackendSetsUnifiedState.__new__(_NetworkLoadBalancersBackendSetsUnifiedState)
|
606
686
|
|
687
|
+
__props__.__dict__["are_operationally_active_backends_preferred"] = are_operationally_active_backends_preferred
|
607
688
|
__props__.__dict__["backends"] = backends
|
608
689
|
__props__.__dict__["health_checker"] = health_checker
|
609
690
|
__props__.__dict__["ip_version"] = ip_version
|
610
691
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
611
692
|
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
693
|
+
__props__.__dict__["is_instant_failover_tcp_reset_enabled"] = is_instant_failover_tcp_reset_enabled
|
612
694
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
613
695
|
__props__.__dict__["name"] = name
|
614
696
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
615
697
|
__props__.__dict__["policy"] = policy
|
616
698
|
return NetworkLoadBalancersBackendSetsUnified(resource_name, opts=opts, __props__=__props__)
|
617
699
|
|
700
|
+
@property
|
701
|
+
@pulumi.getter(name="areOperationallyActiveBackendsPreferred")
|
702
|
+
def are_operationally_active_backends_preferred(self) -> pulumi.Output[bool]:
|
703
|
+
"""
|
704
|
+
(Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "are_operationally_active_backends_preferred")
|
707
|
+
|
618
708
|
@property
|
619
709
|
@pulumi.getter
|
620
710
|
def backends(self) -> pulumi.Output[Sequence['outputs.NetworkLoadBalancersBackendSetsUnifiedBackend']]:
|
@@ -627,7 +717,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
627
717
|
@pulumi.getter(name="healthChecker")
|
628
718
|
def health_checker(self) -> pulumi.Output['outputs.NetworkLoadBalancersBackendSetsUnifiedHealthChecker']:
|
629
719
|
"""
|
630
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
720
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Network Load Balancer Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/update-health-check-policy.htm).
|
631
721
|
"""
|
632
722
|
return pulumi.get(self, "health_checker")
|
633
723
|
|
@@ -655,6 +745,14 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
655
745
|
"""
|
656
746
|
return pulumi.get(self, "is_instant_failover_enabled")
|
657
747
|
|
748
|
+
@property
|
749
|
+
@pulumi.getter(name="isInstantFailoverTcpResetEnabled")
|
750
|
+
def is_instant_failover_tcp_reset_enabled(self) -> pulumi.Output[bool]:
|
751
|
+
"""
|
752
|
+
(Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
|
753
|
+
"""
|
754
|
+
return pulumi.get(self, "is_instant_failover_tcp_reset_enabled")
|
755
|
+
|
658
756
|
@property
|
659
757
|
@pulumi.getter(name="isPreserveSource")
|
660
758
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|