pulumi-oci 1.35.0__py3-none-any.whl → 1.35.0a1715062528__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,7 +28,6 @@ __all__ = [
28
28
  'PathRouteSetPathRoutePathMatchType',
29
29
  'RuleSetItem',
30
30
  'RuleSetItemCondition',
31
- 'RuleSetItemIpMaxConnection',
32
31
  'RuleSetItemRedirectUri',
33
32
  'GetBackendHealthHealthCheckResultResult',
34
33
  'GetBackendSetsBackendsetResult',
@@ -48,7 +47,6 @@ __all__ = [
48
47
  'GetListenerRulesListenerRuleResult',
49
48
  'GetListenerRulesListenerRuleRuleResult',
50
49
  'GetListenerRulesListenerRuleRuleConditionResult',
51
- 'GetListenerRulesListenerRuleRuleIpMaxConnectionResult',
52
50
  'GetListenerRulesListenerRuleRuleRedirectUriResult',
53
51
  'GetLoadBalancerRoutingPoliciesFilterResult',
54
52
  'GetLoadBalancerRoutingPoliciesRoutingPolicyResult',
@@ -72,13 +70,11 @@ __all__ = [
72
70
  'GetProtocolsProtocolResult',
73
71
  'GetRuleSetItemResult',
74
72
  'GetRuleSetItemConditionResult',
75
- 'GetRuleSetItemIpMaxConnectionResult',
76
73
  'GetRuleSetItemRedirectUriResult',
77
74
  'GetRuleSetsFilterResult',
78
75
  'GetRuleSetsRuleSetResult',
79
76
  'GetRuleSetsRuleSetItemResult',
80
77
  'GetRuleSetsRuleSetItemConditionResult',
81
- 'GetRuleSetsRuleSetItemIpMaxConnectionResult',
82
78
  'GetRuleSetsRuleSetItemRedirectUriResult',
83
79
  'GetShapesFilterResult',
84
80
  'GetShapesShapeResult',
@@ -93,8 +89,6 @@ class BackendSetBackend(dict):
93
89
  suggest = None
94
90
  if key == "ipAddress":
95
91
  suggest = "ip_address"
96
- elif key == "maxConnections":
97
- suggest = "max_connections"
98
92
 
99
93
  if suggest:
100
94
  pulumi.log.warn(f"Key '{key}' not found in BackendSetBackend. Access the value via the '{suggest}' property getter instead.")
@@ -112,27 +106,21 @@ class BackendSetBackend(dict):
112
106
  port: int,
113
107
  backup: Optional[bool] = None,
114
108
  drain: Optional[bool] = None,
115
- max_connections: Optional[int] = None,
116
109
  name: Optional[str] = None,
117
110
  offline: Optional[bool] = None,
118
111
  weight: Optional[int] = None):
119
112
  """
120
- :param str ip_address: (Updatable) The IP address of the backend server. Example: `10.0.0.3`
113
+ :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
121
114
  :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`
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`
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`
129
117
  :param str name: A friendly name for the backend set. It must be unique and it cannot be changed.
130
118
 
131
119
  Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
132
120
 
133
121
  Example: `example_backend_set`
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`
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`
136
124
  """
137
125
  pulumi.set(__self__, "ip_address", ip_address)
138
126
  pulumi.set(__self__, "port", port)
@@ -140,8 +128,6 @@ class BackendSetBackend(dict):
140
128
  pulumi.set(__self__, "backup", backup)
141
129
  if drain is not None:
142
130
  pulumi.set(__self__, "drain", drain)
143
- if max_connections is not None:
144
- pulumi.set(__self__, "max_connections", max_connections)
145
131
  if name is not None:
146
132
  pulumi.set(__self__, "name", name)
147
133
  if offline is not None:
@@ -153,7 +139,7 @@ class BackendSetBackend(dict):
153
139
  @pulumi.getter(name="ipAddress")
154
140
  def ip_address(self) -> str:
155
141
  """
156
- (Updatable) The IP address of the backend server. Example: `10.0.0.3`
142
+ The IP address of the backend server. Example: `10.0.0.3`
157
143
  """
158
144
  return pulumi.get(self, "ip_address")
159
145
 
@@ -169,11 +155,7 @@ class BackendSetBackend(dict):
169
155
  @pulumi.getter
170
156
  def backup(self) -> Optional[bool]:
171
157
  """
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`
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.
177
159
  """
178
160
  return pulumi.get(self, "backup")
179
161
 
@@ -181,18 +163,10 @@ class BackendSetBackend(dict):
181
163
  @pulumi.getter
182
164
  def drain(self) -> Optional[bool]:
183
165
  """
184
- (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
166
+ Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
185
167
  """
186
168
  return pulumi.get(self, "drain")
187
169
 
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
-
196
170
  @property
197
171
  @pulumi.getter
198
172
  def name(self) -> Optional[str]:
@@ -209,7 +183,7 @@ class BackendSetBackend(dict):
209
183
  @pulumi.getter
210
184
  def offline(self) -> Optional[bool]:
211
185
  """
212
- (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
186
+ Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
213
187
  """
214
188
  return pulumi.get(self, "offline")
215
189
 
@@ -217,7 +191,7 @@ class BackendSetBackend(dict):
217
191
  @pulumi.getter
218
192
  def weight(self) -> Optional[int]:
219
193
  """
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`
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`
221
195
  """
222
196
  return pulumi.get(self, "weight")
223
197
 
@@ -1085,6 +1059,7 @@ class LoadBalancerIpAddressDetail(dict):
1085
1059
  """
1086
1060
  :param str ip_address: An IP address. Example: `192.168.0.3`
1087
1061
  :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.
1088
1063
  """
1089
1064
  if ip_address is not None:
1090
1065
  pulumi.set(__self__, "ip_address", ip_address)
@@ -1112,6 +1087,9 @@ class LoadBalancerIpAddressDetail(dict):
1112
1087
  @property
1113
1088
  @pulumi.getter(name="reservedIps")
1114
1089
  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
+ """
1115
1093
  return pulumi.get(self, "reserved_ips")
1116
1094
 
1117
1095
 
@@ -1120,15 +1098,7 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
1120
1098
  def __init__(__self__, *,
1121
1099
  id: Optional[str] = None):
1122
1100
  """
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.
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.
1132
1102
  """
1133
1103
  if id is not None:
1134
1104
  pulumi.set(__self__, "id", id)
@@ -1137,15 +1107,7 @@ class LoadBalancerIpAddressDetailReservedIp(dict):
1137
1107
  @pulumi.getter
1138
1108
  def id(self) -> Optional[str]:
1139
1109
  """
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.
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.
1149
1111
  """
1150
1112
  return pulumi.get(self, "id")
1151
1113
 
@@ -1155,15 +1117,7 @@ class LoadBalancerReservedIp(dict):
1155
1117
  def __init__(__self__, *,
1156
1118
  id: Optional[str] = None):
1157
1119
  """
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.
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.
1167
1121
  """
1168
1122
  if id is not None:
1169
1123
  pulumi.set(__self__, "id", id)
@@ -1172,15 +1126,7 @@ class LoadBalancerReservedIp(dict):
1172
1126
  @pulumi.getter
1173
1127
  def id(self) -> Optional[str]:
1174
1128
  """
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.
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.
1184
1130
  """
1185
1131
  return pulumi.get(self, "id")
1186
1132
 
@@ -1476,12 +1422,8 @@ class RuleSetItem(dict):
1476
1422
  suggest = "allowed_methods"
1477
1423
  elif key == "areInvalidCharactersAllowed":
1478
1424
  suggest = "are_invalid_characters_allowed"
1479
- elif key == "defaultMaxConnections":
1480
- suggest = "default_max_connections"
1481
1425
  elif key == "httpLargeHeaderSizeInKb":
1482
1426
  suggest = "http_large_header_size_in_kb"
1483
- elif key == "ipMaxConnections":
1484
- suggest = "ip_max_connections"
1485
1427
  elif key == "redirectUri":
1486
1428
  suggest = "redirect_uri"
1487
1429
  elif key == "responseCode":
@@ -1505,11 +1447,9 @@ class RuleSetItem(dict):
1505
1447
  allowed_methods: Optional[Sequence[str]] = None,
1506
1448
  are_invalid_characters_allowed: Optional[bool] = None,
1507
1449
  conditions: Optional[Sequence['outputs.RuleSetItemCondition']] = None,
1508
- default_max_connections: Optional[int] = None,
1509
1450
  description: Optional[str] = None,
1510
1451
  header: Optional[str] = None,
1511
1452
  http_large_header_size_in_kb: Optional[int] = None,
1512
- ip_max_connections: Optional[Sequence['outputs.RuleSetItemIpMaxConnection']] = None,
1513
1453
  prefix: Optional[str] = None,
1514
1454
  redirect_uri: Optional['outputs.RuleSetItemRedirectUri'] = None,
1515
1455
  response_code: Optional[int] = None,
@@ -1517,7 +1457,7 @@ class RuleSetItem(dict):
1517
1457
  suffix: Optional[str] = None,
1518
1458
  value: Optional[str] = None):
1519
1459
  """
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`
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`
1521
1461
  :param Sequence[str] allowed_methods: (Updatable) The list of HTTP methods allowed for this listener.
1522
1462
 
1523
1463
  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).
@@ -1529,13 +1469,11 @@ class RuleSetItem(dict):
1529
1469
  Example: ["GET", "PUT", "POST", "PROPFIND"]
1530
1470
  :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
1531
1471
  :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.
1533
1472
  :param str description: (Updatable) A brief description of the access control rule. Avoid entering confidential information.
1534
1473
 
1535
1474
  example: `192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.`
1536
1475
  :param str header: (Updatable) A header name that conforms to RFC 7230. Example: `example_header_name`
1537
1476
  :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
1539
1477
  :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:
1540
1478
  * value cannot contain `$`
1541
1479
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -1596,16 +1534,12 @@ class RuleSetItem(dict):
1596
1534
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
1597
1535
  if conditions is not None:
1598
1536
  pulumi.set(__self__, "conditions", conditions)
1599
- if default_max_connections is not None:
1600
- pulumi.set(__self__, "default_max_connections", default_max_connections)
1601
1537
  if description is not None:
1602
1538
  pulumi.set(__self__, "description", description)
1603
1539
  if header is not None:
1604
1540
  pulumi.set(__self__, "header", header)
1605
1541
  if http_large_header_size_in_kb is not None:
1606
1542
  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)
