pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +304 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_vm_cluster.py +55 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +734 -6
- pulumi_oci/database/vm_cluster.py +55 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/disasterrecovery/_inputs.py +16 -0
- pulumi_oci/disasterrecovery/outputs.py +36 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +160 -20
- pulumi_oci/loadbalancer/backend.py +49 -0
- pulumi_oci/loadbalancer/backend_set.py +57 -0
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/load_balancer.py +98 -7
- pulumi_oci/loadbalancer/outputs.py +375 -36
- pulumi_oci/loadbalancer/rule_set.py +10 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ __all__ = [
|
|
27
27
|
'PathRouteSetPathRoutePathMatchTypeArgs',
|
28
28
|
'RuleSetItemArgs',
|
29
29
|
'RuleSetItemConditionArgs',
|
30
|
+
'RuleSetItemIpMaxConnectionArgs',
|
30
31
|
'RuleSetItemRedirectUriArgs',
|
31
32
|
'GetBackendSetsFilterArgs',
|
32
33
|
'GetBackendsFilterArgs',
|
@@ -50,21 +51,27 @@ class BackendSetBackendArgs:
|
|
50
51
|
port: pulumi.Input[int],
|
51
52
|
backup: Optional[pulumi.Input[bool]] = None,
|
52
53
|
drain: Optional[pulumi.Input[bool]] = None,
|
54
|
+
max_connections: Optional[pulumi.Input[int]] = None,
|
53
55
|
name: Optional[pulumi.Input[str]] = None,
|
54
56
|
offline: Optional[pulumi.Input[bool]] = None,
|
55
57
|
weight: Optional[pulumi.Input[int]] = None):
|
56
58
|
"""
|
57
|
-
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
59
|
+
:param pulumi.Input[str] ip_address: (Updatable) The IP address of the backend server. Example: `10.0.0.3`
|
58
60
|
: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`
|
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
|
-
|
61
|
+
:param pulumi.Input[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.
|
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`
|
61
68
|
:param pulumi.Input[str] name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
62
69
|
|
63
70
|
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
|
64
71
|
|
65
72
|
Example: `example_backend_set`
|
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`
|
73
|
+
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
74
|
+
: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`
|
68
75
|
"""
|
69
76
|
pulumi.set(__self__, "ip_address", ip_address)
|
70
77
|
pulumi.set(__self__, "port", port)
|
@@ -72,6 +79,8 @@ class BackendSetBackendArgs:
|
|
72
79
|
pulumi.set(__self__, "backup", backup)
|
73
80
|
if drain is not None:
|
74
81
|
pulumi.set(__self__, "drain", drain)
|
82
|
+
if max_connections is not None:
|
83
|
+
pulumi.set(__self__, "max_connections", max_connections)
|
75
84
|
if name is not None:
|
76
85
|
pulumi.set(__self__, "name", name)
|
77
86
|
if offline is not None:
|
@@ -83,7 +92,7 @@ class BackendSetBackendArgs:
|
|
83
92
|
@pulumi.getter(name="ipAddress")
|
84
93
|
def ip_address(self) -> pulumi.Input[str]:
|
85
94
|
"""
|
86
|
-
The IP address of the backend server. Example: `10.0.0.3`
|
95
|
+
(Updatable) The IP address of the backend server. Example: `10.0.0.3`
|
87
96
|
"""
|
88
97
|
return pulumi.get(self, "ip_address")
|
89
98
|
|
@@ -107,7 +116,11 @@ class BackendSetBackendArgs:
|
|
107
116
|
@pulumi.getter
|
108
117
|
def backup(self) -> Optional[pulumi.Input[bool]]:
|
109
118
|
"""
|
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.
|
119
|
+
(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.
|
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`
|
111
124
|
"""
|
112
125
|
return pulumi.get(self, "backup")
|
113
126
|
|
@@ -119,7 +132,7 @@ class BackendSetBackendArgs:
|
|
119
132
|
@pulumi.getter
|
120
133
|
def drain(self) -> Optional[pulumi.Input[bool]]:
|
121
134
|
"""
|
122
|
-
Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
135
|
+
(Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
123
136
|
"""
|
124
137
|
return pulumi.get(self, "drain")
|
125
138
|
|
@@ -127,6 +140,18 @@ class BackendSetBackendArgs:
|
|
127
140
|
def drain(self, value: Optional[pulumi.Input[bool]]):
|
128
141
|
pulumi.set(self, "drain", value)
|
129
142
|
|
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
|
+
|
130
155
|
@property
|
131
156
|
@pulumi.getter
|
132
157
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -147,7 +172,7 @@ class BackendSetBackendArgs:
|
|
147
172
|
@pulumi.getter
|
148
173
|
def offline(self) -> Optional[pulumi.Input[bool]]:
|
149
174
|
"""
|
150
|
-
Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
175
|
+
(Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
151
176
|
"""
|
152
177
|
return pulumi.get(self, "offline")
|
153
178
|
|
@@ -159,7 +184,7 @@ class BackendSetBackendArgs:
|
|
159
184
|
@pulumi.getter
|
160
185
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
161
186
|
"""
|
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`
|
187
|
+
(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`
|
163
188
|
"""
|
164
189
|
return pulumi.get(self, "weight")
|
165
190
|
|
@@ -794,6 +819,7 @@ class ListenerSslConfigurationArgs:
|
|
794
819
|
certificate_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
795
820
|
certificate_name: Optional[pulumi.Input[str]] = None,
|
796
821
|
cipher_suite_name: Optional[pulumi.Input[str]] = None,
|
822
|
+
has_session_resumption: Optional[pulumi.Input[bool]] = None,
|
797
823
|
protocols: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
798
824
|
server_order_preference: Optional[pulumi.Input[str]] = None,
|
799
825
|
trusted_certificate_authority_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
@@ -816,6 +842,7 @@ class ListenerSslConfigurationArgs:
|
|
816
842
|
* The `oci-customized-ssl-cipher-suite` Oracle reserved cipher suite name is not accepted as valid input for this field.
|
817
843
|
|
818
844
|
example: `example_cipher_suite`
|
845
|
+
:param pulumi.Input[bool] has_session_resumption: (Updatable) Whether the load balancer listener should resume an encrypted session by reusing the cryptographic parameters of a previous TLS session, without having to perform a full handshake again. If "true", the service resumes the previous TLS encrypted session. If "false", the service starts a new TLS encrypted session. Enabling session resumption improves performance but provides a lower level of security. Disabling session resumption improves security but reduces performance. Example: `true`
|
819
846
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] protocols: (Updatable) A list of SSL protocols the load balancer must support for HTTPS or SSL connections.
|
820
847
|
|
821
848
|
The load balancer uses SSL protocols to establish a secure connection between a client and a server. A secure connection ensures that all data passed between the client and the server is private.
|
@@ -852,6 +879,8 @@ class ListenerSslConfigurationArgs:
|
|
852
879
|
pulumi.set(__self__, "certificate_name", certificate_name)
|
853
880
|
if cipher_suite_name is not None:
|
854
881
|
pulumi.set(__self__, "cipher_suite_name", cipher_suite_name)
|
882
|
+
if has_session_resumption is not None:
|
883
|
+
pulumi.set(__self__, "has_session_resumption", has_session_resumption)
|
855
884
|
if protocols is not None:
|
856
885
|
pulumi.set(__self__, "protocols", protocols)
|
857
886
|
if server_order_preference is not None:
|
@@ -912,6 +941,18 @@ class ListenerSslConfigurationArgs:
|
|
912
941
|
def cipher_suite_name(self, value: Optional[pulumi.Input[str]]):
|
913
942
|
pulumi.set(self, "cipher_suite_name", value)
|
914
943
|
|
944
|
+
@property
|
945
|
+
@pulumi.getter(name="hasSessionResumption")
|
946
|
+
def has_session_resumption(self) -> Optional[pulumi.Input[bool]]:
|
947
|
+
"""
|
948
|
+
(Updatable) Whether the load balancer listener should resume an encrypted session by reusing the cryptographic parameters of a previous TLS session, without having to perform a full handshake again. If "true", the service resumes the previous TLS encrypted session. If "false", the service starts a new TLS encrypted session. Enabling session resumption improves performance but provides a lower level of security. Disabling session resumption improves security but reduces performance. Example: `true`
|
949
|
+
"""
|
950
|
+
return pulumi.get(self, "has_session_resumption")
|
951
|
+
|
952
|
+
@has_session_resumption.setter
|
953
|
+
def has_session_resumption(self, value: Optional[pulumi.Input[bool]]):
|
954
|
+
pulumi.set(self, "has_session_resumption", value)
|
955
|
+
|
915
956
|
@property
|
916
957
|
@pulumi.getter
|
917
958
|
def protocols(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -1006,7 +1047,6 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1006
1047
|
"""
|
1007
1048
|
:param pulumi.Input[str] ip_address: An IP address. Example: `192.168.0.3`
|
1008
1049
|
: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.
|
1010
1050
|
"""
|
1011
1051
|
if ip_address is not None:
|
1012
1052
|
pulumi.set(__self__, "ip_address", ip_address)
|
@@ -1042,9 +1082,6 @@ class LoadBalancerIpAddressDetailArgs:
|
|
1042
1082
|
@property
|
1043
1083
|
@pulumi.getter(name="reservedIps")
|
1044
1084
|
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
|
-
"""
|
1048
1085
|
return pulumi.get(self, "reserved_ips")
|
1049
1086
|
|
1050
1087
|
@reserved_ips.setter
|
@@ -1057,7 +1094,15 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1057
1094
|
def __init__(__self__, *,
|
1058
1095
|
id: Optional[pulumi.Input[str]] = None):
|
1059
1096
|
"""
|
1060
|
-
:param pulumi.Input[str] id: Ocid of the
|
1097
|
+
:param pulumi.Input[str] id: Ocid of the Reserved IP/Public Ip created with VCN.
|
1098
|
+
|
1099
|
+
Reserved IPs are IPs which already registered using VCN API.
|
1100
|
+
|
1101
|
+
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.
|
1102
|
+
|
1103
|
+
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1104
|
+
|
1105
|
+
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.
|
1061
1106
|
"""
|
1062
1107
|
if id is not None:
|
1063
1108
|
pulumi.set(__self__, "id", id)
|
@@ -1066,7 +1111,15 @@ class LoadBalancerIpAddressDetailReservedIpArgs:
|
|
1066
1111
|
@pulumi.getter
|
1067
1112
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1068
1113
|
"""
|
1069
|
-
Ocid of the
|
1114
|
+
Ocid of the Reserved IP/Public Ip created with VCN.
|
1115
|
+
|
1116
|
+
Reserved IPs are IPs which already registered using VCN API.
|
1117
|
+
|
1118
|
+
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.
|
1119
|
+
|
1120
|
+
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1121
|
+
|
1122
|
+
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.
|
1070
1123
|
"""
|
1071
1124
|
return pulumi.get(self, "id")
|
1072
1125
|
|
@@ -1080,7 +1133,15 @@ class LoadBalancerReservedIpArgs:
|
|
1080
1133
|
def __init__(__self__, *,
|
1081
1134
|
id: Optional[pulumi.Input[str]] = None):
|
1082
1135
|
"""
|
1083
|
-
:param pulumi.Input[str] id: Ocid of the
|
1136
|
+
:param pulumi.Input[str] id: Ocid of the Reserved IP/Public Ip created with VCN.
|
1137
|
+
|
1138
|
+
Reserved IPs are IPs which already registered using VCN API.
|
1139
|
+
|
1140
|
+
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.
|
1141
|
+
|
1142
|
+
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1143
|
+
|
1144
|
+
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.
|
1084
1145
|
"""
|
1085
1146
|
if id is not None:
|
1086
1147
|
pulumi.set(__self__, "id", id)
|
@@ -1089,7 +1150,15 @@ class LoadBalancerReservedIpArgs:
|
|
1089
1150
|
@pulumi.getter
|
1090
1151
|
def id(self) -> Optional[pulumi.Input[str]]:
|
1091
1152
|
"""
|
1092
|
-
Ocid of the
|
1153
|
+
Ocid of the Reserved IP/Public Ip created with VCN.
|
1154
|
+
|
1155
|
+
Reserved IPs are IPs which already registered using VCN API.
|
1156
|
+
|
1157
|
+
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.
|
1158
|
+
|
1159
|
+
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1160
|
+
|
1161
|
+
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.
|
1093
1162
|
"""
|
1094
1163
|
return pulumi.get(self, "id")
|
1095
1164
|
|
@@ -1359,9 +1428,11 @@ class RuleSetItemArgs:
|
|
1359
1428
|
allowed_methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1360
1429
|
are_invalid_characters_allowed: Optional[pulumi.Input[bool]] = None,
|
1361
1430
|
conditions: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]]] = None,
|
1431
|
+
default_max_connections: Optional[pulumi.Input[int]] = None,
|
1362
1432
|
description: Optional[pulumi.Input[str]] = None,
|
1363
1433
|
header: Optional[pulumi.Input[str]] = None,
|
1364
1434
|
http_large_header_size_in_kb: Optional[pulumi.Input[int]] = None,
|
1435
|
+
ip_max_connections: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]] = None,
|
1365
1436
|
prefix: Optional[pulumi.Input[str]] = None,
|
1366
1437
|
redirect_uri: Optional[pulumi.Input['RuleSetItemRedirectUriArgs']] = None,
|
1367
1438
|
response_code: Optional[pulumi.Input[int]] = None,
|
@@ -1369,7 +1440,7 @@ class RuleSetItemArgs:
|
|
1369
1440
|
suffix: Optional[pulumi.Input[str]] = None,
|
1370
1441
|
value: Optional[pulumi.Input[str]] = None):
|
1371
1442
|
"""
|
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`
|
1443
|
+
: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`, `IP_BASED_MAX_CONNECTIONS`, `REDIRECT`, `REMOVE_HTTP_REQUEST_HEADER`, `REMOVE_HTTP_RESPONSE_HEADER`
|
1373
1444
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_methods: (Updatable) The list of HTTP methods allowed for this listener.
|
1374
1445
|
|
1375
1446
|
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).
|
@@ -1381,11 +1452,13 @@ class RuleSetItemArgs:
|
|
1381
1452
|
Example: ["GET", "PUT", "POST", "PROPFIND"]
|
1382
1453
|
: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
|
1383
1454
|
:param pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]] conditions: (Updatable)
|
1455
|
+
: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.
|
1384
1456
|
:param pulumi.Input[str] description: (Updatable) A brief description of the access control rule. Avoid entering confidential information.
|
1385
1457
|
|
1386
1458
|
example: `192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.`
|
1387
1459
|
:param pulumi.Input[str] header: (Updatable) A header name that conforms to RFC 7230. Example: `example_header_name`
|
1388
1460
|
: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.
|
1461
|
+
: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
|
1389
1462
|
: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:
|
1390
1463
|
* value cannot contain `$`
|
1391
1464
|
* value cannot contain patterns like `{variable_name}`. They are reserved for future extensions. Currently, such values are invalid.
|
@@ -1446,12 +1519,16 @@ class RuleSetItemArgs:
|
|
1446
1519
|
pulumi.set(__self__, "are_invalid_characters_allowed", are_invalid_characters_allowed)
|
1447
1520
|
if conditions is not None:
|
1448
1521
|
pulumi.set(__self__, "conditions", conditions)
|
1522
|
+
if default_max_connections is not None:
|
1523
|
+
pulumi.set(__self__, "default_max_connections", default_max_connections)
|
1449
1524
|
if description is not None:
|
1450
1525
|
pulumi.set(__self__, "description", description)
|
1451
1526
|
if header is not None:
|
1452
1527
|
pulumi.set(__self__, "header", header)
|
1453
1528
|
if http_large_header_size_in_kb is not None:
|
1454
1529
|
pulumi.set(__self__, "http_large_header_size_in_kb", http_large_header_size_in_kb)
|
1530
|
+
if ip_max_connections is not None:
|
1531
|
+
pulumi.set(__self__, "ip_max_connections", ip_max_connections)
|
1455
1532
|
if prefix is not None:
|
1456
1533
|
pulumi.set(__self__, "prefix", prefix)
|
1457
1534
|
if redirect_uri is not None:
|
@@ -1469,7 +1546,7 @@ class RuleSetItemArgs:
|
|
1469
1546
|
@pulumi.getter
|
1470
1547
|
def action(self) -> pulumi.Input[str]:
|
1471
1548
|
"""
|
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`
|
1549
|
+
(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`
|
1473
1550
|
"""
|
1474
1551
|
return pulumi.get(self, "action")
|
1475
1552
|
|
@@ -1521,6 +1598,18 @@ class RuleSetItemArgs:
|
|
1521
1598
|
def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemConditionArgs']]]]):
|
1522
1599
|
pulumi.set(self, "conditions", value)
|
1523
1600
|
|
1601
|
+
@property
|
1602
|
+
@pulumi.getter(name="defaultMaxConnections")
|
1603
|
+
def default_max_connections(self) -> Optional[pulumi.Input[int]]:
|
1604
|
+
"""
|
1605
|
+
(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.
|
1606
|
+
"""
|
1607
|
+
return pulumi.get(self, "default_max_connections")
|
1608
|
+
|
1609
|
+
@default_max_connections.setter
|
1610
|
+
def default_max_connections(self, value: Optional[pulumi.Input[int]]):
|
1611
|
+
pulumi.set(self, "default_max_connections", value)
|
1612
|
+
|
1524
1613
|
@property
|
1525
1614
|
@pulumi.getter
|
1526
1615
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -1559,6 +1648,18 @@ class RuleSetItemArgs:
|
|
1559
1648
|
def http_large_header_size_in_kb(self, value: Optional[pulumi.Input[int]]):
|
1560
1649
|
pulumi.set(self, "http_large_header_size_in_kb", value)
|
1561
1650
|
|
1651
|
+
@property
|
1652
|
+
@pulumi.getter(name="ipMaxConnections")
|
1653
|
+
def ip_max_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]]:
|
1654
|
+
"""
|
1655
|
+
(Updatable) An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
|
1656
|
+
"""
|
1657
|
+
return pulumi.get(self, "ip_max_connections")
|
1658
|
+
|
1659
|
+
@ip_max_connections.setter
|
1660
|
+
def ip_max_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RuleSetItemIpMaxConnectionArgs']]]]):
|
1661
|
+
pulumi.set(self, "ip_max_connections", value)
|
1662
|
+
|
1562
1663
|
@property
|
1563
1664
|
@pulumi.getter
|
1564
1665
|
def prefix(self) -> Optional[pulumi.Input[str]]:
|
@@ -1745,6 +1846,45 @@ class RuleSetItemConditionArgs:
|
|
1745
1846
|
pulumi.set(self, "operator", value)
|
1746
1847
|
|
1747
1848
|
|
1849
|
+
@pulumi.input_type
|
1850
|
+
class RuleSetItemIpMaxConnectionArgs:
|
1851
|
+
def __init__(__self__, *,
|
1852
|
+
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1853
|
+
max_connections: Optional[pulumi.Input[int]] = None):
|
1854
|
+
"""
|
1855
|
+
: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"]'
|
1856
|
+
: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.
|
1857
|
+
"""
|
1858
|
+
if ip_addresses is not None:
|
1859
|
+
pulumi.set(__self__, "ip_addresses", ip_addresses)
|
1860
|
+
if max_connections is not None:
|
1861
|
+
pulumi.set(__self__, "max_connections", max_connections)
|
1862
|
+
|
1863
|
+
@property
|
1864
|
+
@pulumi.getter(name="ipAddresses")
|
1865
|
+
def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1866
|
+
"""
|
1867
|
+
(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"]'
|
1868
|
+
"""
|
1869
|
+
return pulumi.get(self, "ip_addresses")
|
1870
|
+
|
1871
|
+
@ip_addresses.setter
|
1872
|
+
def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1873
|
+
pulumi.set(self, "ip_addresses", value)
|
1874
|
+
|
1875
|
+
@property
|
1876
|
+
@pulumi.getter(name="maxConnections")
|
1877
|
+
def max_connections(self) -> Optional[pulumi.Input[int]]:
|
1878
|
+
"""
|
1879
|
+
(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.
|
1880
|
+
"""
|
1881
|
+
return pulumi.get(self, "max_connections")
|
1882
|
+
|
1883
|
+
@max_connections.setter
|
1884
|
+
def max_connections(self, value: Optional[pulumi.Input[int]]):
|
1885
|
+
pulumi.set(self, "max_connections", value)
|
1886
|
+
|
1887
|
+
|
1748
1888
|
@pulumi.input_type
|
1749
1889
|
class RuleSetItemRedirectUriArgs:
|
1750
1890
|
def __init__(__self__, *,
|
@@ -20,6 +20,7 @@ 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,
|
23
24
|
offline: Optional[pulumi.Input[bool]] = None,
|
24
25
|
weight: Optional[pulumi.Input[int]] = None):
|
25
26
|
"""
|
@@ -34,6 +35,7 @@ class BackendArgs:
|
|
34
35
|
|
35
36
|
Example: `false`
|
36
37
|
: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`
|
37
39
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
38
40
|
: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`
|
39
41
|
|
@@ -49,6 +51,8 @@ class BackendArgs:
|
|
49
51
|
pulumi.set(__self__, "backup", backup)
|
50
52
|
if drain is not None:
|
51
53
|
pulumi.set(__self__, "drain", drain)
|
54
|
+
if max_connections is not None:
|
55
|
+
pulumi.set(__self__, "max_connections", max_connections)
|
52
56
|
if offline is not None:
|
53
57
|
pulumi.set(__self__, "offline", offline)
|
54
58
|
if weight is not None:
|
@@ -130,6 +134,18 @@ class BackendArgs:
|
|
130
134
|
def drain(self, value: Optional[pulumi.Input[bool]]):
|
131
135
|
pulumi.set(self, "drain", value)
|
132
136
|
|
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
|
+
|
133
149
|
@property
|
134
150
|
@pulumi.getter
|
135
151
|
def offline(self) -> Optional[pulumi.Input[bool]]:
|
@@ -167,6 +183,7 @@ class _BackendState:
|
|
167
183
|
drain: Optional[pulumi.Input[bool]] = None,
|
168
184
|
ip_address: Optional[pulumi.Input[str]] = None,
|
169
185
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
186
|
+
max_connections: Optional[pulumi.Input[int]] = None,
|
170
187
|
name: Optional[pulumi.Input[str]] = None,
|
171
188
|
offline: Optional[pulumi.Input[bool]] = None,
|
172
189
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -183,6 +200,7 @@ class _BackendState:
|
|
183
200
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
184
201
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
185
202
|
: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`
|
186
204
|
: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`
|
187
205
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
188
206
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
@@ -202,6 +220,8 @@ class _BackendState:
|
|
202
220
|
pulumi.set(__self__, "ip_address", ip_address)
|
203
221
|
if load_balancer_id is not None:
|
204
222
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
223
|
+
if max_connections is not None:
|
224
|
+
pulumi.set(__self__, "max_connections", max_connections)
|
205
225
|
if name is not None:
|
206
226
|
pulumi.set(__self__, "name", name)
|
207
227
|
if offline is not None:
|
@@ -277,6 +297,18 @@ class _BackendState:
|
|
277
297
|
def load_balancer_id(self, value: Optional[pulumi.Input[str]]):
|
278
298
|
pulumi.set(self, "load_balancer_id", value)
|
279
299
|
|
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
|
+
|
280
312
|
@property
|
281
313
|
@pulumi.getter
|
282
314
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -349,6 +381,7 @@ class Backend(pulumi.CustomResource):
|
|
349
381
|
drain: Optional[pulumi.Input[bool]] = None,
|
350
382
|
ip_address: Optional[pulumi.Input[str]] = None,
|
351
383
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
384
|
+
max_connections: Optional[pulumi.Input[int]] = None,
|
352
385
|
offline: Optional[pulumi.Input[bool]] = None,
|
353
386
|
port: Optional[pulumi.Input[int]] = None,
|
354
387
|
weight: Optional[pulumi.Input[int]] = None,
|
@@ -371,6 +404,7 @@ class Backend(pulumi.CustomResource):
|
|
371
404
|
port=backend_port,
|
372
405
|
backup=backend_backup,
|
373
406
|
drain=backend_drain,
|
407
|
+
max_connections=backend_max_connections,
|
374
408
|
offline=backend_offline,
|
375
409
|
weight=backend_weight)
|
376
410
|
```
|
@@ -394,6 +428,7 @@ class Backend(pulumi.CustomResource):
|
|
394
428
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
395
429
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
396
430
|
: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`
|
397
432
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
398
433
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
399
434
|
: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`
|
@@ -426,6 +461,7 @@ class Backend(pulumi.CustomResource):
|
|
426
461
|
port=backend_port,
|
427
462
|
backup=backend_backup,
|
428
463
|
drain=backend_drain,
|
464
|
+
max_connections=backend_max_connections,
|
429
465
|
offline=backend_offline,
|
430
466
|
weight=backend_weight)
|
431
467
|
```
|
@@ -458,6 +494,7 @@ class Backend(pulumi.CustomResource):
|
|
458
494
|
drain: Optional[pulumi.Input[bool]] = None,
|
459
495
|
ip_address: Optional[pulumi.Input[str]] = None,
|
460
496
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
497
|
+
max_connections: Optional[pulumi.Input[int]] = None,
|
461
498
|
offline: Optional[pulumi.Input[bool]] = None,
|
462
499
|
port: Optional[pulumi.Input[int]] = None,
|
463
500
|
weight: Optional[pulumi.Input[int]] = None,
|
@@ -481,6 +518,7 @@ class Backend(pulumi.CustomResource):
|
|
481
518
|
if load_balancer_id is None and not opts.urn:
|
482
519
|
raise TypeError("Missing required property 'load_balancer_id'")
|
483
520
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
521
|
+
__props__.__dict__["max_connections"] = max_connections
|
484
522
|
__props__.__dict__["offline"] = offline
|
485
523
|
if port is None and not opts.urn:
|
486
524
|
raise TypeError("Missing required property 'port'")
|
@@ -503,6 +541,7 @@ class Backend(pulumi.CustomResource):
|
|
503
541
|
drain: Optional[pulumi.Input[bool]] = None,
|
504
542
|
ip_address: Optional[pulumi.Input[str]] = None,
|
505
543
|
load_balancer_id: Optional[pulumi.Input[str]] = None,
|
544
|
+
max_connections: Optional[pulumi.Input[int]] = None,
|
506
545
|
name: Optional[pulumi.Input[str]] = None,
|
507
546
|
offline: Optional[pulumi.Input[bool]] = None,
|
508
547
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -524,6 +563,7 @@ class Backend(pulumi.CustomResource):
|
|
524
563
|
:param pulumi.Input[bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
525
564
|
:param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
526
565
|
: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`
|
527
567
|
: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`
|
528
568
|
:param pulumi.Input[bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
529
569
|
:param pulumi.Input[int] port: The communication port for the backend server. Example: `8080`
|
@@ -542,6 +582,7 @@ class Backend(pulumi.CustomResource):
|
|
542
582
|
__props__.__dict__["drain"] = drain
|
543
583
|
__props__.__dict__["ip_address"] = ip_address
|
544
584
|
__props__.__dict__["load_balancer_id"] = load_balancer_id
|
585
|
+
__props__.__dict__["max_connections"] = max_connections
|
545
586
|
__props__.__dict__["name"] = name
|
546
587
|
__props__.__dict__["offline"] = offline
|
547
588
|
__props__.__dict__["port"] = port
|
@@ -593,6 +634,14 @@ class Backend(pulumi.CustomResource):
|
|
593
634
|
"""
|
594
635
|
return pulumi.get(self, "load_balancer_id")
|
595
636
|
|
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
|
+
|
596
645
|
@property
|
597
646
|
@pulumi.getter
|
598
647
|
def name(self) -> pulumi.Output[str]:
|