pulumi-oci 1.35.0__py3-none-any.whl → 1.35.0a1715230204__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/database/_inputs.py +0 -112
- pulumi_oci/database/cloud_exadata_infrastructure.py +0 -28
- pulumi_oci/database/cloud_vm_cluster.py +0 -55
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +1 -14
- pulumi_oci/database/get_cloud_vm_cluster.py +1 -14
- pulumi_oci/database/outputs.py +6 -316
- pulumi_oci/disasterrecovery/_inputs.py +0 -16
- pulumi_oci/disasterrecovery/outputs.py +0 -36
- pulumi_oci/loadbalancer/_inputs.py +20 -144
- pulumi_oci/loadbalancer/backend.py +0 -49
- pulumi_oci/loadbalancer/backend_set.py +0 -57
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/load_balancer.py +7 -98
- pulumi_oci/loadbalancer/outputs.py +36 -361
- pulumi_oci/loadbalancer/rule_set.py +0 -10
- pulumi_oci/provider.py +8 -0
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/RECORD +20 -20
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0.dist-info → pulumi_oci-1.35.0a1715230204.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,6 @@ __all__ = [
|
|
27
27
|
'PathRouteSetPathRoutePathMatchTypeArgs',
|
28
28
|
'RuleSetItemArgs',
|
29
29
|
'RuleSetItemConditionArgs',
|
30
|
-
'RuleSetItemIpMaxConnectionArgs',
|
31
30
|
'RuleSetItemRedirectUriArgs',
|
32
31
|
'GetBackendSetsFilterArgs',
|
33
32
|
'GetBackendsFilterArgs',
|
@@ -51,27 +50,21 @@ class BackendSetBackendArgs:
|
|
51
50
|
port: pulumi.Input[int],
|
52
51
|
backup: Optional[pulumi.Input[bool]] = None,
|
53
52
|
drain: Optional[pulumi.Input[bool]] = None,
|
54
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
55
53
|
name: Optional[pulumi.Input[str]] = None,
|
56
54
|
offline: Optional[pulumi.Input[bool]] = None,
|
57
55
|
weight: Optional[pulumi.Input[int]] = None):
|
58
56
|
"""
|
59
|
-
:param pulumi.Input[str] ip_address:
|
57
|
+
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
60
58
|
:param pulumi.Input[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`
|
61
|
-
:param pulumi.Input[bool] backup:
|
62
|
-
|
63
|
-
**Note:** You cannot add a backend server marked as `backup` to a backend set that uses the IP Hash policy.
|
64
|
-
|
65
|
-
Example: `false`
|
66
|
-
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
67
|
-
:param pulumi.Input[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`
|
59
|
+
:param pulumi.Input[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.
|
60
|
+
:param pulumi.Input[bool] drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
68
61
|
:param pulumi.Input[str] name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
69
62
|
|
70
63
|
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
|
71
64
|
|
72
65
|
Example: `example_backend_set`
|
73
|
-
:param pulumi.Input[bool] offline:
|
74
|
-
:param pulumi.Input[int] weight:
|
66
|
+
:param pulumi.Input[bool] offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
67
|
+
:param pulumi.Input[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`
|
75
68
|
"""
|
76
69
|
pulumi.set(__self__, "ip_address", ip_address)
|
77
70
|
pulumi.set(__self__, "port", port)
|
@@ -79,8 +72,6 @@ class BackendSetBackendArgs:
|
|
79
72
|
pulumi.set(__self__, "backup", backup)
|
80
73
|
if drain is not None:
|
81
74
|
pulumi.set(__self__, "drain", drain)
|
82
|
-
if max_connections is not None:
|
83
|
-
pulumi.set(__self__, "max_connections", max_connections)
|
84
75
|
if name is not None:
|
85
76
|
pulumi.set(__self__, "name", name)
|
86
77
|
if offline is not None:
|
@@ -92,7 +83,7 @@ class BackendSetBackendArgs:
|
|
92
83
|
@pulumi.getter(name="ipAddress")
|
93
84
|
def ip_address(self) -> pulumi.Input[str]:
|
94
85
|
"""
|
95
|
-
|
86
|
+
The IP address of the backend server. Example: `10.0.0.3`
|
96
87
|
"""
|
97
88
|
return pulumi.get(self, "ip_address")
|
98
89
|
|
@@ -116,11 +107,7 @@ class BackendSetBackendArgs:
|
|
116
107
|
@pulumi.getter
|
117
108
|
def backup(self) -> Optional[pulumi.Input[bool]]:
|
118
109
|
"""
|
119
|
-
|
120
|
-
|
121
|
-
**Note:** You cannot add a backend server marked as `backup` to a backend set that uses the IP Hash policy.
|
122
|
-
|
123
|
-
Example: `false`
|
110
|
+
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.
|
124
111
|
"""
|
125
112
|
return pulumi.get(self, "backup")
|
126
113
|
|
@@ -132,7 +119,7 @@ class BackendSetBackendArgs:
|
|
132
119
|
@pulumi.getter
|
133
120
|
def drain(self) -> Optional[pulumi.Input[bool]]:
|
134
121
|
"""
|
135
|
-
|
122
|
+
Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
136
123
|
"""
|
137
124
|
return pulumi.get(self, "drain")
|
138
125
|
|
@@ -140,18 +127,6 @@ class BackendSetBackendArgs:
|
|
140
127
|
def drain(self, value: Optional[pulumi.Input[bool]]):
|
141
128
|
pulumi.set(self, "drain", value)
|
142
129
|
|
143
|
-
@property
|
144
|
-
@pulumi.getter(name="maxConnections")
|
145
|
-
def max_connections(self) -> Optional[pulumi.Input[int]]:
|
146
|
-
"""
|
147
|
-
(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`
|
148
|
-
"""
|
149
|
-
return pulumi.get(self, "max_connections")
|
150
|
-
|
151
|
-
@max_connections.setter
|
152
|
-
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
153
|
-
pulumi.set(self, "max_connections", value)
|
154
|
-
|
155
130
|
@property
|
156
131
|
@pulumi.getter
|
157
132
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -172,7 +147,7 @@ class BackendSetBackendArgs:
|
|
172
147
|
@pulumi.getter
|
173
148
|
def offline(self) -> Optional[pulumi.Input[bool]]:
|
174
149
|
"""
|
175
|
-
|
150
|
+
Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
176
151
|
"""
|
177
152
|
return pulumi.get(self, "offline")
|
178
153
|
|
@@ -184,7 +159,7 @@ class BackendSetBackendArgs:
|
|
184
159
|
@pulumi.getter
|
185
160
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
186
161
|
"""
|
187
|
-
|
162
|
+
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`
|
188
163
|
"""
|
189
164
|
return pulumi.get(self, "weight")
|
190
165
|
|
@@ -1031,6 +1006,7 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1031
1006
|
"""
|
1032
1007
|
:param pulumi.Input[str] ip_address: An IP address. Example: `192.168.0.3`
|
1033
1008
|
:param pulumi.Input[bool] is_public: Whether the IP address is public or private.
|
1009
|
+
:param pulumi.Input[Sequence[pulumi.Input['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.
|
1034
1010
|
"""
|
1035
1011
|
if ip_address is not None:
|
1036
1012
|
pulumi.set(__self__, "ip_address", ip_address)
|
@@ -1066,6 +1042,9 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1066
1042
|
@property
|
1067
1043
|
@pulumi.getter(name="reservedIps")
|
1068
1044
|
def reserved_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerIpAddressDetailReservedIpArgs']]]]:
|
1045
|
+
"""
|
1046
|
+
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.
|
1047
|
+
"""
|
1069
1048
|
return pulumi.get(self, "reserved_ips")
|
1070
1049
|
|
1071
1050
|
@reserved_ips.setter
|
@@ -1078,15 +1057,7 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1078
1057
|
def __init__(__self__, *,
|
1079
1058
|
id: Optional[pulumi.Input[str]] = None):
|
1080
1059
|
"""
|
1081
|
-
:param pulumi.Input[str] id: Ocid of the
|
1082
|
-
|
1083
|
-
Reserved IPs are IPs which already registered using VCN API.
|
1084
|
-
|
1085
|
-
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.
|
1086
|
-
|
1087
|
-
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1088
|
-
|
1089
|
-
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.
|
1060
|
+
:param pulumi.Input[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.
|
1090
1061
|
"""
|
1091
1062
|
if id is not None:
|
1092
1063
|
pulumi.set(__self__, "id", id)
|
@@ -1095,15 +1066,7 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1095
1066
|
@pulumi.getter
|
1096
1067
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1097
1068
|
"""
|
1098
|
-
Ocid of the
|
1099
|
-
|
1100
|
-
Reserved IPs are IPs which already registered using VCN API.
|
1101
|
-
|
1102
|
-
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.
|
1103
|
-
|
1104
|
-
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1105
|
-
|
1106
|
-
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.
|
1069
|
+
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.
|
1107
1070
|
"""
|
1108
1071
|
return pulumi.get(self, "id")
|
1109
1072
|
|
@@ -1117,15 +1080,7 @@ class LoadBalancerReservedIpArgs:
|
|
1117
1080
|
def __init__(__self__, *,
|
1118
1081
|
id: Optional[pulumi.Input[str]] = None):
|
1119
1082
|
"""
|
1120
|
-
:param pulumi.Input[str] id: Ocid of the
|
1121
|
-
|
1122
|
-
Reserved IPs are IPs which already registered using VCN API.
|
1123
|
-
|
1124
|
-
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.
|
1125
|
-
|
1126
|
-
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1127
|
-
|
1128
|
-
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.
|
1083
|
+
:param pulumi.Input[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.
|
1129
1084
|
"""
|
1130
1085
|
if id is not None:
|
1131
1086
|
pulumi.set(__self__, "id", id)
|
@@ -1134,15 +1089,7 @@ class LoadBalancerReservedIpArgs:
|
|
1134
1089
|
@pulumi.getter
|
1135
1090
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1136
1091
|
"""
|
1137
|
-
Ocid of the
|
1138
|
-
|
1139
|
-
Reserved IPs are IPs which already registered using VCN API.
|
1140
|
-
|
1141
|
-
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.
|
1142
|
-
|
1143
|
-
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1144
|
-
|
1145
|
-
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.
|
1092
|
+
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.
|
1146
1093
|
"""
|
1147
1094
|
return pulumi.get(self, "id")
|
1148
1095
|
|
@@ -1412,11 +1359,9 @@ class RuleSetItemArgs:
|
|
1412
1359
|
allowed_methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1413
1360
|
are_invalid_characters_allowed: Optional[pulumi.Input[bool]] = None,
|
1414
1361
|
conditions: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]]] = None,
|
1415
|
-
default_max_connections: Optional[pulumi.Input[int]] = None,
|
1416
1362
|
description: Optional[pulumi.Input[str]] = None,
|
1417
1363
|
header: Optional[pulumi.Input[str]] = None,
|
1418
1364
|
http_large_header_size_in_kb: Optional[pulumi.Input[int]] = None,
|
1419
|
-
ip_max_connections: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]] = None,
|
1420
1365
|
prefix: Optional[pulumi.Input[str]] = None,
|
1421
1366
|
redirect_uri: Optional[pulumi.Input['RuleSetItemRedirectUriArgs']] = None,
|
1422
1367
|
response_code: Optional[pulumi.Input[int]] = None,
|
@@ -1424,7 +1369,7 @@ class RuleSetItemArgs:
|
|
1424
1369
|
suffix: Optional[pulumi.Input[str]] = None,
|
1425
1370
|
value: Optional[pulumi.Input[str]] = None):
|
1426
1371
|
"""
|
1427
|
-
:param pulumi.Input[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`, `
|
1372
|
+
:param pulumi.Input[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`
|
1428
1373
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_methods: (Updatable) The list of HTTP methods allowed for this listener.
|
1429
1374
|
|
1430
1375
|
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).
|
@@ -1436,13 +1381,11 @@ class RuleSetItemArgs:
|
|
1436
1381
|
Example: ["GET", "PUT", "POST", "PROPFIND"]
|
1437
1382
|
:param pulumi.Input[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
|
1438
1383
|
:param pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]] conditions: (Updatable)
|
1439
|
-
:param pulumi.Input[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.
|
1440
1384
|
:param pulumi.Input[str] description: (Updatable) A brief description of the access control rule. Avoid entering confidential information.
|
1441
1385
|
|
1442
1386
|
example: `192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.`
|
1443
1387
|
:param pulumi.Input[str] header: (Updatable) A header name that conforms to RFC 7230. Example: `example_header_name`
|
1444
1388
|
:param pulumi.Input[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.
|
1445
|
-
:param pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]] ip_max_connections: (Updatable) An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
|
1446
1389
|
:param pulumi.Input[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:
|
1447
1390
|
* value cannot contain `$`
|
1448
1391
|
* value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
|
@@ -1503,16 +1446,12 @@ class RuleSetItemArgs:
|
|
1503
1446
|
pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
|
1504
1447
|
if conditions is not None:
|
1505
1448
|
pulumi.set(__self__, "conditions", conditions)
|
1506
|
-
if default_max_connections is not None:
|
1507
|
-
pulumi.set(__self__, "default_max_connections", default_max_connections)
|
1508
1449
|
if description is not None:
|
1509
1450
|
pulumi.set(__self__, "description", description)
|
1510
1451
|
if header is not None:
|
1511
1452
|
pulumi.set(__self__, "header", header)
|
1512
1453
|
if http_large_header_size_in_kb is not None:
|
1513
1454
|
pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
|
1514
|
-
if ip_max_connections is not None:
|
1515
|
-
pulumi.set(__self__, "ip_max_connections", ip_max_connections)
|
1516
1455
|
if prefix is not None:
|
1517
1456
|
pulumi.set(__self__, "prefix", prefix)
|
1518
1457
|
if redirect_uri is not None:
|
@@ -1530,7 +1469,7 @@ class RuleSetItemArgs:
|
|
1530
1469
|
@pulumi.getter
|
1531
1470
|
def action(self) -> pulumi.Input[str]:
|
1532
1471
|
"""
|
1533
|
-
(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`, `
|
1472
|
+
(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`
|
1534
1473
|
"""
|
1535
1474
|
return pulumi.get(self, "action")
|
1536
1475
|
|
@@ -1582,18 +1521,6 @@ class RuleSetItemArgs:
|
|
1582
1521
|
def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]]]):
|
1583
1522
|
pulumi.set(self, "conditions", value)
|
1584
1523
|
|
1585
|
-
@property
|
1586
|
-
@pulumi.getter(name="defaultMaxConnections")
|
1587
|
-
def default_max_connections(self) -> Optional[pulumi.Input[int]]:
|
1588
|
-
"""
|
1589
|
-
(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.
|
1590
|
-
"""
|
1591
|
-
return pulumi.get(self, "default_max_connections")
|
1592
|
-
|
1593
|
-
@default_max_connections.setter
|
1594
|
-
def default_max_connections(self, value: Optional[pulumi.Input[int]]):
|
1595
|
-
pulumi.set(self, "default_max_connections", value)
|
1596
|
-
|
1597
1524
|
@property
|
1598
1525
|
@pulumi.getter
|
1599
1526
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -1632,18 +1559,6 @@ class RuleSetItemArgs:
|
|
1632
1559
|
def http_large_header_size_in_kb(self, value: Optional[pulumi.Input[int]]):
|
1633
1560
|
pulumi.set(self, "http_large_header_size_in_kb", value)
|
1634
1561
|
|
1635
|
-
@property
|
1636
|
-
@pulumi.getter(name="ipMaxConnections")
|
1637
|
-
def ip_max_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]]:
|
1638
|
-
"""
|
1639
|
-
(Updatable) An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
|
1640
|
-
"""
|
1641
|
-
return pulumi.get(self, "ip_max_connections")
|
1642
|
-
|
1643
|
-
@ip_max_connections.setter
|
1644
|
-
def ip_max_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]]):
|
1645
|
-
pulumi.set(self, "ip_max_connections", value)
|
1646
|
-
|
1647
1562
|
@property
|
1648
1563
|
@pulumi.getter
|
1649
1564
|
def prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -1830,45 +1745,6 @@ class RuleSetItemConditionArgs:
|
|
1830
1745
|
pulumi.set(self, "operator", value)
|
1831
1746
|
|
1832
1747
|
|
1833
|
-
@pulumi.input_type
|
1834
|
-
class RuleSetItemIpMaxConnectionArgs:
|
1835
|
-
def __init__(__self__, *,
|
1836
|
-
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1837
|
-
max_connections: Optional[pulumi.Input[int]] = None):
|
1838
|
-
"""
|
1839
|
-
:param pulumi.Input[Sequence[pulumi.Input[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"]'
|
1840
|
-
:param pulumi.Input[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.
|
1841
|
-
"""
|
1842
|
-
if ip_addresses is not None:
|
1843
|
-
pulumi.set(__self__, "ip_addresses", ip_addresses)
|
1844
|
-
if max_connections is not None:
|
1845
|
-
pulumi.set(__self__, "max_connections", max_connections)
|
1846
|
-
|
1847
|
-
@property
|
1848
|
-
@pulumi.getter(name="ipAddresses")
|
1849
|
-
def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1850
|
-
"""
|
1851
|
-
(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"]'
|
1852
|
-
"""
|
1853
|
-
return pulumi.get(self, "ip_addresses")
|
1854
|
-
|
1855
|
-
@ip_addresses.setter
|
1856
|
-
def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1857
|
-
pulumi.set(self, "ip_addresses", value)
|
1858
|
-
|
1859
|
-
@property
|
1860
|
-
@pulumi.getter(name="maxConnections")
|
1861
|
-
def max_connections(self) -> Optional[pulumi.Input[int]]:
|
1862
|
-
"""
|
1863
|
-
(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.
|
1864
|
-
"""
|
1865
|
-
return pulumi.get(self, "max_connections")
|
1866
|
-
|
1867
|
-
@max_connections.setter
|
1868
|
-
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
1869
|
-
pulumi.set(self, "max_connections", value)
|
1870
|
-
|
1871
|
-
|
1872
1748
|
@pulumi.input_type
|
1873
1749
|
class RuleSetItemRedirectUriArgs:
|
1874
1750
|
def __init__(__self__, *,
|
@@ -20,7 +20,6 @@ class BackendArgs:
|
|
20
20
|
port: pulumi.Input[int],
|
21
21
|
backup: Optional[pulumi.Input[bool]] = None,
|
22
22
|
drain: Optional[pulumi.Input[bool]] = None,
|
23
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
24
23
|
offline: Optional[pulumi.Input[bool]] = None,
|
25
24
|
weight: Optional[pulumi.Input[int]] = None):
|
26
25
|
"""
|
@@ -35,7 +34,6 @@ class BackendArgs:
|
|
35
34
|
|
36
35
|
Example: `false`
|
37
36
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
38
|
-
:param pulumi.Input[int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
39
37
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
40
38
|
:param pulumi.Input[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`
|
41
39
|
|
@@ -51,8 +49,6 @@ class BackendArgs:
|
|
51
49
|
pulumi.set(__self__, "backup", backup)
|
52
50
|
if drain is not None:
|
53
51
|
pulumi.set(__self__, "drain", drain)
|
54
|
-
if max_connections is not None:
|
55
|
-
pulumi.set(__self__, "max_connections", max_connections)
|
56
52
|
if offline is not None:
|
57
53
|
pulumi.set(__self__, "offline", offline)
|
58
54
|
if weight is not None:
|
@@ -134,18 +130,6 @@ class BackendArgs:
|
|
134
130
|
def drain(self, value: Optional[pulumi.Input[bool]]):
|
135
131
|
pulumi.set(self, "drain", value)
|
136
132
|
|
137
|
-
@property
|
138
|
-
@pulumi.getter(name="maxConnections")
|
139
|
-
def max_connections(self) -> Optional[pulumi.Input[int]]:
|
140
|
-
"""
|
141
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
142
|
-
"""
|
143
|
-
return pulumi.get(self, "max_connections")
|
144
|
-
|
145
|
-
@max_connections.setter
|
146
|
-
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
147
|
-
pulumi.set(self, "max_connections", value)
|
148
|
-
|
149
133
|
@property
|
150
134
|
@pulumi.getter
|
151
135
|
def offline(self) -> Optional[pulumi.Input[bool]]:
|
@@ -183,7 +167,6 @@ class _BackendState:
|
|
183
167
|
drain: Optional[pulumi.Input[bool]] = None,
|
184
168
|
ip_address: Optional[pulumi.Input[str]] = None,
|
185
169
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
186
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
187
170
|
name: Optional[pulumi.Input[str]] = None,
|
188
171
|
offline: Optional[pulumi.Input[bool]] = None,
|
189
172
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -200,7 +183,6 @@ class _BackendState:
|
|
200
183
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
201
184
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
202
185
|
:param pulumi.Input[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.
|
203
|
-
:param pulumi.Input[int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
204
186
|
:param pulumi.Input[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`
|
205
187
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
206
188
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
@@ -220,8 +202,6 @@ class _BackendState:
|
|
220
202
|
pulumi.set(__self__, "ip_address", ip_address)
|
221
203
|
if load_balancer_id is not None:
|
222
204
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
223
|
-
if max_connections is not None:
|
224
|
-
pulumi.set(__self__, "max_connections", max_connections)
|
225
205
|
if name is not None:
|
226
206
|
pulumi.set(__self__, "name", name)
|
227
207
|
if offline is not None:
|
@@ -297,18 +277,6 @@ class _BackendState:
|
|
297
277
|
def load_balancer_id(self, value: Optional[pulumi.Input[str]]):
|
298
278
|
pulumi.set(self, "load_balancer_id", value)
|
299
279
|
|
300
|
-
@property
|
301
|
-
@pulumi.getter(name="maxConnections")
|
302
|
-
def max_connections(self) -> Optional[pulumi.Input[int]]:
|
303
|
-
"""
|
304
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
305
|
-
"""
|
306
|
-
return pulumi.get(self, "max_connections")
|
307
|
-
|
308
|
-
@max_connections.setter
|
309
|
-
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
310
|
-
pulumi.set(self, "max_connections", value)
|
311
|
-
|
312
280
|
@property
|
313
281
|
@pulumi.getter
|
314
282
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -381,7 +349,6 @@ class Backend(pulumi.CustomResource):
|
|
381
349
|
drain: Optional[pulumi.Input[bool]] = None,
|
382
350
|
ip_address: Optional[pulumi.Input[str]] = None,
|
383
351
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
384
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
385
352
|
offline: Optional[pulumi.Input[bool]] = None,
|
386
353
|
port: Optional[pulumi.Input[int]] = None,
|
387
354
|
weight: Optional[pulumi.Input[int]] = None,
|
@@ -404,7 +371,6 @@ class Backend(pulumi.CustomResource):
|
|
404
371
|
port=backend_port,
|
405
372
|
backup=backend_backup,
|
406
373
|
drain=backend_drain,
|
407
|
-
max_connections=backend_max_connections,
|
408
374
|
offline=backend_offline,
|
409
375
|
weight=backend_weight)
|
410
376
|
```
|
@@ -428,7 +394,6 @@ class Backend(pulumi.CustomResource):
|
|
428
394
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
429
395
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
430
396
|
:param pulumi.Input[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.
|
431
|
-
:param pulumi.Input[int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
432
397
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
433
398
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
434
399
|
:param pulumi.Input[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`
|
@@ -461,7 +426,6 @@ class Backend(pulumi.CustomResource):
|
|
461
426
|
port=backend_port,
|
462
427
|
backup=backend_backup,
|
463
428
|
drain=backend_drain,
|
464
|
-
max_connections=backend_max_connections,
|
465
429
|
offline=backend_offline,
|
466
430
|
weight=backend_weight)
|
467
431
|
```
|
@@ -494,7 +458,6 @@ class Backend(pulumi.CustomResource):
|
|
494
458
|
drain: Optional[pulumi.Input[bool]] = None,
|
495
459
|
ip_address: Optional[pulumi.Input[str]] = None,
|
496
460
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
497
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
498
461
|
offline: Optional[pulumi.Input[bool]] = None,
|
499
462
|
port: Optional[pulumi.Input[int]] = None,
|
500
463
|
weight: Optional[pulumi.Input[int]] = None,
|
@@ -518,7 +481,6 @@ class Backend(pulumi.CustomResource):
|
|
518
481
|
if load_balancer_id is None and not opts.urn:
|
519
482
|
raise TypeError("Missing required property 'load_balancer_id'")
|
520
483
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
521
|
-
__props__.__dict__["max_connections"] = max_connections
|
522
484
|
__props__.__dict__["offline"] = offline
|
523
485
|
if port is None and not opts.urn:
|
524
486
|
raise TypeError("Missing required property 'port'")
|
@@ -541,7 +503,6 @@ class Backend(pulumi.CustomResource):
|
|
541
503
|
drain: Optional[pulumi.Input[bool]] = None,
|
542
504
|
ip_address: Optional[pulumi.Input[str]] = None,
|
543
505
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
544
|
-
max_connections: Optional[pulumi.Input[int]] = None,
|
545
506
|
name: Optional[pulumi.Input[str]] = None,
|
546
507
|
offline: Optional[pulumi.Input[bool]] = None,
|
547
508
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -563,7 +524,6 @@ class Backend(pulumi.CustomResource):
|
|
563
524
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
564
525
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
565
526
|
:param pulumi.Input[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.
|
566
|
-
:param pulumi.Input[int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
567
527
|
:param pulumi.Input[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`
|
568
528
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
569
529
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
@@ -582,7 +542,6 @@ class Backend(pulumi.CustomResource):
|
|
582
542
|
__props__.__dict__["drain"] = drain
|
583
543
|
__props__.__dict__["ip_address"] = ip_address
|
584
544
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
585
|
-
__props__.__dict__["max_connections"] = max_connections
|
586
545
|
__props__.__dict__["name"] = name
|
587
546
|
__props__.__dict__["offline"] = offline
|
588
547
|
__props__.__dict__["port"] = port
|
@@ -634,14 +593,6 @@ class Backend(pulumi.CustomResource):
|
|
634
593
|
"""
|
635
594
|
return pulumi.get(self, "load_balancer_id")
|
636
595
|
|
637
|
-
@property
|
638
|
-
@pulumi.getter(name="maxConnections")
|
639
|
-
def max_connections(self) -> pulumi.Output[int]:
|
640
|
-
"""
|
641
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited. Example: `300`
|
642
|
-
"""
|
643
|
-
return pulumi.get(self, "max_connections")
|
644
|
-
|
645
596
|
@property
|
646
597
|
@pulumi.getter
|
647
598
|
def name(self) -> pulumi.Output[str]:
|