1609
1543
  if prefix is not None:
1610
1544
  pulumi.set(__self__, "prefix", prefix)
1611
1545
  if redirect_uri is not None:
@@ -1623,7 +1557,7 @@ class RuleSetItem(dict):
1623
1557
  @pulumi.getter
1624
1558
  def action(self) -> str:
1625
1559
  """
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`
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`
1627
1561
  """
1628
1562
  return pulumi.get(self, "action")
1629
1563
 
@@ -1659,14 +1593,6 @@ class RuleSetItem(dict):
1659
1593
  """
1660
1594
  return pulumi.get(self, "conditions")
1661
1595
 
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
-
1670
1596
  @property
1671
1597
  @pulumi.getter
1672
1598
  def description(self) -> Optional[str]:
@@ -1693,14 +1619,6 @@ class RuleSetItem(dict):
1693
1619
  """
1694
1620
  return pulumi.get(self, "http_large_header_size_in_kb")
1695
1621
 
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
-
1704
1622
  @property
1705
1623
  @pulumi.getter
1706
1624
  def prefix(self) -> Optional[str]:
@@ -1870,56 +1788,6 @@ class RuleSetItemCondition(dict):
1870
1788
  return pulumi.get(self, "operator")
1871
1789
 
1872
1790
 
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
-
1923
1791
  @pulumi.output_type
