pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__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/database/autonomous_database.py +155 -14
- pulumi_oci/database/get_autonomous_database.py +41 -2
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +68 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
- pulumi_oci/databasemanagement/outputs.py +267 -75
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +4504 -0
- pulumi_oci/dataintegration/get_workspace_task.py +443 -0
- pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
- pulumi_oci/dataintegration/outputs.py +16511 -4723
- pulumi_oci/dataintegration/workspace_task.py +1364 -0
- pulumi_oci/devops/_inputs.py +18 -2
- pulumi_oci/devops/deploy_artifact.py +2 -0
- pulumi_oci/devops/deploy_stage.py +141 -0
- pulumi_oci/devops/get_deploy_stage.py +40 -1
- pulumi_oci/devops/outputs.py +75 -6
- pulumi_oci/logging/_inputs.py +2751 -187
- pulumi_oci/logging/outputs.py +4981 -768
- pulumi_oci/logging/unified_agent_configuration.py +34 -208
- pulumi_oci/monitoring/_inputs.py +136 -0
- pulumi_oci/monitoring/alarm.py +173 -0
- pulumi_oci/monitoring/get_alarm.py +40 -1
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +305 -0
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +41 -34
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
@@ -35,7 +35,7 @@ class BackendArgs:
|
|
35
35
|
:param pulumi.Input[bool] is_offline: (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
36
36
|
:param pulumi.Input[str] name: Optional unique name identifying the backend within the backend set. If not specified, then one will be generated. Example: `webServer1`
|
37
37
|
:param pulumi.Input[str] target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
38
|
-
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
38
|
+
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
39
39
|
|
40
40
|
|
41
41
|
** IMPORTANT **
|
@@ -171,7 +171,7 @@ class BackendArgs:
|
|
171
171
|
@pulumi.getter
|
172
172
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
173
173
|
"""
|
174
|
-
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
174
|
+
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
175
175
|
|
176
176
|
|
177
177
|
** IMPORTANT **
|
@@ -208,7 +208,7 @@ class _BackendState:
|
|
208
208
|
: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.
|
209
209
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
210
210
|
:param pulumi.Input[str] target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
211
|
-
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
211
|
+
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
212
212
|
|
213
213
|
|
214
214
|
** IMPORTANT **
|
@@ -347,7 +347,7 @@ class _BackendState:
|
|
347
347
|
@pulumi.getter
|
348
348
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
349
349
|
"""
|
350
|
-
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
350
|
+
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
351
351
|
|
352
352
|
|
353
353
|
** IMPORTANT **
|
@@ -420,7 +420,7 @@ class Backend(pulumi.CustomResource):
|
|
420
420
|
: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.
|
421
421
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
422
422
|
:param pulumi.Input[str] target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
423
|
-
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
423
|
+
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
424
424
|
|
425
425
|
|
426
426
|
** IMPORTANT **
|
@@ -551,7 +551,7 @@ class Backend(pulumi.CustomResource):
|
|
551
551
|
: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.
|
552
552
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
553
553
|
:param pulumi.Input[str] target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
554
|
-
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
554
|
+
:param pulumi.Input[int] weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
555
555
|
|
556
556
|
|
557
557
|
** IMPORTANT **
|
@@ -649,7 +649,7 @@ class Backend(pulumi.CustomResource):
|
|
649
649
|
@pulumi.getter
|
650
650
|
def weight(self) -> pulumi.Output[int]:
|
651
651
|
"""
|
652
|
-
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
652
|
+
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
653
653
|
|
654
654
|
|
655
655
|
** IMPORTANT **
|
@@ -24,7 +24,7 @@ class BackendSetArgs:
|
|
24
24
|
name: Optional[pulumi.Input[str]] = None):
|
25
25
|
"""
|
26
26
|
The set of arguments for constructing a BackendSet resource.
|
27
|
-
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
27
|
+
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
28
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.
|
29
29
|
:param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
|
30
30
|
|
@@ -53,7 +53,7 @@ class BackendSetArgs:
|
|
53
53
|
@pulumi.getter(name="healthChecker")
|
54
54
|
def health_checker(self) -> pulumi.Input['BackendSetHealthCheckerArgs']:
|
55
55
|
"""
|
56
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
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).
|
57
57
|
"""
|
58
58
|
return pulumi.get(self, "health_checker")
|
59
59
|
|
@@ -142,8 +142,8 @@ class _BackendSetState:
|
|
142
142
|
policy: Optional[pulumi.Input[str]] = None):
|
143
143
|
"""
|
144
144
|
Input properties used for looking up and filtering BackendSet resources.
|
145
|
-
:param pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]] backends:
|
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/
|
145
|
+
:param pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]] backends: (Updatable) An array of backends to be associated with the backend set.
|
146
|
+
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
147
147
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
148
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.
|
149
149
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -177,7 +177,7 @@ class _BackendSetState:
|
|
177
177
|
@pulumi.getter
|
178
178
|
def backends(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]]]:
|
179
179
|
"""
|
180
|
-
|
180
|
+
(Updatable) An array of backends to be associated with the backend set.
|
181
181
|
"""
|
182
182
|
return pulumi.get(self, "backends")
|
183
183
|
|
@@ -189,7 +189,7 @@ class _BackendSetState:
|
|
189
189
|
@pulumi.getter(name="healthChecker")
|
190
190
|
def health_checker(self) -> Optional[pulumi.Input['BackendSetHealthCheckerArgs']]:
|
191
191
|
"""
|
192
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
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).
|
193
193
|
"""
|
194
194
|
return pulumi.get(self, "health_checker")
|
195
195
|
|
@@ -320,7 +320,7 @@ class BackendSet(pulumi.CustomResource):
|
|
320
320
|
|
321
321
|
:param str resource_name: The name of the resource.
|
322
322
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
323
|
-
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
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).
|
324
324
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
325
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.
|
326
326
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -448,8 +448,8 @@ class BackendSet(pulumi.CustomResource):
|
|
448
448
|
:param str resource_name: The unique name of the resulting resource.
|
449
449
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
450
450
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
451
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]] backends:
|
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/
|
451
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['BackendSetBackendArgs']]]] backends: (Updatable) An array of backends to be associated with the backend set.
|
452
|
+
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
453
453
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
454
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.
|
455
455
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -481,7 +481,7 @@ class BackendSet(pulumi.CustomResource):
|
|
481
481
|
@pulumi.getter
|
482
482
|
def backends(self) -> pulumi.Output[Sequence['outputs.BackendSetBackend']]:
|
483
483
|
"""
|
484
|
-
|
484
|
+
(Updatable) An array of backends to be associated with the backend set.
|
485
485
|
"""
|
486
486
|
return pulumi.get(self, "backends")
|
487
487
|
|
@@ -489,7 +489,7 @@ class BackendSet(pulumi.CustomResource):
|
|
489
489
|
@pulumi.getter(name="healthChecker")
|
490
490
|
def health_checker(self) -> pulumi.Output['outputs.BackendSetHealthChecker']:
|
491
491
|
"""
|
492
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
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).
|
493
493
|
"""
|
494
494
|
return pulumi.get(self, "health_checker")
|
495
495
|
|
@@ -68,7 +68,7 @@ class GetBackendSetResult:
|
|
68
68
|
@pulumi.getter(name="healthCheckers")
|
69
69
|
def health_checkers(self) -> Sequence['outputs.GetBackendSetHealthCheckerResult']:
|
70
70
|
"""
|
71
|
-
The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
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).
|
72
72
|
"""
|
73
73
|
return pulumi.get(self, "health_checkers")
|
74
74
|
|
@@ -98,7 +98,7 @@ class GetListenerResult:
|
|
98
98
|
@pulumi.getter
|
99
99
|
def protocol(self) -> str:
|
100
100
|
"""
|
101
|
-
The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
101
|
+
The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
102
102
|
"""
|
103
103
|
return pulumi.get(self, "protocol")
|
104
104
|
|
@@ -22,7 +22,7 @@ class GetNetworkLoadBalancerResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getNetworkLoadBalancer.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_addresses=None, is_preserve_source_destination=None, is_private=None, lifecycle_details=None, network_load_balancer_id=None, network_security_group_ids=None, nlb_ip_version=None, reserved_ips=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, ip_addresses=None, is_preserve_source_destination=None, is_private=None, is_symmetric_hash_enabled=None, lifecycle_details=None, network_load_balancer_id=None, network_security_group_ids=None, nlb_ip_version=None, reserved_ips=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -47,6 +47,9 @@ class GetNetworkLoadBalancerResult:
|
|
47
47
|
if is_private and not isinstance(is_private, bool):
|
48
48
|
raise TypeError("Expected argument 'is_private' to be a bool")
|
49
49
|
pulumi.set(__self__, "is_private", is_private)
|
50
|
+
if is_symmetric_hash_enabled and not isinstance(is_symmetric_hash_enabled, bool):
|
51
|
+
raise TypeError("Expected argument 'is_symmetric_hash_enabled' to be a bool")
|
52
|
+
pulumi.set(__self__, "is_symmetric_hash_enabled", is_symmetric_hash_enabled)
|
50
53
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
51
54
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
52
55
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -142,6 +145,14 @@ class GetNetworkLoadBalancerResult:
|
|
142
145
|
"""
|
143
146
|
return pulumi.get(self, "is_private")
|
144
147
|
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="isSymmetricHashEnabled")
|
150
|
+
def is_symmetric_hash_enabled(self) -> bool:
|
151
|
+
"""
|
152
|
+
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.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "is_symmetric_hash_enabled")
|
155
|
+
|
145
156
|
@property
|
146
157
|
@pulumi.getter(name="lifecycleDetails")
|
147
158
|
def lifecycle_details(self) -> str:
|
@@ -231,6 +242,7 @@ class AwaitableGetNetworkLoadBalancerResult(GetNetworkLoadBalancerResult):
|
|
231
242
|
ip_addresses=self.ip_addresses,
|
232
243
|
is_preserve_source_destination=self.is_preserve_source_destination,
|
233
244
|
is_private=self.is_private,
|
245
|
+
is_symmetric_hash_enabled=self.is_symmetric_hash_enabled,
|
234
246
|
lifecycle_details=self.lifecycle_details,
|
235
247
|
network_load_balancer_id=self.network_load_balancer_id,
|
236
248
|
network_security_group_ids=self.network_security_group_ids,
|
@@ -278,6 +290,7 @@ def get_network_load_balancer(network_load_balancer_id: Optional[str] = None,
|
|
278
290
|
ip_addresses=pulumi.get(__ret__, 'ip_addresses'),
|
279
291
|
is_preserve_source_destination=pulumi.get(__ret__, 'is_preserve_source_destination'),
|
280
292
|
is_private=pulumi.get(__ret__, 'is_private'),
|
293
|
+
is_symmetric_hash_enabled=pulumi.get(__ret__, 'is_symmetric_hash_enabled'),
|
281
294
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
282
295
|
network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
|
283
296
|
network_security_group_ids=pulumi.get(__ret__, 'network_security_group_ids'),
|
@@ -25,7 +25,7 @@ class ListenerArgs:
|
|
25
25
|
:param pulumi.Input[str] default_backend_set_name: (Updatable) The name of the associated backend set. Example: `example_backend_set`
|
26
26
|
: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.
|
27
27
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
28
|
-
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
28
|
+
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
29
29
|
|
30
30
|
|
31
31
|
** IMPORTANT **
|
@@ -82,7 +82,7 @@ class ListenerArgs:
|
|
82
82
|
@pulumi.getter
|
83
83
|
def protocol(self) -> pulumi.Input[str]:
|
84
84
|
"""
|
85
|
-
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
85
|
+
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
86
86
|
|
87
87
|
|
88
88
|
** IMPORTANT **
|
@@ -135,7 +135,7 @@ class _ListenerState:
|
|
135
135
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
136
136
|
: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.
|
137
137
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
138
|
-
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
138
|
+
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
139
139
|
|
140
140
|
|
141
141
|
** IMPORTANT **
|
@@ -218,7 +218,7 @@ class _ListenerState:
|
|
218
218
|
@pulumi.getter
|
219
219
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
220
220
|
"""
|
221
|
-
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
221
|
+
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
222
222
|
|
223
223
|
|
224
224
|
** IMPORTANT **
|
@@ -279,7 +279,7 @@ class Listener(pulumi.CustomResource):
|
|
279
279
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
280
280
|
: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.
|
281
281
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
282
|
-
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
282
|
+
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
283
283
|
|
284
284
|
|
285
285
|
** IMPORTANT **
|
@@ -392,7 +392,7 @@ class Listener(pulumi.CustomResource):
|
|
392
392
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
393
393
|
: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.
|
394
394
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
395
|
-
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
395
|
+
:param pulumi.Input[str] protocol: (Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
396
396
|
|
397
397
|
|
398
398
|
** IMPORTANT **
|
@@ -454,7 +454,7 @@ class Listener(pulumi.CustomResource):
|
|
454
454
|
@pulumi.getter
|
455
455
|
def protocol(self) -> pulumi.Output[str]:
|
456
456
|
"""
|
457
|
-
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true).
|
457
|
+
(Updatable) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP with the wildcard port. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). "ListNetworkLoadBalancersProtocols" API is deprecated and it will not return the updated values. Use the allowed values for the protocol instead. Example: `TCP`
|
458
458
|
|
459
459
|
|
460
460
|
** IMPORTANT **
|
@@ -23,6 +23,7 @@ class NetworkLoadBalancerArgs:
|
|
23
23
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
24
24
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
25
25
|
is_private: Optional[pulumi.Input[bool]] = None,
|
26
|
+
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
26
27
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
27
28
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
28
29
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None):
|
@@ -44,9 +45,10 @@ class NetworkLoadBalancerArgs:
|
|
44
45
|
|
45
46
|
If "false", then the service assigns a public IP address to the network load balancer.
|
46
47
|
|
47
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
48
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
48
49
|
|
49
50
|
Example: `true`
|
51
|
+
: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.
|
50
52
|
: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.
|
51
53
|
|
52
54
|
During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
|
@@ -70,6 +72,8 @@ class NetworkLoadBalancerArgs:
|
|
70
72
|
pulumi.set(__self__, "is_preserve_source_destination", is_preserve_source_destination)
|
71
73
|
if is_private is not None:
|
72
74
|
pulumi.set(__self__, "is_private", is_private)
|
75
|
+
if is_symmetric_hash_enabled is not None:
|
76
|
+
pulumi.set(__self__, "is_symmetric_hash_enabled", is_symmetric_hash_enabled)
|
73
77
|
if network_security_group_ids is not None:
|
74
78
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
75
79
|
if nlb_ip_version is not None:
|
@@ -163,7 +167,7 @@ class NetworkLoadBalancerArgs:
|
|
163
167
|
|
164
168
|
If "false", then the service assigns a public IP address to the network load balancer.
|
165
169
|
|
166
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
170
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
167
171
|
|
168
172
|
Example: `true`
|
169
173
|
"""
|
@@ -173,6 +177,18 @@ class NetworkLoadBalancerArgs:
|
|
173
177
|
def is_private(self, value: Optional[pulumi.Input[bool]]):
|
174
178
|
pulumi.set(self, "is_private", value)
|
175
179
|
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="isSymmetricHashEnabled")
|
182
|
+
def is_symmetric_hash_enabled(self) -> Optional[pulumi.Input[bool]]:
|
183
|
+
"""
|
184
|
+
(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.
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "is_symmetric_hash_enabled")
|
187
|
+
|
188
|
+
@is_symmetric_hash_enabled.setter
|
189
|
+
def is_symmetric_hash_enabled(self, value: Optional[pulumi.Input[bool]]):
|
190
|
+
pulumi.set(self, "is_symmetric_hash_enabled", value)
|
191
|
+
|
176
192
|
@property
|
177
193
|
@pulumi.getter(name="networkSecurityGroupIds")
|
178
194
|
def network_security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -228,6 +244,7 @@ class _NetworkLoadBalancerState:
|
|
228
244
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressArgs']]]] = None,
|
229
245
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
230
246
|
is_private: Optional[pulumi.Input[bool]] = None,
|
247
|
+
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
231
248
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
232
249
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
233
250
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
@@ -251,9 +268,10 @@ class _NetworkLoadBalancerState:
|
|
251
268
|
|
252
269
|
If "false", then the service assigns a public IP address to the network load balancer.
|
253
270
|
|
254
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
271
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
255
272
|
|
256
273
|
Example: `true`
|
274
|
+
: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.
|
257
275
|
: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.
|
258
276
|
: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.
|
259
277
|
|
@@ -290,6 +308,8 @@ class _NetworkLoadBalancerState:
|
|
290
308
|
pulumi.set(__self__, "is_preserve_source_destination", is_preserve_source_destination)
|
291
309
|
if is_private is not None:
|
292
310
|
pulumi.set(__self__, "is_private", is_private)
|
311
|
+
if is_symmetric_hash_enabled is not None:
|
312
|
+
pulumi.set(__self__, "is_symmetric_hash_enabled", is_symmetric_hash_enabled)
|
293
313
|
if lifecycle_details is not None:
|
294
314
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
295
315
|
if network_security_group_ids is not None:
|
@@ -391,7 +411,7 @@ class _NetworkLoadBalancerState:
|
|
391
411
|
|
392
412
|
If "false", then the service assigns a public IP address to the network load balancer.
|
393
413
|
|
394
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
414
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
395
415
|
|
396
416
|
Example: `true`
|
397
417
|
"""
|
@@ -401,6 +421,18 @@ class _NetworkLoadBalancerState:
|
|
401
421
|
def is_private(self, value: Optional[pulumi.Input[bool]]):
|
402
422
|
pulumi.set(self, "is_private", value)
|
403
423
|
|
424
|
+
@property
|
425
|
+
@pulumi.getter(name="isSymmetricHashEnabled")
|
426
|
+
def is_symmetric_hash_enabled(self) -> Optional[pulumi.Input[bool]]:
|
427
|
+
"""
|
428
|
+
(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.
|
429
|
+
"""
|
430
|
+
return pulumi.get(self, "is_symmetric_hash_enabled")
|
431
|
+
|
432
|
+
@is_symmetric_hash_enabled.setter
|
433
|
+
def is_symmetric_hash_enabled(self, value: Optional[pulumi.Input[bool]]):
|
434
|
+
pulumi.set(self, "is_symmetric_hash_enabled", value)
|
435
|
+
|
404
436
|
@property
|
405
437
|
@pulumi.getter(name="lifecycleDetails")
|
406
438
|
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
@@ -533,6 +565,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
533
565
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
534
566
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
535
567
|
is_private: Optional[pulumi.Input[bool]] = None,
|
568
|
+
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
536
569
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
537
570
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
538
571
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]]] = None,
|
@@ -562,6 +595,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
562
595
|
},
|
563
596
|
is_preserve_source_destination=var["network_load_balancer_is_preserve_source_destination"],
|
564
597
|
is_private=var["network_load_balancer_is_private"],
|
598
|
+
is_symmetric_hash_enabled=var["network_load_balancer_is_symmetric_hash_enabled"],
|
565
599
|
network_security_group_ids=var["network_load_balancer_network_security_group_ids"],
|
566
600
|
nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
|
567
601
|
reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
|
@@ -591,9 +625,10 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
591
625
|
|
592
626
|
If "false", then the service assigns a public IP address to the network load balancer.
|
593
627
|
|
594
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
628
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
595
629
|
|
596
630
|
Example: `true`
|
631
|
+
: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.
|
597
632
|
: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.
|
598
633
|
|
599
634
|
During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
|
@@ -641,6 +676,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
641
676
|
},
|
642
677
|
is_preserve_source_destination=var["network_load_balancer_is_preserve_source_destination"],
|
643
678
|
is_private=var["network_load_balancer_is_private"],
|
679
|
+
is_symmetric_hash_enabled=var["network_load_balancer_is_symmetric_hash_enabled"],
|
644
680
|
network_security_group_ids=var["network_load_balancer_network_security_group_ids"],
|
645
681
|
nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
|
646
682
|
reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
|
@@ -678,6 +714,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
678
714
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
679
715
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
680
716
|
is_private: Optional[pulumi.Input[bool]] = None,
|
717
|
+
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
681
718
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
682
719
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
683
720
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]]] = None,
|
@@ -701,6 +738,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
701
738
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
702
739
|
__props__.__dict__["is_preserve_source_destination"] = is_preserve_source_destination
|
703
740
|
__props__.__dict__["is_private"] = is_private
|
741
|
+
__props__.__dict__["is_symmetric_hash_enabled"] = is_symmetric_hash_enabled
|
704
742
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
705
743
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
706
744
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
@@ -730,6 +768,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
730
768
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerIpAddressArgs']]]]] = None,
|
731
769
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
732
770
|
is_private: Optional[pulumi.Input[bool]] = None,
|
771
|
+
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
733
772
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
734
773
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
735
774
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
@@ -758,9 +797,10 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
758
797
|
|
759
798
|
If "false", then the service assigns a public IP address to the network load balancer.
|
760
799
|
|
761
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
800
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
762
801
|
|
763
802
|
Example: `true`
|
803
|
+
: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.
|
764
804
|
: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.
|
765
805
|
: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.
|
766
806
|
|
@@ -794,6 +834,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
794
834
|
__props__.__dict__["ip_addresses"] = ip_addresses
|
795
835
|
__props__.__dict__["is_preserve_source_destination"] = is_preserve_source_destination
|
796
836
|
__props__.__dict__["is_private"] = is_private
|
837
|
+
__props__.__dict__["is_symmetric_hash_enabled"] = is_symmetric_hash_enabled
|
797
838
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
798
839
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
799
840
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
@@ -863,12 +904,20 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
863
904
|
|
864
905
|
If "false", then the service assigns a public IP address to the network load balancer.
|
865
906
|
|
866
|
-
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/
|
907
|
+
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 [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
867
908
|
|
868
909
|
Example: `true`
|
869
910
|
"""
|
870
911
|
return pulumi.get(self, "is_private")
|
871
912
|
|
913
|
+
@property
|
914
|
+
@pulumi.getter(name="isSymmetricHashEnabled")
|
915
|
+
def is_symmetric_hash_enabled(self) -> pulumi.Output[bool]:
|
916
|
+
"""
|
917
|
+
(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.
|
918
|
+
"""
|
919
|
+
return pulumi.get(self, "is_symmetric_hash_enabled")
|
920
|
+
|
872
921
|
@property
|
873
922
|
@pulumi.getter(name="lifecycleDetails")
|
874
923
|
def lifecycle_details(self) -> pulumi.Output[str]:
|
@@ -25,7 +25,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
25
25
|
name: Optional[pulumi.Input[str]] = None):
|
26
26
|
"""
|
27
27
|
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/
|
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
29
|
:param pulumi.Input[str] network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
30
30
|
:param pulumi.Input[str] policy: (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``
|
31
31
|
|
@@ -57,7 +57,7 @@ class NetworkLoadBalancersBackendSetsUnifiedArgs:
|
|
57
57
|
@pulumi.getter(name="healthChecker")
|
58
58
|
def health_checker(self) -> pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']:
|
59
59
|
"""
|
60
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
60
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
61
61
|
"""
|
62
62
|
return pulumi.get(self, "health_checker")
|
63
63
|
|
@@ -159,7 +159,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
159
159
|
"""
|
160
160
|
Input properties used for looking up and filtering NetworkLoadBalancersBackendSetsUnified resources.
|
161
161
|
: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/
|
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).
|
163
163
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
164
164
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
165
165
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -205,7 +205,7 @@ class _NetworkLoadBalancersBackendSetsUnifiedState:
|
|
205
205
|
@pulumi.getter(name="healthChecker")
|
206
206
|
def health_checker(self) -> Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs']]:
|
207
207
|
"""
|
208
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
208
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
209
209
|
"""
|
210
210
|
return pulumi.get(self, "health_checker")
|
211
211
|
|
@@ -348,7 +348,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
348
348
|
:param str resource_name: The name of the resource.
|
349
349
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
350
350
|
: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/
|
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).
|
352
352
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
353
353
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
354
354
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -488,7 +488,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
488
488
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
489
489
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
490
490
|
: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/
|
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).
|
492
492
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
493
493
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
494
494
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
@@ -528,7 +528,7 @@ class NetworkLoadBalancersBackendSetsUnified(pulumi.CustomResource):
|
|
528
528
|
@pulumi.getter(name="healthChecker")
|
529
529
|
def health_checker(self) -> pulumi.Output['outputs.NetworkLoadBalancersBackendSetsUnifiedHealthChecker']:
|
530
530
|
"""
|
531
|
-
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
531
|
+
(Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/HealthCheckPolicies/health-check-policy-management.htm).
|
532
532
|
"""
|
533
533
|
return pulumi.get(self, "health_checker")
|
534
534
|
|