pulumi-oci 1.34.0a1714766740__py3-none-any.whl → 1.35.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,6 +28,7 @@ __all__ = [
28
28
  'PathRouteSetPathRoutePathMatchType',
29
29
  'RuleSetItem',
30
30
  'RuleSetItemCondition',
31
+ 'RuleSetItemIpMaxConnection',
31
32
  'RuleSetItemRedirectUri',
32
33
  'GetBackendHealthHealthCheckResultResult',
33
34
  'GetBackendSetsBackendsetResult',
@@ -47,6 +48,7 @@ __all__ = [
47
48
  'GetListenerRulesListenerRuleResult',
48
49
  'GetListenerRulesListenerRuleRuleResult',
49
50
  'GetListenerRulesListenerRuleRuleConditionResult',
51
+ 'GetListenerRulesListenerRuleRuleIpMaxConnectionResult',
50
52
  'GetListenerRulesListenerRuleRuleRedirectUriResult',
51
53
  'GetLoadBalancerRoutingPoliciesFilterResult',
52
54
  'GetLoadBalancerRoutingPoliciesRoutingPolicyResult',
@@ -70,11 +72,13 @@ __all__ = [
70
72
  'GetProtocolsProtocolResult',
71
73
  'GetRuleSetItemResult',
72
74
  'GetRuleSetItemConditionResult',
75
+ 'GetRuleSetItemIpMaxConnectionResult',
73
76
  'GetRuleSetItemRedirectUriResult',
74
77
  'GetRuleSetsFilterResult',
75
78
  'GetRuleSetsRuleSetResult',
76
79
  'GetRuleSetsRuleSetItemResult',
77
80
  'GetRuleSetsRuleSetItemConditionResult',
81
+ 'GetRuleSetsRuleSetItemIpMaxConnectionResult',
78
82
  'GetRuleSetsRuleSetItemRedirectUriResult',
79
83
  'GetShapesFilterResult',
80
84
  'GetShapesShapeResult',
@@ -89,6 +93,8 @@ class BackendSetBackend(dict):
89
93
  suggest = None
90
94
  if key == "ipAddress":
91
95
  suggest = "ip_address"
96
+ elif key == "maxConnections":
97
+ suggest = "max_connections"
92
98
 
93
99
  if suggest:
94
100
  pulumi.log.warn(f"Key '{key}' not found in BackendSetBackend. Access the value via the '{suggest}' property getter instead.")
@@ -106,21 +112,27 @@ class BackendSetBackend(dict):
106
112
  port: int,
107
113
  backup: Optional[bool] = None,
108
114
  drain: Optional[bool] = None,
115
+ max_connections: Optional[int] = None,
109
116
  name: Optional[str] = None,
110
117
  offline: Optional[bool] = None,
111
118
  weight: Optional[int] = None):
112
119
  """
113
- :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
120
+ :param str ip_address: (Updatable) The IP address of the backend server. Example: `10.0.0.3`
114
121
  :param int port: (Updatable) The backend server port against which to run the health check. If the port is not specified, the load balancer uses the port information from the `Backend` object. Example: `8080`
115
- :param bool backup: Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
116
- :param bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
122
+ :param bool backup: (Updatable) Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
123
+
124
+ **Note:** You cannot add a backend server marked as `backup` to a backend set that uses the IP Hash policy.
125
+
126
+ Example: `false`
127
+ :param bool drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
128
+ :param int max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
117
129
  :param str name: A friendly name for the backend set. It must be unique and it cannot be changed.
118
130
 
119
131
  Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
120
132
 
121
133
  Example: `example_backend_set`
122
- :param bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
123
- :param int weight: The 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 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
134
+ :param bool offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
135
+ :param int weight: (Updatable) The 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 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
124
136
  """
125
137
  pulumi.set(__self__, "ip_address", ip_address)
126
138
  pulumi.set(__self__, "port", port)
@@ -128,6 +140,8 @@ class BackendSetBackend(dict):
128
140
  pulumi.set(__self__, "backup", backup)
129
141
  if drain is not None:
130
142
  pulumi.set(__self__, "drain", drain)
143
+ if max_connections is not None:
144
+ pulumi.set(__self__, "max_connections", max_connections)
131
145
  if name is not None:
132
146
  pulumi.set(__self__, "name", name)
133
147
  if offline is not None:
@@ -139,7 +153,7 @@ class BackendSetBackend(dict):
139
153
  @pulumi.getter(name="ipAddress")
140
154
  def ip_address(self) -> str:
141
155
  """
142
- The IP address of the backend server. Example: `10.0.0.3`
156
+ (Updatable) The IP address of the backend server. Example: `10.0.0.3`
143
157
  """
144
158
  return pulumi.get(self, "ip_address")
145
159
 
@@ -155,7 +169,11 @@ class BackendSetBackend(dict):
155
169
  @pulumi.getter
156
170
  def backup(self) -> Optional[bool]:
157
171
  """
158
- Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
172
+ (Updatable) Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
173
+
174
+ **Note:** You cannot add a backend server marked as `backup` to a backend set that uses the IP Hash policy.
175
+
176
+ Example: `false`
159
177
  """
160
178
  return pulumi.get(self, "backup")
161
179
 
@@ -163,10 +181,18 @@ class BackendSetBackend(dict):
163
181
  @pulumi.getter
164
182
  def drain(self) -> Optional[bool]:
165
183
  """
166
- Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
184
+ (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
167
185
  """
168
186
  return pulumi.get(self, "drain")
169
187
 
188
+ @property
189
+ @pulumi.getter(name="maxConnections")
190
+ def max_connections(self) -> Optional[int]:
191
+ """
192
+ (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
193
+ """
194
+ return pulumi.get(self, "max_connections")
195
+
170
196
  @property
171
197
  @pulumi.getter
172
198
  def name(self) -> Optional[str]:
@@ -183,7 +209,7 @@ class BackendSetBackend(dict):
183
209
  @pulumi.getter
184
210
  def offline(self) -> Optional[bool]:
185
211
  """
186
- Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
212
+ (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
187
213
  """
188
214
  return pulumi.get(self, "offline")
189
215
 
@@ -191,7 +217,7 @@ class BackendSetBackend(dict):
191
217
  @pulumi.getter
192
218
  def weight(self) -> Optional[int]:
193
219
  """
194
- The 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 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
220
+ (Updatable) The 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 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
195
221
  """
196
222
  return pulumi.get(self, "weight")
197
223
 
@@ -1059,7 +1085,6 @@ class LoadBalancerIpAddressDetail(dict):
1059
1085
  """
1060
1086
  :param str ip_address: An IP address. Example: `192.168.0.3`
1061
1087
  :param bool is_public: Whether the IP address is public or private.
1062
- :param Sequence['LoadBalancerIpAddressDetailReservedIpArgs'] reserved_ips: Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
1063
1088
  """
1064
1089
  if ip_address is not None:
1065
1090
  pulumi.set(__self__, "ip_address", ip_address)
@@ -1087,9 +1112,6 @@ class LoadBalancerIpAddressDetail(dict):
1087
1112
  @property
1088
1113
  @pulumi.getter(name="reservedIps")
1089
1114
  def reserved_ips(self) -> Optional[Sequence['outputs.LoadBalancerIpAddressDetailReservedIp']]:
1090
- """
1091
- Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
1092
- """
1093
1115
  return pulumi.get(self, "reserved_ips")
1094
1116
 
1095
1117
 
@@ -1098,7 +1120,15 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
1098
1120
  def __init__(__self__, *,
1099
1121
  id: Optional[str] = None):
1100
1122
  """
1101
- :param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1123
+ :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
1124
+
1125
+ Reserved IPs are IPs which already registered using VCN API.
1126
+
1127
+ Create a reserved Public IP and then while creating the load balancer pass the ocid of the reserved IP in this field reservedIp to attach the Ip to Load balancer. Load balancer will be configured to listen to traffic on this IP.
1128
+
1129
+ Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
1130
+
1131
+ Example: "ocid1.publicip.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1102
1132
  """
1103
1133
  if id is not None:
1104
1134
  pulumi.set(__self__, "id", id)
@@ -1107,7 +1137,15 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
1107
1137
  @pulumi.getter
1108
1138
  def id(self) -> Optional[str]:
1109
1139
  """
1110
- Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1140
+ Ocid of the Reserved IP/Public Ip created with VCN.
1141
+
1142
+ Reserved IPs are IPs which already registered using VCN API.
1143
+
1144
+ Create a reserved Public IP and then while creating the load balancer pass the ocid of the reserved IP in this field reservedIp to attach the Ip to Load balancer. Load balancer will be configured to listen to traffic on this IP.
1145
+
1146
+ Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
1147
+
1148
+ Example: "ocid1.publicip.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1111
1149
  """
1112
1150
  return pulumi.get(self, "id")
1113
1151
 
@@ -1117,7 +1155,15 @@ class LoadBalancerReservedIp(dict):
1117
1155
  def __init__(__self__, *,
1118
1156
  id: Optional[str] = None):
1119
1157
  """
1120
- :param str id: Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1158
+ :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
1159
+
1160
+ Reserved IPs are IPs which already registered using VCN API.
1161
+
1162
+ Create a reserved Public IP and then while creating the load balancer pass the ocid of the reserved IP in this field reservedIp to attach the Ip to Load balancer. Load balancer will be configured to listen to traffic on this IP.
1163
+
1164
+ Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
1165
+
1166
+ Example: "ocid1.publicip.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1121
1167
  """
1122
1168
  if id is not None:
1123
1169
  pulumi.set(__self__, "id", id)
@@ -1126,7 +1172,15 @@ class LoadBalancerReservedIp(dict):
1126
1172
  @pulumi.getter
1127
1173
  def id(self) -> Optional[str]:
1128
1174
  """
1129
- Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1175
+ Ocid of the Reserved IP/Public Ip created with VCN.
1176
+
1177
+ Reserved IPs are IPs which already registered using VCN API.
1178
+
1179
+ Create a reserved Public IP and then while creating the load balancer pass the ocid of the reserved IP in this field reservedIp to attach the Ip to Load balancer. Load balancer will be configured to listen to traffic on this IP.
1180
+
1181
+ Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
1182
+
1183
+ Example: "ocid1.publicip.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
1130
1184
  """
1131
1185
  return pulumi.get(self, "id")
1132
1186
 
@@ -1422,8 +1476,12 @@ class RuleSetItem(dict):
1422
1476
  suggest = "allowed_methods"
1423
1477
  elif key == "areInvalidCharactersAllowed":
1424
1478
  suggest = "are_invalid_characters_allowed"
1479
+ elif key == "defaultMaxConnections":
1480
+ suggest = "default_max_connections"
1425
1481
  elif key == "httpLargeHeaderSizeInKb":
1426
1482
  suggest = "http_large_header_size_in_kb"
1483
+ elif key == "ipMaxConnections":
1484
+ suggest = "ip_max_connections"
1427
1485
  elif key == "redirectUri":
1428
1486
  suggest = "redirect_uri"
1429
1487
  elif key == "responseCode":
@@ -1447,9 +1505,11 @@ class RuleSetItem(dict):
1447
1505
  allowed_methods: Optional[Sequence[str]] = None,
1448
1506
  are_invalid_characters_allowed: Optional[bool] = None,
1449
1507
  conditions: Optional[Sequence['outputs.RuleSetItemCondition']] = None,
1508
+ default_max_connections: Optional[int] = None,
1450
1509
  description: Optional[str] = None,
1451
1510
  header: Optional[str] = None,
1452
1511
  http_large_header_size_in_kb: Optional[int] = None,
1512
+ ip_max_connections: Optional[Sequence['outputs.RuleSetItemIpMaxConnection']] = None,
1453
1513
  prefix: Optional[str] = None,
1454
1514
  redirect_uri: Optional['outputs.RuleSetItemRedirectUri'] = None,
1455
1515
  response_code: Optional[int] = None,
@@ -1457,7 +1517,7 @@ class RuleSetItem(dict):
1457
1517
  suffix: Optional[str] = None,
1458
1518
  value: Optional[str] = None):
1459
1519
  """
1460
- :param str action: (Updatable) The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
1520
+ :param str action: (Updatable) The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
1461
1521
  :param Sequence[str] allowed_methods: (Updatable) The list of HTTP methods allowed for this listener.
1462
1522
 
1463
1523
  By default, you can specify only the standard HTTP methods defined in the [HTTP Method Registry](http://www.iana.org/assignments/http-methods/http-methods.xhtml). You can also see a list of supported standard HTTP methods in the Load Balancing service documentation at [Managing Rule Sets](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/managingrulesets.htm).
@@ -1469,11 +1529,13 @@ class RuleSetItem(dict):
1469
1529
  Example: ["GET", "PUT", "POST", "PROPFIND"]
1470
1530
  :param bool are_invalid_characters_allowed: (Updatable) Indicates whether or not invalid characters in client header fields will be allowed. Valid names are composed of English letters, digits, hyphens and underscores. If "true", invalid characters are allowed in the HTTP header. If "false", invalid characters are not allowed in the HTTP header
1471
1531
  :param Sequence['RuleSetItemConditionArgs'] conditions: (Updatable)
1532
+ :param int default_max_connections: (Updatable) The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
1472
1533
  :param str description: (Updatable) A brief description of the access control rule. Avoid entering confidential information.
1473
1534
 
1474
1535
  example: `192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.`
1475
1536
  :param str header: (Updatable) A header name that conforms to RFC 7230. Example: `example_header_name`
1476
1537
  :param int http_large_header_size_in_kb: (Updatable) The maximum size of each buffer used for reading http client request header. This value indicates the maximum size allowed for each buffer. The allowed values for buffer size are 8, 16, 32 and 64.
1538
+ :param Sequence['RuleSetItemIpMaxConnectionArgs'] ip_max_connections: (Updatable) An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
1477
1539
  :param str prefix: (Updatable) A string to prepend to the header value. The resulting header value must still conform to RFC 7230. With the following exceptions:
1478
1540
  * value cannot contain `$`
1479
1541
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -1534,12 +1596,16 @@ class RuleSetItem(dict):
1534
1596
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
1535
1597
  if conditions is not None:
1536
1598
  pulumi.set(__self__, "conditions", conditions)
1599
+ if default_max_connections is not None:
1600
+ pulumi.set(__self__, "default_max_connections", default_max_connections)
1537
1601
  if description is not None:
1538
1602
  pulumi.set(__self__, "description", description)
1539
1603
  if header is not None:
1540
1604
  pulumi.set(__self__, "header", header)
1541
1605
  if http_large_header_size_in_kb is not None:
1542
1606
  pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
1607
+ if ip_max_connections is not None:
1608
+ pulumi.set(__self__, "ip_max_connections", ip_max_connections)
1543
1609
  if prefix is not None:
1544
1610
  pulumi.set(__self__, "prefix", prefix)
1545
1611
  if redirect_uri is not None:
@@ -1557,7 +1623,7 @@ class RuleSetItem(dict):
1557
1623
  @pulumi.getter
1558
1624
  def action(self) -> str:
1559
1625
  """
1560
- (Updatable) The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
1626
+ (Updatable) The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
1561
1627
  """
1562
1628
  return pulumi.get(self, "action")
1563
1629
 
@@ -1593,6 +1659,14 @@ class RuleSetItem(dict):
1593
1659
  """
1594
1660
  return pulumi.get(self, "conditions")
1595
1661
 
1662
+ @property
1663
+ @pulumi.getter(name="defaultMaxConnections")
1664
+ def default_max_connections(self) -> Optional[int]:
1665
+ """
1666
+ (Updatable) The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
1667
+ """
1668
+ return pulumi.get(self, "default_max_connections")
1669
+
1596
1670
  @property
1597
1671
  @pulumi.getter
1598
1672
  def description(self) -> Optional[str]:
@@ -1619,6 +1693,14 @@ class RuleSetItem(dict):
1619
1693
  """
1620
1694
  return pulumi.get(self, "http_large_header_size_in_kb")
1621
1695
 
1696
+ @property
1697
+ @pulumi.getter(name="ipMaxConnections")
1698
+ def ip_max_connections(self) -> Optional[Sequence['outputs.RuleSetItemIpMaxConnection']]:
1699
+ """
1700
+ (Updatable) An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
1701
+ """
1702
+ return pulumi.get(self, "ip_max_connections")
1703
+
1622
1704
  @property
1623
1705
  @pulumi.getter
1624
1706
  def prefix(self) -> Optional[str]:
@@ -1788,6 +1870,56 @@ class RuleSetItemCondition(dict):
1788
1870
  return pulumi.get(self, "operator")
1789
1871
 
1790
1872
 
1873
+ @pulumi.output_type
1874
+ class RuleSetItemIpMaxConnection(dict):
1875
+ @staticmethod
1876
+ def __key_warning(key: str):
1877
+ suggest = None
1878
+ if key == "ipAddresses":
1879
+ suggest = "ip_addresses"
1880
+ elif key == "maxConnections":
1881
+ suggest = "max_connections"
1882
+
1883
+ if suggest:
1884
+ pulumi.log.warn(f"Key '{key}' not found in RuleSetItemIpMaxConnection. Access the value via the '{suggest}' property getter instead.")
1885
+
1886
+ def __getitem__(self, key: str) -> Any:
1887
+ RuleSetItemIpMaxConnection.__key_warning(key)
1888
+ return super().__getitem__(key)
1889
+
1890
+ def get(self, key: str, default = None) -> Any:
1891
+ RuleSetItemIpMaxConnection.__key_warning(key)
1892
+ return super().get(key, default)
1893
+
1894
+ def __init__(__self__, *,
1895
+ ip_addresses: Optional[Sequence[str]] = None,
1896
+ max_connections: Optional[int] = None):
1897
+ """
1898
+ :param Sequence[str] ip_addresses: (Updatable) Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
1899
+ :param int max_connections: (Updatable) The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
1900
+ """
1901
+ if ip_addresses is not None:
1902
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
1903
+ if max_connections is not None:
1904
+ pulumi.set(__self__, "max_connections", max_connections)
1905
+
1906
+ @property
1907
+ @pulumi.getter(name="ipAddresses")
1908
+ def ip_addresses(self) -> Optional[Sequence[str]]:
1909
+ """
1910
+ (Updatable) Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
1911
+ """
1912
+ return pulumi.get(self, "ip_addresses")
1913
+
1914
+ @property
1915
+ @pulumi.getter(name="maxConnections")
1916
+ def max_connections(self) -> Optional[int]:
1917
+ """
1918
+ (Updatable) The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
1919
+ """
1920
+ return pulumi.get(self, "max_connections")
1921
+
1922
+
1791
1923
  @pulumi.output_type
1792
1924
  class RuleSetItemRedirectUri(dict):
1793
1925
  def __init__(__self__, *,
@@ -2025,6 +2157,7 @@ class GetBackendHealthHealthCheckResultResult(dict):
2025
2157
  @pulumi.output_type
2026
2158
  class GetBackendSetsBackendsetResult(dict):
2027
2159
  def __init__(__self__, *,
2160
+ backend_max_connections: int,
2028
2161
  backends: Sequence['outputs.GetBackendSetsBackendsetBackendResult'],
2029
2162
  health_checkers: Sequence['outputs.GetBackendSetsBackendsetHealthCheckerResult'],
2030
2163
  id: str,
@@ -2036,6 +2169,7 @@ class GetBackendSetsBackendsetResult(dict):
2036
2169
  ssl_configurations: Sequence['outputs.GetBackendSetsBackendsetSslConfigurationResult'],
2037
2170
  state: str):
2038
2171
  """
2172
+ :param int backend_max_connections: The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
2039
2173
  :param Sequence['GetBackendSetsBackendsetHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
2040
2174
  :param Sequence['GetBackendSetsBackendsetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configurations: The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
2041
2175
  :param str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend sets to retrieve.
@@ -2044,6 +2178,7 @@ class GetBackendSetsBackendsetResult(dict):
2044
2178
  :param Sequence['GetBackendSetsBackendsetSessionPersistenceConfigurationArgs'] session_persistence_configurations: The configuration details for implementing session persistence based on a user-specified cookie name (application cookie stickiness).
2045
2179
  :param Sequence['GetBackendSetsBackendsetSslConfigurationArgs'] ssl_configurations: A listener's SSL handling configuration.
2046
2180
  """
2181
+ pulumi.set(__self__, "backend_max_connections", backend_max_connections)
2047
2182
  pulumi.set(__self__, "backends", backends)
2048
2183
  pulumi.set(__self__, "health_checkers", health_checkers)
2049
2184
  pulumi.set(__self__, "id", id)
@@ -2055,6 +2190,14 @@ class GetBackendSetsBackendsetResult(dict):
2055
2190
  pulumi.set(__self__, "ssl_configurations", ssl_configurations)
2056
2191
  pulumi.set(__self__, "state", state)
2057
2192
 
2193
+ @property
2194
+ @pulumi.getter(name="backendMaxConnections")
2195
+ def backend_max_connections(self) -> int:
2196
+ """
2197
+ The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited. Example: `300`
2198
+ """
2199
+ return pulumi.get(self, "backend_max_connections")
2200
+
2058
2201
  @property
2059
2202
  @pulumi.getter
2060
2203
  def backends(self) -> Sequence['outputs.GetBackendSetsBackendsetBackendResult']:
@@ -2133,6 +2276,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
2133
2276
  backup: bool,
2134
2277
  drain: bool,
2135
2278
  ip_address: str,
2279
+ max_connections: int,
2136
2280
  name: str,
2137
2281
  offline: bool,
2138
2282
  port: int,
@@ -2141,6 +2285,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
2141
2285
  :param bool backup: Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
2142
2286
  :param bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
2143
2287
  :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
2288
+ :param int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
2144
2289
  :param str name: A friendly name for the backend set. It must be unique and it cannot be changed.
2145
2290
  :param bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
2146
2291
  :param int port: The backend server port against which to run the health check. If the port is not specified, the load balancer uses the port information from the `Backend` object. Example: `8080`
@@ -2149,6 +2294,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
2149
2294
  pulumi.set(__self__, "backup", backup)
2150
2295
  pulumi.set(__self__, "drain", drain)
2151
2296
  pulumi.set(__self__, "ip_address", ip_address)
2297
+ pulumi.set(__self__, "max_connections", max_connections)
2152
2298
  pulumi.set(__self__, "name", name)
2153
2299
  pulumi.set(__self__, "offline", offline)
2154
2300
  pulumi.set(__self__, "port", port)
@@ -2178,6 +2324,14 @@ class GetBackendSetsBackendsetBackendResult(dict):
2178
2324
  """
2179
2325
  return pulumi.get(self, "ip_address")
2180
2326
 
2327
+ @property
2328
+ @pulumi.getter(name="maxConnections")
2329
+ def max_connections(self) -> int:
2330
+ """
2331
+ The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
2332
+ """
2333
+ return pulumi.get(self, "max_connections")
2334
+
2181
2335
  @property
2182
2336
  @pulumi.getter
2183
2337
  def name(self) -> str:
@@ -2565,6 +2719,7 @@ class GetBackendsBackendResult(dict):
2565
2719
  drain: bool,
2566
2720
  ip_address: str,
2567
2721
  load_balancer_id: str,
2722
+ max_connections: int,
2568
2723
  name: str,
2569
2724
  offline: bool,
2570
2725
  port: int,
@@ -2576,6 +2731,7 @@ class GetBackendsBackendResult(dict):
2576
2731
  :param bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
2577
2732
  :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
2578
2733
  :param str load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend set and servers.
2734
+ :param int max_connections: The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
2579
2735
  :param str name: A read-only field showing the IP address and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`
2580
2736
  :param bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
2581
2737
  :param int port: The communication port for the backend server. Example: `8080`
@@ -2586,6 +2742,7 @@ class GetBackendsBackendResult(dict):
2586
2742
  pulumi.set(__self__, "drain", drain)
2587
2743
  pulumi.set(__self__, "ip_address", ip_address)
2588
2744
  pulumi.set(__self__, "load_balancer_id", load_balancer_id)
2745
+ pulumi.set(__self__, "max_connections", max_connections)
2589
2746
  pulumi.set(__self__, "name", name)
2590
2747
  pulumi.set(__self__, "offline", offline)
2591
2748
  pulumi.set(__self__, "port", port)
@@ -2626,6 +2783,14 @@ class GetBackendsBackendResult(dict):
2626
2783
  """
2627
2784
  return pulumi.get(self, "load_balancer_id")
2628
2785
 
2786
+ @property
2787
+ @pulumi.getter(name="maxConnections")
2788
+ def max_connections(self) -> int:
2789
+ """
2790
+ The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
2791
+ """
2792
+ return pulumi.get(self, "max_connections")
2793
+
2629
2794
  @property
2630
2795
  @pulumi.getter
2631
2796
  def name(self) -> str:
@@ -2961,9 +3126,11 @@ class GetListenerRulesListenerRuleRuleResult(dict):
2961
3126
  allowed_methods: Sequence[str],
2962
3127
  are_invalid_characters_allowed: bool,
2963
3128
  conditions: Sequence['outputs.GetListenerRulesListenerRuleRuleConditionResult'],
3129
+ default_max_connections: int,
2964
3130
  description: str,
2965
3131
  header: str,
2966
3132
  http_large_header_size_in_kb: int,
3133
+ ip_max_connections: Sequence['outputs.GetListenerRulesListenerRuleRuleIpMaxConnectionResult'],
2967
3134
  prefix: str,
2968
3135
  redirect_uris: Sequence['outputs.GetListenerRulesListenerRuleRuleRedirectUriResult'],
2969
3136
  response_code: int,
@@ -2971,12 +3138,14 @@ class GetListenerRulesListenerRuleRuleResult(dict):
2971
3138
  suffix: str,
2972
3139
  value: str):
2973
3140
  """
2974
- :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
3141
+ :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
2975
3142
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
2976
3143
  :param bool are_invalid_characters_allowed: Indicates whether or not invalid characters in client header fields will be allowed. Valid names are composed of English letters, digits, hyphens and underscores. If "true", invalid characters are allowed in the HTTP header. If "false", invalid characters are not allowed in the HTTP header
3144
+ :param int default_max_connections: The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
2977
3145
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
2978
3146
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
2979
3147
  :param int http_large_header_size_in_kb: The maximum size of each buffer used for reading http client request header. This value indicates the maximum size allowed for each buffer. The allowed values for buffer size are 8, 16, 32 and 64.
3148
+ :param Sequence['GetListenerRulesListenerRuleRuleIpMaxConnectionArgs'] ip_max_connections: An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
2980
3149
  :param str prefix: A string to prepend to the header value. The resulting header value must still conform to RFC 7230. With the following exceptions:
2981
3150
  * value cannot contain `$`
2982
3151
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -2994,9 +3163,11 @@ class GetListenerRulesListenerRuleRuleResult(dict):
2994
3163
  pulumi.set(__self__, "allowed_methods", allowed_methods)
2995
3164
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
2996
3165
  pulumi.set(__self__, "conditions", conditions)
3166
+ pulumi.set(__self__, "default_max_connections", default_max_connections)
2997
3167
  pulumi.set(__self__, "description", description)
2998
3168
  pulumi.set(__self__, "header", header)
2999
3169
  pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
3170
+ pulumi.set(__self__, "ip_max_connections", ip_max_connections)
3000
3171
  pulumi.set(__self__, "prefix", prefix)
3001
3172
  pulumi.set(__self__, "redirect_uris", redirect_uris)
3002
3173
  pulumi.set(__self__, "response_code", response_code)
@@ -3008,7 +3179,7 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3008
3179
  @pulumi.getter
3009
3180
  def action(self) -> str:
3010
3181
  """
3011
- The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
3182
+ The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
3012
3183
  """
3013
3184
  return pulumi.get(self, "action")
3014
3185
 
@@ -3033,6 +3204,14 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3033
3204
  def conditions(self) -> Sequence['outputs.GetListenerRulesListenerRuleRuleConditionResult']:
3034
3205
  return pulumi.get(self, "conditions")
3035
3206
 
3207
+ @property
3208
+ @pulumi.getter(name="defaultMaxConnections")
3209
+ def default_max_connections(self) -> int:
3210
+ """
3211
+ The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
3212
+ """
3213
+ return pulumi.get(self, "default_max_connections")
3214
+
3036
3215
  @property
3037
3216
  @pulumi.getter
3038
3217
  def description(self) -> str:
@@ -3057,6 +3236,14 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3057
3236
  """
3058
3237
  return pulumi.get(self, "http_large_header_size_in_kb")
3059
3238
 
3239
+ @property
3240
+ @pulumi.getter(name="ipMaxConnections")
3241
+ def ip_max_connections(self) -> Sequence['outputs.GetListenerRulesListenerRuleRuleIpMaxConnectionResult']:
3242
+ """
3243
+ An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
3244
+ """
3245
+ return pulumi.get(self, "ip_max_connections")
3246
+
3060
3247
  @property
3061
3248
  @pulumi.getter
3062
3249
  def prefix(self) -> str:
@@ -3160,6 +3347,35 @@ class GetListenerRulesListenerRuleRuleConditionResult(dict):
3160
3347
  return pulumi.get(self, "operator")
3161
3348
 
3162
3349
 
3350
+ @pulumi.output_type
3351
+ class GetListenerRulesListenerRuleRuleIpMaxConnectionResult(dict):
3352
+ def __init__(__self__, *,
3353
+ ip_addresses: Sequence[str],
3354
+ max_connections: int):
3355
+ """
3356
+ :param Sequence[str] ip_addresses: Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
3357
+ :param int max_connections: The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
3358
+ """
3359
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
3360
+ pulumi.set(__self__, "max_connections", max_connections)
3361
+
3362
+ @property
3363
+ @pulumi.getter(name="ipAddresses")
3364
+ def ip_addresses(self) -> Sequence[str]:
3365
+ """
3366
+ Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
3367
+ """
3368
+ return pulumi.get(self, "ip_addresses")
3369
+
3370
+ @property
3371
+ @pulumi.getter(name="maxConnections")
3372
+ def max_connections(self) -> int:
3373
+ """
3374
+ The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
3375
+ """
3376
+ return pulumi.get(self, "max_connections")
3377
+
3378
+
3163
3379
  @pulumi.output_type
3164
3380
  class GetListenerRulesListenerRuleRuleRedirectUriResult(dict):
3165
3381
  def __init__(__self__, *,
@@ -3495,6 +3711,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3495
3711
  ip_address_details: Sequence['outputs.GetLoadBalancersLoadBalancerIpAddressDetailResult'],
3496
3712
  ip_addresses: Sequence[str],
3497
3713
  ip_mode: str,
3714
+ is_delete_protection_enabled: bool,
3498
3715
  is_private: bool,
3499
3716
  network_security_group_ids: Sequence[str],
3500
3717
  reserved_ips: Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult'],
@@ -3509,9 +3726,10 @@ class GetLoadBalancersLoadBalancerResult(dict):
3509
3726
  :param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
3510
3727
  :param str display_name: A filter to return only resources that match the given display name exactly. Example: `example_load_balancer`
3511
3728
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
3512
- :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3729
+ :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3513
3730
  :param Sequence['GetLoadBalancersLoadBalancerIpAddressDetailArgs'] ip_address_details: An array of IP addresses.
3514
3731
  :param Sequence[str] ip_addresses: An array of IP addresses. Deprecated: use ip_address_details instead.
3732
+ :param bool is_delete_protection_enabled: Whether or not the load balancer has delete protection enabled.
3515
3733
  :param bool is_private: Whether the load balancer has a VCN-local (private) IP address.
3516
3734
  :param Sequence[str] network_security_group_ids: An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the load balancer.
3517
3735
  :param str shape: A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `100Mbps`
@@ -3529,6 +3747,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3529
3747
  pulumi.set(__self__, "ip_address_details", ip_address_details)
3530
3748
  pulumi.set(__self__, "ip_addresses", ip_addresses)
3531
3749
  pulumi.set(__self__, "ip_mode", ip_mode)
3750
+ pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
3532
3751
  pulumi.set(__self__, "is_private", is_private)
3533
3752
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
3534
3753
  pulumi.set(__self__, "reserved_ips", reserved_ips)
@@ -3575,7 +3794,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3575
3794
  @pulumi.getter
3576
3795
  def id(self) -> str:
3577
3796
  """
3578
- Ocid of the pre-created public IP. That should be attahed to this load balancer.
3797
+ Ocid of the Reserved IP/Public Ip created with VCN.
3579
3798
  """
3580
3799
  return pulumi.get(self, "id")
3581
3800
 
@@ -3603,6 +3822,14 @@ class GetLoadBalancersLoadBalancerResult(dict):
3603
3822
  def ip_mode(self) -> str:
3604
3823
  return pulumi.get(self, "ip_mode")
3605
3824
 
3825
+ @property
3826
+ @pulumi.getter(name="isDeleteProtectionEnabled")
3827
+ def is_delete_protection_enabled(self) -> bool:
3828
+ """
3829
+ Whether or not the load balancer has delete protection enabled.
3830
+ """
3831
+ return pulumi.get(self, "is_delete_protection_enabled")
3832
+
3606
3833
  @property
3607
3834
  @pulumi.getter(name="isPrivate")
3608
3835
  def is_private(self) -> bool:
@@ -3682,7 +3909,6 @@ class GetLoadBalancersLoadBalancerIpAddressDetailResult(dict):
3682
3909
  """
3683
3910
  :param str ip_address: An IP address. Example: `192.168.0.3`
3684
3911
  :param bool is_public: Whether the IP address is public or private.
3685
- :param Sequence['GetLoadBalancersLoadBalancerIpAddressDetailReservedIpArgs'] reserved_ips: Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
3686
3912
  """
3687
3913
  pulumi.set(__self__, "ip_address", ip_address)
3688
3914
  pulumi.set(__self__, "is_public", is_public)
@@ -3707,9 +3933,6 @@ class GetLoadBalancersLoadBalancerIpAddressDetailResult(dict):
3707
3933
  @property
3708
3934
  @pulumi.getter(name="reservedIps")
3709
3935
  def reserved_ips(self) -> Sequence['outputs.GetLoadBalancersLoadBalancerIpAddressDetailReservedIpResult']:
3710
- """
3711
- Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
3712
- """
3713
3936
  return pulumi.get(self, "reserved_ips")
3714
3937
 
3715
3938
 
@@ -3718,7 +3941,7 @@ class GetLoadBalancersLoadBalancerIpAddressDetailReservedIpResult(dict):
3718
3941
  def __init__(__self__, *,
3719
3942
  id: str):
3720
3943
  """
3721
- :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3944
+ :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3722
3945
  """
3723
3946
  pulumi.set(__self__, "id", id)
3724
3947
 
@@ -3726,7 +3949,7 @@ class GetLoadBalancersLoadBalancerIpAddressDetailReservedIpResult(dict):
3726
3949
  @pulumi.getter
3727
3950
  def id(self) -> str:
3728
3951
  """
3729
- Ocid of the pre-created public IP. That should be attahed to this load balancer.
3952
+ Ocid of the Reserved IP/Public Ip created with VCN.
3730
3953
  """
3731
3954
  return pulumi.get(self, "id")
3732
3955
 
@@ -3736,7 +3959,7 @@ class GetLoadBalancersLoadBalancerReservedIpResult(dict):
3736
3959
  def __init__(__self__, *,
3737
3960
  id: str):
3738
3961
  """
3739
- :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3962
+ :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3740
3963
  """
3741
3964
  pulumi.set(__self__, "id", id)
3742
3965
 
@@ -3744,7 +3967,7 @@ class GetLoadBalancersLoadBalancerReservedIpResult(dict):
3744
3967
  @pulumi.getter
3745
3968
  def id(self) -> str:
3746
3969
  """
3747
- Ocid of the pre-created public IP. That should be attahed to this load balancer.
3970
+ Ocid of the Reserved IP/Public Ip created with VCN.
3748
3971
  """
3749
3972
  return pulumi.get(self, "id")
3750
3973
 
@@ -4039,9 +4262,11 @@ class GetRuleSetItemResult(dict):
4039
4262
  allowed_methods: Sequence[str],
4040
4263
  are_invalid_characters_allowed: bool,
4041
4264
  conditions: Sequence['outputs.GetRuleSetItemConditionResult'],
4265
+ default_max_connections: int,
4042
4266
  description: str,
4043
4267
  header: str,
4044
4268
  http_large_header_size_in_kb: int,
4269
+ ip_max_connections: Sequence['outputs.GetRuleSetItemIpMaxConnectionResult'],
4045
4270
  prefix: str,
4046
4271
  redirect_uris: Sequence['outputs.GetRuleSetItemRedirectUriResult'],
4047
4272
  response_code: int,
@@ -4049,12 +4274,14 @@ class GetRuleSetItemResult(dict):
4049
4274
  suffix: str,
4050
4275
  value: str):
4051
4276
  """
4052
- :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4277
+ :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4053
4278
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
4054
4279
  :param bool are_invalid_characters_allowed: Indicates whether or not invalid characters in client header fields will be allowed. Valid names are composed of English letters, digits, hyphens and underscores. If "true", invalid characters are allowed in the HTTP header. If "false", invalid characters are not allowed in the HTTP header
4280
+ :param int default_max_connections: The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
4055
4281
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
4056
4282
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
4057
4283
  :param int http_large_header_size_in_kb: The maximum size of each buffer used for reading http client request header. This value indicates the maximum size allowed for each buffer. The allowed values for buffer size are 8, 16, 32 and 64.
4284
+ :param Sequence['GetRuleSetItemIpMaxConnectionArgs'] ip_max_connections: An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
4058
4285
  :param str prefix: A string to prepend to the header value. The resulting header value must still conform to RFC 7230. With the following exceptions:
4059
4286
  * value cannot contain `$`
4060
4287
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -4072,9 +4299,11 @@ class GetRuleSetItemResult(dict):
4072
4299
  pulumi.set(__self__, "allowed_methods", allowed_methods)
4073
4300
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
4074
4301
  pulumi.set(__self__, "conditions", conditions)
4302
+ pulumi.set(__self__, "default_max_connections", default_max_connections)
4075
4303
  pulumi.set(__self__, "description", description)
4076
4304
  pulumi.set(__self__, "header", header)
4077
4305
  pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
4306
+ pulumi.set(__self__, "ip_max_connections", ip_max_connections)
4078
4307
  pulumi.set(__self__, "prefix", prefix)
4079
4308
  pulumi.set(__self__, "redirect_uris", redirect_uris)
4080
4309
  pulumi.set(__self__, "response_code", response_code)
@@ -4086,7 +4315,7 @@ class GetRuleSetItemResult(dict):
4086
4315
  @pulumi.getter
4087
4316
  def action(self) -> str:
4088
4317
  """
4089
- The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4318
+ The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4090
4319
  """
4091
4320
  return pulumi.get(self, "action")
4092
4321
 
@@ -4111,6 +4340,14 @@ class GetRuleSetItemResult(dict):
4111
4340
  def conditions(self) -> Sequence['outputs.GetRuleSetItemConditionResult']:
4112
4341
  return pulumi.get(self, "conditions")
4113
4342
 
4343
+ @property
4344
+ @pulumi.getter(name="defaultMaxConnections")
4345
+ def default_max_connections(self) -> int:
4346
+ """
4347
+ The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
4348
+ """
4349
+ return pulumi.get(self, "default_max_connections")
4350
+
4114
4351
  @property
4115
4352
  @pulumi.getter
4116
4353
  def description(self) -> str:
@@ -4135,6 +4372,14 @@ class GetRuleSetItemResult(dict):
4135
4372
  """
4136
4373
  return pulumi.get(self, "http_large_header_size_in_kb")
4137
4374
 
4375
+ @property
4376
+ @pulumi.getter(name="ipMaxConnections")
4377
+ def ip_max_connections(self) -> Sequence['outputs.GetRuleSetItemIpMaxConnectionResult']:
4378
+ """
4379
+ An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
4380
+ """
4381
+ return pulumi.get(self, "ip_max_connections")
4382
+
4138
4383
  @property
4139
4384
  @pulumi.getter
4140
4385
  def prefix(self) -> str:
@@ -4244,6 +4489,35 @@ class GetRuleSetItemConditionResult(dict):
4244
4489
  return pulumi.get(self, "operator")
4245
4490
 
4246
4491
 
4492
+ @pulumi.output_type
4493
+ class GetRuleSetItemIpMaxConnectionResult(dict):
4494
+ def __init__(__self__, *,
4495
+ ip_addresses: Sequence[str],
4496
+ max_connections: int):
4497
+ """
4498
+ :param Sequence[str] ip_addresses: Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
4499
+ :param int max_connections: The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
4500
+ """
4501
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
4502
+ pulumi.set(__self__, "max_connections", max_connections)
4503
+
4504
+ @property
4505
+ @pulumi.getter(name="ipAddresses")
4506
+ def ip_addresses(self) -> Sequence[str]:
4507
+ """
4508
+ Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
4509
+ """
4510
+ return pulumi.get(self, "ip_addresses")
4511
+
4512
+ @property
4513
+ @pulumi.getter(name="maxConnections")
4514
+ def max_connections(self) -> int:
4515
+ """
4516
+ The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
4517
+ """
4518
+ return pulumi.get(self, "max_connections")
4519
+
4520
+
4247
4521
  @pulumi.output_type
4248
4522
  class GetRuleSetItemRedirectUriResult(dict):
4249
4523
  def __init__(__self__, *,
@@ -4400,9 +4674,11 @@ class GetRuleSetsRuleSetItemResult(dict):
4400
4674
  allowed_methods: Sequence[str],
4401
4675
  are_invalid_characters_allowed: bool,
4402
4676
  conditions: Sequence['outputs.GetRuleSetsRuleSetItemConditionResult'],
4677
+ default_max_connections: int,
4403
4678
  description: str,
4404
4679
  header: str,
4405
4680
  http_large_header_size_in_kb: int,
4681
+ ip_max_connections: Sequence['outputs.GetRuleSetsRuleSetItemIpMaxConnectionResult'],
4406
4682
  prefix: str,
4407
4683
  redirect_uris: Sequence['outputs.GetRuleSetsRuleSetItemRedirectUriResult'],
4408
4684
  response_code: int,
@@ -4410,12 +4686,14 @@ class GetRuleSetsRuleSetItemResult(dict):
4410
4686
  suffix: str,
4411
4687
  value: str):
4412
4688
  """
4413
- :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4689
+ :param str action: The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4414
4690
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
4415
4691
  :param bool are_invalid_characters_allowed: Indicates whether or not invalid characters in client header fields will be allowed. Valid names are composed of English letters, digits, hyphens and underscores. If "true", invalid characters are allowed in the HTTP header. If "false", invalid characters are not allowed in the HTTP header
4692
+ :param int default_max_connections: The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
4416
4693
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
4417
4694
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
4418
4695
  :param int http_large_header_size_in_kb: The maximum size of each buffer used for reading http client request header. This value indicates the maximum size allowed for each buffer. The allowed values for buffer size are 8, 16, 32 and 64.
4696
+ :param Sequence['GetRuleSetsRuleSetItemIpMaxConnectionArgs'] ip_max_connections: An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
4419
4697
  :param str prefix: A string to prepend to the header value. The resulting header value must still conform to RFC 7230. With the following exceptions:
4420
4698
  * value cannot contain `$`
4421
4699
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -4433,9 +4711,11 @@ class GetRuleSetsRuleSetItemResult(dict):
4433
4711
  pulumi.set(__self__, "allowed_methods", allowed_methods)
4434
4712
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
4435
4713
  pulumi.set(__self__, "conditions", conditions)
4714
+ pulumi.set(__self__, "default_max_connections", default_max_connections)
4436
4715
  pulumi.set(__self__, "description", description)
4437
4716
  pulumi.set(__self__, "header", header)
4438
4717
  pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
4718
+ pulumi.set(__self__, "ip_max_connections", ip_max_connections)
4439
4719
  pulumi.set(__self__, "prefix", prefix)
4440
4720
  pulumi.set(__self__, "redirect_uris", redirect_uris)
4441
4721
  pulumi.set(__self__, "response_code", response_code)
@@ -4447,7 +4727,7 @@ class GetRuleSetsRuleSetItemResult(dict):
4447
4727
  @pulumi.getter
4448
4728
  def action(self) -> str:
4449
4729
  """
4450
- The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4730
+ The action can be one of these values: `ADD_HTTP_REQUEST_HEADER`, `ADD_HTTP_RESPONSE_HEADER`, `ALLOW`, `CONTROL_ACCESS_USING_HTTP_METHODS`, `EXTEND_HTTP_REQUEST_HEADER_VALUE`, `EXTEND_HTTP_RESPONSE_HEADER_VALUE`, `HTTP_HEADER`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
4451
4731
  """
4452
4732
  return pulumi.get(self, "action")
4453
4733
 
@@ -4472,6 +4752,14 @@ class GetRuleSetsRuleSetItemResult(dict):
4472
4752
  def conditions(self) -> Sequence['outputs.GetRuleSetsRuleSetItemConditionResult']:
4473
4753
  return pulumi.get(self, "conditions")
4474
4754
 
4755
+ @property
4756
+ @pulumi.getter(name="defaultMaxConnections")
4757
+ def default_max_connections(self) -> int:
4758
+ """
4759
+ The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
4760
+ """
4761
+ return pulumi.get(self, "default_max_connections")
4762
+
4475
4763
  @property
4476
4764
  @pulumi.getter
4477
4765
  def description(self) -> str:
@@ -4496,6 +4784,14 @@ class GetRuleSetsRuleSetItemResult(dict):
4496
4784
  """
4497
4785
  return pulumi.get(self, "http_large_header_size_in_kb")
4498
4786
 
4787
+ @property
4788
+ @pulumi.getter(name="ipMaxConnections")
4789
+ def ip_max_connections(self) -> Sequence['outputs.GetRuleSetsRuleSetItemIpMaxConnectionResult']:
4790
+ """
4791
+ An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
4792
+ """
4793
+ return pulumi.get(self, "ip_max_connections")
4794
+
4499
4795
  @property
4500
4796
  @pulumi.getter
4501
4797
  def prefix(self) -> str:
@@ -4605,6 +4901,35 @@ class GetRuleSetsRuleSetItemConditionResult(dict):
4605
4901
  return pulumi.get(self, "operator")
4606
4902
 
4607
4903
 
4904
+ @pulumi.output_type
4905
+ class GetRuleSetsRuleSetItemIpMaxConnectionResult(dict):
4906
+ def __init__(__self__, *,
4907
+ ip_addresses: Sequence[str],
4908
+ max_connections: int):
4909
+ """
4910
+ :param Sequence[str] ip_addresses: Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
4911
+ :param int max_connections: The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
4912
+ """
4913
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
4914
+ pulumi.set(__self__, "max_connections", max_connections)
4915
+
4916
+ @property
4917
+ @pulumi.getter(name="ipAddresses")
4918
+ def ip_addresses(self) -> Sequence[str]:
4919
+ """
4920
+ Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'
4921
+ """
4922
+ return pulumi.get(self, "ip_addresses")
4923
+
4924
+ @property
4925
+ @pulumi.getter(name="maxConnections")
4926
+ def max_connections(self) -> int:
4927
+ """
4928
+ The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.
4929
+ """
4930
+ return pulumi.get(self, "max_connections")
4931
+
4932
+
4608
4933
  @pulumi.output_type
4609
4934
  class GetRuleSetsRuleSetItemRedirectUriResult(dict):
4610
4935
  def __init__(__self__, *,