1924
1792
  class RuleSetItemRedirectUri(dict):
1925
1793
  def __init__(__self__, *,
@@ -2157,7 +2025,6 @@ class GetBackendHealthHealthCheckResultResult(dict):
2157
2025
  @pulumi.output_type
2158
2026
  class GetBackendSetsBackendsetResult(dict):
2159
2027
  def __init__(__self__, *,
2160
- backend_max_connections: int,
2161
2028
  backends: Sequence['outputs.GetBackendSetsBackendsetBackendResult'],
2162
2029
  health_checkers: Sequence['outputs.GetBackendSetsBackendsetHealthCheckerResult'],
2163
2030
  id: str,
@@ -2169,7 +2036,6 @@ class GetBackendSetsBackendsetResult(dict):
2169
2036
  ssl_configurations: Sequence['outputs.GetBackendSetsBackendsetSslConfigurationResult'],
2170
2037
  state: str):
2171
2038
  """
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`
2173
2039
  :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).
2174
2040
  :param Sequence['GetBackendSetsBackendsetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configurations: The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
2175
2041
  :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.
@@ -2178,7 +2044,6 @@ class GetBackendSetsBackendsetResult(dict):
2178
2044
  :param Sequence['GetBackendSetsBackendsetSessionPersistenceConfigurationArgs'] session_persistence_configurations: The configuration details for implementing session persistence based on a user-specified cookie name (application cookie stickiness).
2179
2045
  :param Sequence['GetBackendSetsBackendsetSslConfigurationArgs'] ssl_configurations: A listener's SSL handling configuration.
2180
2046
  """
2181
- pulumi.set(__self__, "backend_max_connections", backend_max_connections)
2182
2047
  pulumi.set(__self__, "backends", backends)
2183
2048
  pulumi.set(__self__, "health_checkers", health_checkers)
2184
2049
  pulumi.set(__self__, "id", id)
@@ -2190,14 +2055,6 @@ class GetBackendSetsBackendsetResult(dict):
2190
2055
  pulumi.set(__self__, "ssl_configurations", ssl_configurations)
2191
2056
  pulumi.set(__self__, "state", state)
2192
2057
 
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
-
2201
2058
  @property
2202
2059
  @pulumi.getter
2203
2060
  def backends(self) -> Sequence['outputs.GetBackendSetsBackendsetBackendResult']:
@@ -2276,7 +2133,6 @@ class GetBackendSetsBackendsetBackendResult(dict):
2276
2133
  backup: bool,
2277
2134
  drain: bool,
2278
2135
  ip_address: str,
2279
- max_connections: int,
2280
2136
  name: str,
2281
2137
  offline: bool,
2282
2138
  port: int,
@@ -2285,7 +2141,6 @@ class GetBackendSetsBackendsetBackendResult(dict):
2285
2141
  :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.
2286
2142
  :param bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
2287
2143
  :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`
2289
2144
  :param str name: A friendly name for the backend set. It must be unique and it cannot be changed.
2290
2145
  :param bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
2291
2146
  :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`
@@ -2294,7 +2149,6 @@ class GetBackendSetsBackendsetBackendResult(dict):
2294
2149
  pulumi.set(__self__, "backup", backup)
2295
2150
  pulumi.set(__self__, "drain", drain)
2296
2151
  pulumi.set(__self__, "ip_address", ip_address)
2297
- pulumi.set(__self__, "max_connections", max_connections)
2298
2152
  pulumi.set(__self__, "name", name)
2299
2153
  pulumi.set(__self__, "offline", offline)
2300
2154
  pulumi.set(__self__, "port", port)
@@ -2324,14 +2178,6 @@ class GetBackendSetsBackendsetBackendResult(dict):
2324
2178
  """
2325
2179
  return pulumi.get(self, "ip_address")
2326
2180
 
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
-
2335
2181
  @property
2336
2182
  @pulumi.getter
2337
2183
  def name(self) -> str:
@@ -2719,7 +2565,6 @@ class GetBackendsBackendResult(dict):
2719
2565
  drain: bool,
2720
2566
  ip_address: str,
2721
2567
  load_balancer_id: str,
2722
- max_connections: int,
2723
2568
  name: str,
2724
2569
  offline: bool,
2725
2570
  port: int,
@@ -2731,7 +2576,6 @@ class GetBackendsBackendResult(dict):
2731
2576
  :param bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
2732
2577
  :param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
2733
2578
  :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`
2735
2579
  :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`
2736
2580
  :param bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
2737
2581
  :param int port: The communication port for the backend server. Example: `8080`
@@ -2742,7 +2586,6 @@ class GetBackendsBackendResult(dict):
2742
2586
  pulumi.set(__self__, "drain", drain)
2743
2587
  pulumi.set(__self__, "ip_address", ip_address)
2744
2588
  pulumi.set(__self__, "load_balancer_id", load_balancer_id)
2745
- pulumi.set(__self__, "max_connections", max_connections)
2746
2589
  pulumi.set(__self__, "name", name)
2747
2590
  pulumi.set(__self__, "offline", offline)
2748
2591
  pulumi.set(__self__, "port", port)
@@ -2783,14 +2626,6 @@ class GetBackendsBackendResult(dict):
2783
2626
  """
2784
2627
  return pulumi.get(self, "load_balancer_id")
2785
2628
 
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
-
2794
2629
  @property
2795
2630
  @pulumi.getter
2796
2631
  def name(self) -> str:
@@ -3126,11 +2961,9 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3126
2961
  allowed_methods: Sequence[str],
3127
2962
  are_invalid_characters_allowed: bool,
3128
2963
  conditions: Sequence['outputs.GetListenerRulesListenerRuleRuleConditionResult'],
3129
- default_max_connections: int,
3130
2964
  description: str,
3131
2965
  header: str,
3132
2966
  http_large_header_size_in_kb: int,
3133
- ip_max_connections: Sequence['outputs.GetListenerRulesListenerRuleRuleIpMaxConnectionResult'],
3134
2967
  prefix: str,
3135
2968
  redirect_uris: Sequence['outputs.GetListenerRulesListenerRuleRuleRedirectUriResult'],
3136
2969
  response_code: int,
@@ -3138,14 +2971,12 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3138
2971
  suffix: str,
3139
2972
  value: str):
3140
2973
  """
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`
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`
3142
2975
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
3143
2976
  :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.
3145
2977
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
3146
2978
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
3147
2979
  :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
3149
2980
  :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:
3150
2981
  * value cannot contain `$`
3151
2982
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -3163,11 +2994,9 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3163
2994
  pulumi.set(__self__, "allowed_methods", allowed_methods)
3164
2995
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
3165
2996
  pulumi.set(__self__, "conditions", conditions)
3166
- pulumi.set(__self__, "default_max_connections", default_max_connections)
3167
2997
  pulumi.set(__self__, "description", description)
3168
2998
  pulumi.set(__self__, "header", header)
3169
2999
  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)
3171
3000
  pulumi.set(__self__, "prefix", prefix)
3172
3001
  pulumi.set(__self__, "redirect_uris", redirect_uris)
3173
3002
  pulumi.set(__self__, "response_code", response_code)
@@ -3179,7 +3008,7 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3179
3008
  @pulumi.getter
3180
3009
  def action(self) -> str:
3181
3010
  """
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`
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`
3183
3012
  """
3184
3013
  return pulumi.get(self, "action")
3185
3014
 
@@ -3204,14 +3033,6 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3204
3033
  def conditions(self) -> Sequence['outputs.GetListenerRulesListenerRuleRuleConditionResult']:
3205
3034
  return pulumi.get(self, "conditions")
3206
3035
 
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
-
3215
3036
  @property
3216
3037
  @pulumi.getter
3217
3038
  def description(self) -> str:
@@ -3236,14 +3057,6 @@ class GetListenerRulesListenerRuleRuleResult(dict):
3236
3057
  """
3237
3058
  return pulumi.get(self, "http_large_header_size_in_kb")
3238
3059
 
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
-
3247
3060
  @property
3248
3061
  @pulumi.getter
3249
3062
  def prefix(self) -> str:
@@ -3347,35 +3160,6 @@ class GetListenerRulesListenerRuleRuleConditionResult(dict):
3347
3160
  return pulumi.get(self, "operator")
3348
3161
 
3349
3162
 
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
-
3379
3163
  @pulumi.output_type
3380
3164
  class GetListenerRulesListenerRuleRuleRedirectUriResult(dict):
3381
3165
  def __init__(__self__, *,
@@ -3711,7 +3495,6 @@ class GetLoadBalancersLoadBalancerResult(dict):
3711
3495
  ip_address_details: Sequence['outputs.GetLoadBalancersLoadBalancerIpAddressDetailResult'],
3712
3496
  ip_addresses: Sequence[str],
3713
3497
  ip_mode: str,
3714
- is_delete_protection_enabled: bool,
3715
3498
  is_private: bool,
3716
3499
  network_security_group_ids: Sequence[str],
3717
3500
  reserved_ips: Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult'],
@@ -3726,10 +3509,9 @@ class GetLoadBalancersLoadBalancerResult(dict):
3726
3509
  :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"}`
3727
3510
  :param str display_name: A filter to return only resources that match the given display name exactly. Example: `example_load_balancer`
3728
3511
  :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"}`
3729
- :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3512
+ :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3730
3513
  :param Sequence['GetLoadBalancersLoadBalancerIpAddressDetailArgs'] ip_address_details: An array of IP addresses.
3731
3514
  :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.
3733
3515
  :param bool is_private: Whether the load balancer has a VCN-local (private) IP address.
3734
3516
  :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.
3735
3517
  :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`
@@ -3747,7 +3529,6 @@ class GetLoadBalancersLoadBalancerResult(dict):
3747
3529
  pulumi.set(__self__, "ip_address_details", ip_address_details)
3748
3530
  pulumi.set(__self__, "ip_addresses", ip_addresses)
3749
3531
  pulumi.set(__self__, "ip_mode", ip_mode)
3750
- pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
3751
3532
  pulumi.set(__self__, "is_private", is_private)
3752
3533
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
3753
3534
  pulumi.set(__self__, "reserved_ips", reserved_ips)
@@ -3794,7 +3575,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3794
3575
  @pulumi.getter
3795
3576
  def id(self) -> str:
3796
3577
  """
3797
- Ocid of the Reserved IP/Public Ip created with VCN.
3578
+ Ocid of the pre-created public IP. That should be attahed to this load balancer.
3798
3579
  """
3799
3580
  return pulumi.get(self, "id")
3800
3581
 
@@ -3822,14 +3603,6 @@ class GetLoadBalancersLoadBalancerResult(dict):
3822
3603
  def ip_mode(self) -> str:
3823
3604
  return pulumi.get(self, "ip_mode")
3824
3605
 
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
-
3833
3606
  @property
3834
3607
  @pulumi.getter(name="isPrivate")
3835
3608
  def is_private(self) -> bool:
@@ -3909,6 +3682,7 @@ class GetLoadBalancersLoadBalancerIpAddressDetailResult(dict):
3909
3682
  """
3910
3683
  :param str ip_address: An IP address. Example: `192.168.0.3`
3911
3684
  :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.
3912
3686
  """
3913
3687
  pulumi.set(__self__, "ip_address", ip_address)
3914
3688
  pulumi.set(__self__, "is_public", is_public)
@@ -3933,6 +3707,9 @@ class GetLoadBalancersLoadBalancerIpAddressDetailResult(dict):
3933
3707
  @property
3934
3708
  @pulumi.getter(name="reservedIps")
3935
3709
  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
+ """
3936
3713
  return pulumi.get(self, "reserved_ips")
3937
3714
 
3938
3715
 
@@ -3941,7 +3718,7 @@ class GetLoadBalancersLoadBalancerIpAddressDetailReservedIpResult(dict):
3941
3718
  def __init__(__self__, *,
3942
3719
  id: str):
3943
3720
  """
3944
- :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3721
+ :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3945
3722
  """
3946
3723
  pulumi.set(__self__, "id", id)
3947
3724
 
@@ -3949,7 +3726,7 @@ class GetLoadBalancersLoadBalancerIpAddressDetailReservedIpResult(dict):
3949
3726
  @pulumi.getter
3950
3727
  def id(self) -> str:
3951
3728
  """
3952
- Ocid of the Reserved IP/Public Ip created with VCN.
3729
+ Ocid of the pre-created public IP. That should be attahed to this load balancer.
3953
3730
  """
3954
3731
  return pulumi.get(self, "id")
3955
3732
 
@@ -3959,7 +3736,7 @@ class GetLoadBalancersLoadBalancerReservedIpResult(dict):
3959
3736
  def __init__(__self__, *,
3960
3737
  id: str):
3961
3738
  """
3962
- :param str id: Ocid of the Reserved IP/Public Ip created with VCN.
3739
+ :param str id: Ocid of the pre-created public IP. That should be attahed to this load balancer.
3963
3740
  """
3964
3741
  pulumi.set(__self__, "id", id)
3965
3742
 
@@ -3967,7 +3744,7 @@ class GetLoadBalancersLoadBalancerReservedIpResult(dict):
3967
3744
  @pulumi.getter
3968
3745
  def id(self) -> str:
3969
3746
  """
3970
- Ocid of the Reserved IP/Public Ip created with VCN.
3747
+ Ocid of the pre-created public IP. That should be attahed to this load balancer.
3971
3748
  """
3972
3749
  return pulumi.get(self, "id")
3973
3750
 
@@ -4262,11 +4039,9 @@ class GetRuleSetItemResult(dict):
4262
4039
  allowed_methods: Sequence[str],
4263
4040
  are_invalid_characters_allowed: bool,
4264
4041
  conditions: Sequence['outputs.GetRuleSetItemConditionResult'],
4265
- default_max_connections: int,
4266
4042
  description: str,
4267
4043
  header: str,
4268
4044
  http_large_header_size_in_kb: int,
4269
- ip_max_connections: Sequence['outputs.GetRuleSetItemIpMaxConnectionResult'],
4270
4045
  prefix: str,
4271
4046
  redirect_uris: Sequence['outputs.GetRuleSetItemRedirectUriResult'],
4272
4047
  response_code: int,
@@ -4274,14 +4049,12 @@ class GetRuleSetItemResult(dict):
4274
4049
  suffix: str,
4275
4050
  value: str):
4276
4051
  """
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`
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`
4278
4053
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
4279
4054
  :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.
4281
4055
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
4282
4056
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
4283
4057
  :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
4285
4058
  :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:
4286
4059
  * value cannot contain `$`
4287
4060
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -4299,11 +4072,9 @@ class GetRuleSetItemResult(dict):
4299
4072
  pulumi.set(__self__, "allowed_methods", allowed_methods)
4300
4073
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
4301
4074
  pulumi.set(__self__, "conditions", conditions)
4302
- pulumi.set(__self__, "default_max_connections", default_max_connections)
4303
4075
  pulumi.set(__self__, "description", description)
4304
4076
  pulumi.set(__self__, "header", header)
4305
4077
  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)
4307
4078
  pulumi.set(__self__, "prefix", prefix)
4308
4079
  pulumi.set(__self__, "redirect_uris", redirect_uris)
4309
4080
  pulumi.set(__self__, "response_code", response_code)
@@ -4315,7 +4086,7 @@ class GetRuleSetItemResult(dict):
4315
4086
  @pulumi.getter
4316
4087
  def action(self) -> str:
4317
4088
  """
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`
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`
4319
4090
  """
4320
4091
  return pulumi.get(self, "action")
4321
4092
 
@@ -4340,14 +4111,6 @@ class GetRuleSetItemResult(dict):
4340
4111
  def conditions(self) -> Sequence['outputs.GetRuleSetItemConditionResult']:
4341
4112
  return pulumi.get(self, "conditions")
4342
4113
 
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
-
4351
4114
  @property
4352
4115
  @pulumi.getter
4353
4116
  def description(self) -> str:
@@ -4372,14 +4135,6 @@ class GetRuleSetItemResult(dict):
4372
4135
  """
4373
4136
  return pulumi.get(self, "http_large_header_size_in_kb")
4374
4137
 
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
-
4383
4138
  @property
4384
4139
  @pulumi.getter
4385
4140
  def prefix(self) -> str:
@@ -4489,35 +4244,6 @@ class GetRuleSetItemConditionResult(dict):
4489
4244
  return pulumi.get(self, "operator")
4490
4245
 
4491
4246
 
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
-
4521
4247
  @pulumi.output_type
4522
4248
  class GetRuleSetItemRedirectUriResult(dict):
4523
4249
  def __init__(__self__, *,
@@ -4674,11 +4400,9 @@ class GetRuleSetsRuleSetItemResult(dict):
4674
4400
  allowed_methods: Sequence[str],
4675
4401
  are_invalid_characters_allowed: bool,
4676
4402
  conditions: Sequence['outputs.GetRuleSetsRuleSetItemConditionResult'],
4677
- default_max_connections: int,
4678
4403
  description: str,
4679
4404
  header: str,
4680
4405
  http_large_header_size_in_kb: int,
4681
- ip_max_connections: Sequence['outputs.GetRuleSetsRuleSetItemIpMaxConnectionResult'],
4682
4406
  prefix: str,
4683
4407
  redirect_uris: Sequence['outputs.GetRuleSetsRuleSetItemRedirectUriResult'],
4684
4408
  response_code: int,
@@ -4686,14 +4410,12 @@ class GetRuleSetsRuleSetItemResult(dict):
4686
4410
  suffix: str,
4687
4411
  value: str):
4688
4412
  """
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`
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`
4690
4414
  :param Sequence[str] allowed_methods: The list of HTTP methods allowed for this listener.
4691
4415
  :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.
4693
4416
  :param str description: A brief description of the access control rule. Avoid entering confidential information.
4694
4417
  :param str header: A header name that conforms to RFC 7230. Example: `example_header_name`
4695
4418
  :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
4697
4419
  :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:
4698
4420
  * value cannot contain `$`
4699
4421
  * value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
@@ -4711,11 +4433,9 @@ class GetRuleSetsRuleSetItemResult(dict):
4711
4433
  pulumi.set(__self__, "allowed_methods", allowed_methods)
4712
4434
  pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
4713
4435
  pulumi.set(__self__, "conditions", conditions)
4714
- pulumi.set(__self__, "default_max_connections", default_max_connections)
4715
4436
  pulumi.set(__self__, "description", description)
4716
4437
  pulumi.set(__self__, "header", header)
4717
4438
  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)
4719
4439
  pulumi.set(__self__, "prefix", prefix)
4720
4440
  pulumi.set(__self__, "redirect_uris", redirect_uris)
4721
4441
  pulumi.set(__self__, "response_code", response_code)
@@ -4727,7 +4447,7 @@ class GetRuleSetsRuleSetItemResult(dict):
4727
4447
  @pulumi.getter
4728
4448
  def action(self) -> str:
4729
4449
  """
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`
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`
4731
4451
  """
4732
4452
  return pulumi.get(self, "action")
4733
4453
 
@@ -4752,14 +4472,6 @@ class GetRuleSetsRuleSetItemResult(dict):
4752
4472
  def conditions(self) -> Sequence['outputs.GetRuleSetsRuleSetItemConditionResult']:
4753
4473
  return pulumi.get(self, "conditions")
4754
4474
 
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
-
4763
4475
  @property
4764
4476
  @pulumi.getter
4765
4477
  def description(self) -> str:
@@ -4784,14 +4496,6 @@ class GetRuleSetsRuleSetItemResult(dict):
4784
4496
  """
4785
4497
  return pulumi.get(self, "http_large_header_size_in_kb")
4786
4498
 
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
-
4795
4499
  @property
4796
4500
  @pulumi.getter
4797
4501
  def prefix(self) -> str:
@@ -4901,35 +4605,6 @@ class GetRuleSetsRuleSetItemConditionResult(dict):
4901
4605
  return pulumi.get(self, "operator")
4902
4606
 
4903
4607
 
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
-
4933
4608
  @pulumi.output_type
4934
4609
  class GetRuleSetsRuleSetItemRedirectUriResult(dict):
4935
4610
  def __init__(__self__, *,