pulumi-oci 1.31.0a1712729931__py3-none-any.whl → 1.31.0a1712742264__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/dataflow/get_invoke_run.py +11 -1
- pulumi_oci/dataflow/invoke_run.py +49 -0
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/devops/_inputs.py +380 -10
- pulumi_oci/devops/outputs.py +953 -32
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/networkfirewall/outputs.py +12 -16
- pulumi_oci/networkloadbalancer/_inputs.py +222 -10
- pulumi_oci/networkloadbalancer/backend_set.py +70 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
- pulumi_oci/networkloadbalancer/outputs.py +397 -28
- pulumi_oci/stackmonitoring/_inputs.py +209 -1
- pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
- pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
- pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
- pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
- pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
- pulumi_oci/stackmonitoring/outputs.py +436 -1
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/top_level.txt +0 -0
@@ -13,18 +13,22 @@ from . import outputs
|
|
13
13
|
__all__ = [
|
14
14
|
'BackendSetBackend',
|
15
15
|
'BackendSetHealthChecker',
|
16
|
+
'BackendSetHealthCheckerDns',
|
16
17
|
'NetworkLoadBalancerIpAddress',
|
17
18
|
'NetworkLoadBalancerIpAddressReservedIp',
|
18
19
|
'NetworkLoadBalancerReservedIp',
|
19
20
|
'NetworkLoadBalancersBackendSetsUnifiedBackend',
|
20
21
|
'NetworkLoadBalancersBackendSetsUnifiedHealthChecker',
|
22
|
+
'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns',
|
21
23
|
'GetBackendHealthHealthCheckResultResult',
|
22
24
|
'GetBackendSetBackendResult',
|
23
25
|
'GetBackendSetHealthCheckerResult',
|
26
|
+
'GetBackendSetHealthCheckerDnResult',
|
24
27
|
'GetBackendSetsBackendSetCollectionResult',
|
25
28
|
'GetBackendSetsBackendSetCollectionItemResult',
|
26
29
|
'GetBackendSetsBackendSetCollectionItemBackendResult',
|
27
30
|
'GetBackendSetsBackendSetCollectionItemHealthCheckerResult',
|
31
|
+
'GetBackendSetsBackendSetCollectionItemHealthCheckerDnResult',
|
28
32
|
'GetBackendSetsFilterResult',
|
29
33
|
'GetBackendsBackendCollectionResult',
|
30
34
|
'GetBackendsBackendCollectionItemResult',
|
@@ -95,7 +99,7 @@ class BackendSetBackend(dict):
|
|
95
99
|
|
96
100
|
Example: `example_backend_set`
|
97
101
|
:param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
98
|
-
:param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
102
|
+
:param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
99
103
|
"""
|
100
104
|
pulumi.set(__self__, "port", port)
|
101
105
|
if ip_address is not None:
|
@@ -177,7 +181,7 @@ class BackendSetBackend(dict):
|
|
177
181
|
@pulumi.getter
|
178
182
|
def weight(self) -> Optional[int]:
|
179
183
|
"""
|
180
|
-
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
184
|
+
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
181
185
|
"""
|
182
186
|
return pulumi.get(self, "weight")
|
183
187
|
|
@@ -215,6 +219,7 @@ class BackendSetHealthChecker(dict):
|
|
215
219
|
|
216
220
|
def __init__(__self__, *,
|
217
221
|
protocol: str,
|
222
|
+
dns: Optional['outputs.BackendSetHealthCheckerDns'] = None,
|
218
223
|
interval_in_millis: Optional[int] = None,
|
219
224
|
port: Optional[int] = None,
|
220
225
|
request_data: Optional[str] = None,
|
@@ -225,7 +230,8 @@ class BackendSetHealthChecker(dict):
|
|
225
230
|
timeout_in_millis: Optional[int] = None,
|
226
231
|
url_path: Optional[str] = None):
|
227
232
|
"""
|
228
|
-
:param str protocol: (Updatable) The protocol the health check must use; either HTTP
|
233
|
+
:param str protocol: (Updatable) The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
234
|
+
:param 'BackendSetHealthCheckerDnsArgs' dns: (Updatable) DNS healthcheck configurations.
|
229
235
|
:param int interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
230
236
|
:param int port: (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
231
237
|
:param str request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
@@ -237,6 +243,8 @@ class BackendSetHealthChecker(dict):
|
|
237
243
|
:param str url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
|
238
244
|
"""
|
239
245
|
pulumi.set(__self__, "protocol", protocol)
|
246
|
+
if dns is not None:
|
247
|
+
pulumi.set(__self__, "dns", dns)
|
240
248
|
if interval_in_millis is not None:
|
241
249
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
242
250
|
if port is not None:
|
@@ -260,10 +268,18 @@ class BackendSetHealthChecker(dict):
|
|
260
268
|
@pulumi.getter
|
261
269
|
def protocol(self) -> str:
|
262
270
|
"""
|
263
|
-
(Updatable) The protocol the health check must use; either HTTP
|
271
|
+
(Updatable) The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
264
272
|
"""
|
265
273
|
return pulumi.get(self, "protocol")
|
266
274
|
|
275
|
+
@property
|
276
|
+
@pulumi.getter
|
277
|
+
def dns(self) -> Optional['outputs.BackendSetHealthCheckerDns']:
|
278
|
+
"""
|
279
|
+
(Updatable) DNS healthcheck configurations.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "dns")
|
282
|
+
|
267
283
|
@property
|
268
284
|
@pulumi.getter(name="intervalInMillis")
|
269
285
|
def interval_in_millis(self) -> Optional[int]:
|
@@ -337,6 +353,95 @@ class BackendSetHealthChecker(dict):
|
|
337
353
|
return pulumi.get(self, "url_path")
|
338
354
|
|
339
355
|
|
356
|
+
@pulumi.output_type
|
357
|
+
class BackendSetHealthCheckerDns(dict):
|
358
|
+
@staticmethod
|
359
|
+
def __key_warning(key: str):
|
360
|
+
suggest = None
|
361
|
+
if key == "domainName":
|
362
|
+
suggest = "domain_name"
|
363
|
+
elif key == "queryClass":
|
364
|
+
suggest = "query_class"
|
365
|
+
elif key == "queryType":
|
366
|
+
suggest = "query_type"
|
367
|
+
elif key == "transportProtocol":
|
368
|
+
suggest = "transport_protocol"
|
369
|
+
|
370
|
+
if suggest:
|
371
|
+
pulumi.log.warn(f"Key '{key}' not found in BackendSetHealthCheckerDns. Access the value via the '{suggest}' property getter instead.")
|
372
|
+
|
373
|
+
def __getitem__(self, key: str) -> Any:
|
374
|
+
BackendSetHealthCheckerDns.__key_warning(key)
|
375
|
+
return super().__getitem__(key)
|
376
|
+
|
377
|
+
def get(self, key: str, default = None) -> Any:
|
378
|
+
BackendSetHealthCheckerDns.__key_warning(key)
|
379
|
+
return super().get(key, default)
|
380
|
+
|
381
|
+
def __init__(__self__, *,
|
382
|
+
domain_name: str,
|
383
|
+
query_class: Optional[str] = None,
|
384
|
+
query_type: Optional[str] = None,
|
385
|
+
rcodes: Optional[Sequence[str]] = None,
|
386
|
+
transport_protocol: Optional[str] = None):
|
387
|
+
"""
|
388
|
+
:param str domain_name: (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
389
|
+
:param str query_class: (Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
390
|
+
:param str query_type: (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
391
|
+
:param Sequence[str] rcodes: (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
392
|
+
:param str transport_protocol: (Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
393
|
+
"""
|
394
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
395
|
+
if query_class is not None:
|
396
|
+
pulumi.set(__self__, "query_class", query_class)
|
397
|
+
if query_type is not None:
|
398
|
+
pulumi.set(__self__, "query_type", query_type)
|
399
|
+
if rcodes is not None:
|
400
|
+
pulumi.set(__self__, "rcodes", rcodes)
|
401
|
+
if transport_protocol is not None:
|
402
|
+
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
403
|
+
|
404
|
+
@property
|
405
|
+
@pulumi.getter(name="domainName")
|
406
|
+
def domain_name(self) -> str:
|
407
|
+
"""
|
408
|
+
(Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
409
|
+
"""
|
410
|
+
return pulumi.get(self, "domain_name")
|
411
|
+
|
412
|
+
@property
|
413
|
+
@pulumi.getter(name="queryClass")
|
414
|
+
def query_class(self) -> Optional[str]:
|
415
|
+
"""
|
416
|
+
(Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
417
|
+
"""
|
418
|
+
return pulumi.get(self, "query_class")
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="queryType")
|
422
|
+
def query_type(self) -> Optional[str]:
|
423
|
+
"""
|
424
|
+
(Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "query_type")
|
427
|
+
|
428
|
+
@property
|
429
|
+
@pulumi.getter
|
430
|
+
def rcodes(self) -> Optional[Sequence[str]]:
|
431
|
+
"""
|
432
|
+
(Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
433
|
+
"""
|
434
|
+
return pulumi.get(self, "rcodes")
|
435
|
+
|
436
|
+
@property
|
437
|
+
@pulumi.getter(name="transportProtocol")
|
438
|
+
def transport_protocol(self) -> Optional[str]:
|
439
|
+
"""
|
440
|
+
(Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
441
|
+
"""
|
442
|
+
return pulumi.get(self, "transport_protocol")
|
443
|
+
|
444
|
+
|
340
445
|
@pulumi.output_type
|
341
446
|
class NetworkLoadBalancerIpAddress(dict):
|
342
447
|
@staticmethod
|
@@ -368,8 +473,8 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
368
473
|
is_public: Optional[bool] = None,
|
369
474
|
reserved_ips: Optional[Sequence['outputs.NetworkLoadBalancerIpAddressReservedIp']] = None):
|
370
475
|
"""
|
371
|
-
:param str ip_address:
|
372
|
-
:param str ip_version: IP version associated with
|
476
|
+
:param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
477
|
+
:param str ip_version: IP version associated with the listener.
|
373
478
|
:param bool is_public: Whether the IP address is public or private.
|
374
479
|
:param Sequence['NetworkLoadBalancerIpAddressReservedIpArgs'] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
|
375
480
|
"""
|
@@ -386,7 +491,7 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
386
491
|
@pulumi.getter(name="ipAddress")
|
387
492
|
def ip_address(self) -> Optional[str]:
|
388
493
|
"""
|
389
|
-
|
494
|
+
The IP address of the backend server. Example: `10.0.0.3`
|
390
495
|
"""
|
391
496
|
return pulumi.get(self, "ip_address")
|
392
497
|
|
@@ -394,7 +499,7 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
394
499
|
@pulumi.getter(name="ipVersion")
|
395
500
|
def ip_version(self) -> Optional[str]:
|
396
501
|
"""
|
397
|
-
IP version associated with
|
502
|
+
IP version associated with the listener.
|
398
503
|
"""
|
399
504
|
return pulumi.get(self, "ip_version")
|
400
505
|
|
@@ -533,7 +638,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
|
|
533
638
|
|
534
639
|
Example: `example_backend_set`
|
535
640
|
:param str target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
536
|
-
:param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
641
|
+
:param int weight: (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
537
642
|
"""
|
538
643
|
pulumi.set(__self__, "port", port)
|
539
644
|
if ip_address is not None:
|
@@ -615,7 +720,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackend(dict):
|
|
615
720
|
@pulumi.getter
|
616
721
|
def weight(self) -> Optional[int]:
|
617
722
|
"""
|
618
|
-
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
723
|
+
(Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
619
724
|
"""
|
620
725
|
return pulumi.get(self, "weight")
|
621
726
|
|
@@ -653,6 +758,7 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthChecker(dict):
|
|
653
758
|
|
654
759
|
def __init__(__self__, *,
|
655
760
|
protocol: str,
|
761
|
+
dns: Optional['outputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns'] = None,
|
656
762
|
interval_in_millis: Optional[int] = None,
|
657
763
|
port: Optional[int] = None,
|
658
764
|
request_data: Optional[str] = None,
|
@@ -664,6 +770,7 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthChecker(dict):
|
|
664
770
|
url_path: Optional[str] = None):
|
665
771
|
"""
|
666
772
|
:param str protocol: (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
|
773
|
+
:param 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs' dns: (Updatable) DNS healthcheck configurations.
|
667
774
|
:param int interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
668
775
|
:param int port: (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
669
776
|
:param str request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
@@ -675,6 +782,8 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthChecker(dict):
|
|
675
782
|
:param str url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
|
676
783
|
"""
|
677
784
|
pulumi.set(__self__, "protocol", protocol)
|
785
|
+
if dns is not None:
|
786
|
+
pulumi.set(__self__, "dns", dns)
|
678
787
|
if interval_in_millis is not None:
|
679
788
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
680
789
|
if port is not None:
|
@@ -702,6 +811,14 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthChecker(dict):
|
|
702
811
|
"""
|
703
812
|
return pulumi.get(self, "protocol")
|
704
813
|
|
814
|
+
@property
|
815
|
+
@pulumi.getter
|
816
|
+
def dns(self) -> Optional['outputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns']:
|
817
|
+
"""
|
818
|
+
(Updatable) DNS healthcheck configurations.
|
819
|
+
"""
|
820
|
+
return pulumi.get(self, "dns")
|
821
|
+
|
705
822
|
@property
|
706
823
|
@pulumi.getter(name="intervalInMillis")
|
707
824
|
def interval_in_millis(self) -> Optional[int]:
|
@@ -775,6 +892,95 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthChecker(dict):
|
|
775
892
|
return pulumi.get(self, "url_path")
|
776
893
|
|
777
894
|
|
895
|
+
@pulumi.output_type
|
896
|
+
class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns(dict):
|
897
|
+
@staticmethod
|
898
|
+
def __key_warning(key: str):
|
899
|
+
suggest = None
|
900
|
+
if key == "domainName":
|
901
|
+
suggest = "domain_name"
|
902
|
+
elif key == "queryClass":
|
903
|
+
suggest = "query_class"
|
904
|
+
elif key == "queryType":
|
905
|
+
suggest = "query_type"
|
906
|
+
elif key == "transportProtocol":
|
907
|
+
suggest = "transport_protocol"
|
908
|
+
|
909
|
+
if suggest:
|
910
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns. Access the value via the '{suggest}' property getter instead.")
|
911
|
+
|
912
|
+
def __getitem__(self, key: str) -> Any:
|
913
|
+
NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns.__key_warning(key)
|
914
|
+
return super().__getitem__(key)
|
915
|
+
|
916
|
+
def get(self, key: str, default = None) -> Any:
|
917
|
+
NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns.__key_warning(key)
|
918
|
+
return super().get(key, default)
|
919
|
+
|
920
|
+
def __init__(__self__, *,
|
921
|
+
domain_name: str,
|
922
|
+
query_class: Optional[str] = None,
|
923
|
+
query_type: Optional[str] = None,
|
924
|
+
rcodes: Optional[Sequence[str]] = None,
|
925
|
+
transport_protocol: Optional[str] = None):
|
926
|
+
"""
|
927
|
+
:param str domain_name: (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
928
|
+
:param str query_class: (Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
929
|
+
:param str query_type: (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
930
|
+
:param Sequence[str] rcodes: (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
931
|
+
:param str transport_protocol: (Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
932
|
+
"""
|
933
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
934
|
+
if query_class is not None:
|
935
|
+
pulumi.set(__self__, "query_class", query_class)
|
936
|
+
if query_type is not None:
|
937
|
+
pulumi.set(__self__, "query_type", query_type)
|
938
|
+
if rcodes is not None:
|
939
|
+
pulumi.set(__self__, "rcodes", rcodes)
|
940
|
+
if transport_protocol is not None:
|
941
|
+
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
942
|
+
|
943
|
+
@property
|
944
|
+
@pulumi.getter(name="domainName")
|
945
|
+
def domain_name(self) -> str:
|
946
|
+
"""
|
947
|
+
(Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
948
|
+
"""
|
949
|
+
return pulumi.get(self, "domain_name")
|
950
|
+
|
951
|
+
@property
|
952
|
+
@pulumi.getter(name="queryClass")
|
953
|
+
def query_class(self) -> Optional[str]:
|
954
|
+
"""
|
955
|
+
(Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
956
|
+
"""
|
957
|
+
return pulumi.get(self, "query_class")
|
958
|
+
|
959
|
+
@property
|
960
|
+
@pulumi.getter(name="queryType")
|
961
|
+
def query_type(self) -> Optional[str]:
|
962
|
+
"""
|
963
|
+
(Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
964
|
+
"""
|
965
|
+
return pulumi.get(self, "query_type")
|
966
|
+
|
967
|
+
@property
|
968
|
+
@pulumi.getter
|
969
|
+
def rcodes(self) -> Optional[Sequence[str]]:
|
970
|
+
"""
|
971
|
+
(Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
972
|
+
"""
|
973
|
+
return pulumi.get(self, "rcodes")
|
974
|
+
|
975
|
+
@property
|
976
|
+
@pulumi.getter(name="transportProtocol")
|
977
|
+
def transport_protocol(self) -> Optional[str]:
|
978
|
+
"""
|
979
|
+
(Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
980
|
+
"""
|
981
|
+
return pulumi.get(self, "transport_protocol")
|
982
|
+
|
983
|
+
|
778
984
|
@pulumi.output_type
|
779
985
|
class GetBackendHealthHealthCheckResultResult(dict):
|
780
986
|
def __init__(__self__, *,
|
@@ -818,12 +1024,12 @@ class GetBackendSetBackendResult(dict):
|
|
818
1024
|
"""
|
819
1025
|
:param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
820
1026
|
:param bool is_backup: Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
|
821
|
-
:param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no
|
1027
|
+
:param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
|
822
1028
|
:param bool is_offline: Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
823
1029
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
824
1030
|
:param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
825
1031
|
:param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
826
|
-
:param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
1032
|
+
:param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
827
1033
|
"""
|
828
1034
|
pulumi.set(__self__, "ip_address", ip_address)
|
829
1035
|
pulumi.set(__self__, "is_backup", is_backup)
|
@@ -854,7 +1060,7 @@ class GetBackendSetBackendResult(dict):
|
|
854
1060
|
@pulumi.getter(name="isDrain")
|
855
1061
|
def is_drain(self) -> bool:
|
856
1062
|
"""
|
857
|
-
Whether the network load balancer should drain this server. Servers marked "isDrain" receive no
|
1063
|
+
Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
|
858
1064
|
"""
|
859
1065
|
return pulumi.get(self, "is_drain")
|
860
1066
|
|
@@ -894,7 +1100,7 @@ class GetBackendSetBackendResult(dict):
|
|
894
1100
|
@pulumi.getter
|
895
1101
|
def weight(self) -> int:
|
896
1102
|
"""
|
897
|
-
The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
1103
|
+
The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
898
1104
|
"""
|
899
1105
|
return pulumi.get(self, "weight")
|
900
1106
|
|
@@ -902,6 +1108,7 @@ class GetBackendSetBackendResult(dict):
|
|
902
1108
|
@pulumi.output_type
|
903
1109
|
class GetBackendSetHealthCheckerResult(dict):
|
904
1110
|
def __init__(__self__, *,
|
1111
|
+
dns: Sequence['outputs.GetBackendSetHealthCheckerDnResult'],
|
905
1112
|
interval_in_millis: int,
|
906
1113
|
port: int,
|
907
1114
|
protocol: str,
|
@@ -913,9 +1120,10 @@ class GetBackendSetHealthCheckerResult(dict):
|
|
913
1120
|
timeout_in_millis: int,
|
914
1121
|
url_path: str):
|
915
1122
|
"""
|
1123
|
+
:param Sequence['GetBackendSetHealthCheckerDnArgs'] dns: DNS healthcheck configurations.
|
916
1124
|
:param int interval_in_millis: The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
917
1125
|
:param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
918
|
-
:param str protocol: The protocol the health check must use; either HTTP
|
1126
|
+
:param str protocol: The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
919
1127
|
:param str request_data: Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
920
1128
|
:param str response_body_regex: A regular expression for parsing the response body from the backend server. Example: `^((?!false).|\\s)*$`
|
921
1129
|
:param str response_data: Base64 encoded pattern to be validated as UDP or TCP health check probe response.
|
@@ -924,6 +1132,7 @@ class GetBackendSetHealthCheckerResult(dict):
|
|
924
1132
|
:param int timeout_in_millis: The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: `3000`
|
925
1133
|
:param str url_path: The path against which to run the health check. Example: `/healthcheck`
|
926
1134
|
"""
|
1135
|
+
pulumi.set(__self__, "dns", dns)
|
927
1136
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
928
1137
|
pulumi.set(__self__, "port", port)
|
929
1138
|
pulumi.set(__self__, "protocol", protocol)
|
@@ -935,6 +1144,14 @@ class GetBackendSetHealthCheckerResult(dict):
|
|
935
1144
|
pulumi.set(__self__, "timeout_in_millis", timeout_in_millis)
|
936
1145
|
pulumi.set(__self__, "url_path", url_path)
|
937
1146
|
|
1147
|
+
@property
|
1148
|
+
@pulumi.getter
|
1149
|
+
def dns(self) -> Sequence['outputs.GetBackendSetHealthCheckerDnResult']:
|
1150
|
+
"""
|
1151
|
+
DNS healthcheck configurations.
|
1152
|
+
"""
|
1153
|
+
return pulumi.get(self, "dns")
|
1154
|
+
|
938
1155
|
@property
|
939
1156
|
@pulumi.getter(name="intervalInMillis")
|
940
1157
|
def interval_in_millis(self) -> int:
|
@@ -955,7 +1172,7 @@ class GetBackendSetHealthCheckerResult(dict):
|
|
955
1172
|
@pulumi.getter
|
956
1173
|
def protocol(self) -> str:
|
957
1174
|
"""
|
958
|
-
The protocol the health check must use; either HTTP
|
1175
|
+
The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
959
1176
|
"""
|
960
1177
|
return pulumi.get(self, "protocol")
|
961
1178
|
|
@@ -1016,6 +1233,68 @@ class GetBackendSetHealthCheckerResult(dict):
|
|
1016
1233
|
return pulumi.get(self, "url_path")
|
1017
1234
|
|
1018
1235
|
|
1236
|
+
@pulumi.output_type
|
1237
|
+
class GetBackendSetHealthCheckerDnResult(dict):
|
1238
|
+
def __init__(__self__, *,
|
1239
|
+
domain_name: str,
|
1240
|
+
query_class: str,
|
1241
|
+
query_type: str,
|
1242
|
+
rcodes: Sequence[str],
|
1243
|
+
transport_protocol: str):
|
1244
|
+
"""
|
1245
|
+
:param str domain_name: The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
1246
|
+
:param str query_class: The class the dns health check query to use; either IN or CH. Example: `IN`
|
1247
|
+
:param str query_type: The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
1248
|
+
:param Sequence[str] rcodes: An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
1249
|
+
:param str transport_protocol: DNS transport protocol; either UDP or TCP. Example: `UDP`
|
1250
|
+
"""
|
1251
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
1252
|
+
pulumi.set(__self__, "query_class", query_class)
|
1253
|
+
pulumi.set(__self__, "query_type", query_type)
|
1254
|
+
pulumi.set(__self__, "rcodes", rcodes)
|
1255
|
+
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
1256
|
+
|
1257
|
+
@property
|
1258
|
+
@pulumi.getter(name="domainName")
|
1259
|
+
def domain_name(self) -> str:
|
1260
|
+
"""
|
1261
|
+
The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
1262
|
+
"""
|
1263
|
+
return pulumi.get(self, "domain_name")
|
1264
|
+
|
1265
|
+
@property
|
1266
|
+
@pulumi.getter(name="queryClass")
|
1267
|
+
def query_class(self) -> str:
|
1268
|
+
"""
|
1269
|
+
The class the dns health check query to use; either IN or CH. Example: `IN`
|
1270
|
+
"""
|
1271
|
+
return pulumi.get(self, "query_class")
|
1272
|
+
|
1273
|
+
@property
|
1274
|
+
@pulumi.getter(name="queryType")
|
1275
|
+
def query_type(self) -> str:
|
1276
|
+
"""
|
1277
|
+
The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
1278
|
+
"""
|
1279
|
+
return pulumi.get(self, "query_type")
|
1280
|
+
|
1281
|
+
@property
|
1282
|
+
@pulumi.getter
|
1283
|
+
def rcodes(self) -> Sequence[str]:
|
1284
|
+
"""
|
1285
|
+
An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
1286
|
+
"""
|
1287
|
+
return pulumi.get(self, "rcodes")
|
1288
|
+
|
1289
|
+
@property
|
1290
|
+
@pulumi.getter(name="transportProtocol")
|
1291
|
+
def transport_protocol(self) -> str:
|
1292
|
+
"""
|
1293
|
+
DNS transport protocol; either UDP or TCP. Example: `UDP`
|
1294
|
+
"""
|
1295
|
+
return pulumi.get(self, "transport_protocol")
|
1296
|
+
|
1297
|
+
|
1019
1298
|
@pulumi.output_type
|
1020
1299
|
class GetBackendSetsBackendSetCollectionResult(dict):
|
1021
1300
|
def __init__(__self__, *,
|
@@ -1035,14 +1314,16 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1035
1314
|
health_checkers: Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerResult'],
|
1036
1315
|
id: str,
|
1037
1316
|
ip_version: str,
|
1317
|
+
is_fail_open: bool,
|
1038
1318
|
is_preserve_source: bool,
|
1039
1319
|
name: str,
|
1040
1320
|
network_load_balancer_id: str,
|
1041
1321
|
policy: str):
|
1042
1322
|
"""
|
1043
1323
|
:param Sequence['GetBackendSetsBackendSetCollectionItemBackendArgs'] backends: Array of backends.
|
1044
|
-
:param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
1324
|
+
:param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
1045
1325
|
:param str ip_version: IP version associated with the backend set.
|
1326
|
+
:param bool is_fail_open: If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
1046
1327
|
:param bool is_preserve_source: If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
1047
1328
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
1048
1329
|
:param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
@@ -1052,6 +1333,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1052
1333
|
pulumi.set(__self__, "health_checkers", health_checkers)
|
1053
1334
|
pulumi.set(__self__, "id", id)
|
1054
1335
|
pulumi.set(__self__, "ip_version", ip_version)
|
1336
|
+
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
1055
1337
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
1056
1338
|
pulumi.set(__self__, "name", name)
|
1057
1339
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
@@ -1069,7 +1351,7 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1069
1351
|
@pulumi.getter(name="healthCheckers")
|
1070
1352
|
def health_checkers(self) -> Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerResult']:
|
1071
1353
|
"""
|
1072
|
-
The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/
|
1354
|
+
The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
1073
1355
|
"""
|
1074
1356
|
return pulumi.get(self, "health_checkers")
|
1075
1357
|
|
@@ -1086,6 +1368,14 @@ class GetBackendSetsBackendSetCollectionItemResult(dict):
|
|
1086
1368
|
"""
|
1087
1369
|
return pulumi.get(self, "ip_version")
|
1088
1370
|
|
1371
|
+
@property
|
1372
|
+
@pulumi.getter(name="isFailOpen")
|
1373
|
+
def is_fail_open(self) -> bool:
|
1374
|
+
"""
|
1375
|
+
If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
1376
|
+
"""
|
1377
|
+
return pulumi.get(self, "is_fail_open")
|
1378
|
+
|
1089
1379
|
@property
|
1090
1380
|
@pulumi.getter(name="isPreserveSource")
|
1091
1381
|
def is_preserve_source(self) -> bool:
|
@@ -1133,12 +1423,12 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
|
|
1133
1423
|
"""
|
1134
1424
|
:param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
1135
1425
|
:param bool is_backup: Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example: `false`
|
1136
|
-
:param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no
|
1426
|
+
:param bool is_drain: Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
|
1137
1427
|
:param bool is_offline: Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
1138
1428
|
:param str name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
1139
1429
|
:param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
1140
1430
|
:param str target_id: The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
1141
|
-
:param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
1431
|
+
:param int weight: The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
1142
1432
|
"""
|
1143
1433
|
pulumi.set(__self__, "ip_address", ip_address)
|
1144
1434
|
pulumi.set(__self__, "is_backup", is_backup)
|
@@ -1169,7 +1459,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
|
|
1169
1459
|
@pulumi.getter(name="isDrain")
|
1170
1460
|
def is_drain(self) -> bool:
|
1171
1461
|
"""
|
1172
|
-
Whether the network load balancer should drain this server. Servers marked "isDrain" receive no
|
1462
|
+
Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: `false`
|
1173
1463
|
"""
|
1174
1464
|
return pulumi.get(self, "is_drain")
|
1175
1465
|
|
@@ -1209,7 +1499,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
|
|
1209
1499
|
@pulumi.getter
|
1210
1500
|
def weight(self) -> int:
|
1211
1501
|
"""
|
1212
|
-
The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/
|
1502
|
+
The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see [How Network Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
1213
1503
|
"""
|
1214
1504
|
return pulumi.get(self, "weight")
|
1215
1505
|
|
@@ -1217,6 +1507,7 @@ class GetBackendSetsBackendSetCollectionItemBackendResult(dict):
|
|
1217
1507
|
@pulumi.output_type
|
1218
1508
|
class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
1219
1509
|
def __init__(__self__, *,
|
1510
|
+
dns: Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerDnResult'],
|
1220
1511
|
interval_in_millis: int,
|
1221
1512
|
port: int,
|
1222
1513
|
protocol: str,
|
@@ -1228,9 +1519,10 @@ class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
|
1228
1519
|
timeout_in_millis: int,
|
1229
1520
|
url_path: str):
|
1230
1521
|
"""
|
1522
|
+
:param Sequence['GetBackendSetsBackendSetCollectionItemHealthCheckerDnArgs'] dns: DNS healthcheck configurations.
|
1231
1523
|
:param int interval_in_millis: The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
1232
1524
|
:param int port: The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`
|
1233
|
-
:param str protocol: The protocol the health check must use; either HTTP
|
1525
|
+
:param str protocol: The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
1234
1526
|
:param str request_data: Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
1235
1527
|
:param str response_body_regex: A regular expression for parsing the response body from the backend server. Example: `^((?!false).|\\s)*$`
|
1236
1528
|
:param str response_data: Base64 encoded pattern to be validated as UDP or TCP health check probe response.
|
@@ -1239,6 +1531,7 @@ class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
|
1239
1531
|
:param int timeout_in_millis: The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: `3000`
|
1240
1532
|
:param str url_path: The path against which to run the health check. Example: `/healthcheck`
|
1241
1533
|
"""
|
1534
|
+
pulumi.set(__self__, "dns", dns)
|
1242
1535
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
1243
1536
|
pulumi.set(__self__, "port", port)
|
1244
1537
|
pulumi.set(__self__, "protocol", protocol)
|
@@ -1250,6 +1543,14 @@ class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
|
1250
1543
|
pulumi.set(__self__, "timeout_in_millis", timeout_in_millis)
|
1251
1544
|
pulumi.set(__self__, "url_path", url_path)
|
1252
1545
|
|
1546
|
+
@property
|
1547
|
+
@pulumi.getter
|
1548
|
+
def dns(self) -> Sequence['outputs.GetBackendSetsBackendSetCollectionItemHealthCheckerDnResult']:
|
1549
|
+
"""
|
1550
|
+
DNS healthcheck configurations.
|
1551
|
+
"""
|
1552
|
+
return pulumi.get(self, "dns")
|
1553
|
+
|
1253
1554
|
@property
|
1254
1555
|
@pulumi.getter(name="intervalInMillis")
|
1255
1556
|
def interval_in_millis(self) -> int:
|
@@ -1270,7 +1571,7 @@ class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
|
1270
1571
|
@pulumi.getter
|
1271
1572
|
def protocol(self) -> str:
|
1272
1573
|
"""
|
1273
|
-
The protocol the health check must use; either HTTP
|
1574
|
+
The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
|
1274
1575
|
"""
|
1275
1576
|
return pulumi.get(self, "protocol")
|
1276
1577
|
|
@@ -1331,6 +1632,68 @@ class GetBackendSetsBackendSetCollectionItemHealthCheckerResult(dict):
|
|
1331
1632
|
return pulumi.get(self, "url_path")
|
1332
1633
|
|
1333
1634
|
|
1635
|
+
@pulumi.output_type
|
1636
|
+
class GetBackendSetsBackendSetCollectionItemHealthCheckerDnResult(dict):
|
1637
|
+
def __init__(__self__, *,
|
1638
|
+
domain_name: str,
|
1639
|
+
query_class: str,
|
1640
|
+
query_type: str,
|
1641
|
+
rcodes: Sequence[str],
|
1642
|
+
transport_protocol: str):
|
1643
|
+
"""
|
1644
|
+
:param str domain_name: The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
1645
|
+
:param str query_class: The class the dns health check query to use; either IN or CH. Example: `IN`
|
1646
|
+
:param str query_type: The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
1647
|
+
:param Sequence[str] rcodes: An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
1648
|
+
:param str transport_protocol: DNS transport protocol; either UDP or TCP. Example: `UDP`
|
1649
|
+
"""
|
1650
|
+
pulumi.set(__self__, "domain_name", domain_name)
|
1651
|
+
pulumi.set(__self__, "query_class", query_class)
|
1652
|
+
pulumi.set(__self__, "query_type", query_type)
|
1653
|
+
pulumi.set(__self__, "rcodes", rcodes)
|
1654
|
+
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
1655
|
+
|
1656
|
+
@property
|
1657
|
+
@pulumi.getter(name="domainName")
|
1658
|
+
def domain_name(self) -> str:
|
1659
|
+
"""
|
1660
|
+
The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
|
1661
|
+
"""
|
1662
|
+
return pulumi.get(self, "domain_name")
|
1663
|
+
|
1664
|
+
@property
|
1665
|
+
@pulumi.getter(name="queryClass")
|
1666
|
+
def query_class(self) -> str:
|
1667
|
+
"""
|
1668
|
+
The class the dns health check query to use; either IN or CH. Example: `IN`
|
1669
|
+
"""
|
1670
|
+
return pulumi.get(self, "query_class")
|
1671
|
+
|
1672
|
+
@property
|
1673
|
+
@pulumi.getter(name="queryType")
|
1674
|
+
def query_type(self) -> str:
|
1675
|
+
"""
|
1676
|
+
The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
1677
|
+
"""
|
1678
|
+
return pulumi.get(self, "query_type")
|
1679
|
+
|
1680
|
+
@property
|
1681
|
+
@pulumi.getter
|
1682
|
+
def rcodes(self) -> Sequence[str]:
|
1683
|
+
"""
|
1684
|
+
An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
1685
|
+
"""
|
1686
|
+
return pulumi.get(self, "rcodes")
|
1687
|
+
|
1688
|
+
@property
|
1689
|
+
@pulumi.getter(name="transportProtocol")
|
1690
|
+
def transport_protocol(self) -> str:
|
1691
|
+
"""
|
1692
|
+
DNS transport protocol; either UDP or TCP. Example: `UDP`
|
1693
|
+
"""
|
1694
|
+
return pulumi.get(self, "transport_protocol")
|
1695
|
+
|
1696
|
+
|
1334
1697
|
@pulumi.output_type
|
1335
1698
|
class GetBackendSetsFilterResult(dict):
|
1336
1699
|
def __init__(__self__, *,
|
@@ -1667,7 +2030,7 @@ class GetNetworkLoadBalancerIpAddressResult(dict):
|
|
1667
2030
|
reserved_ips: Sequence['outputs.GetNetworkLoadBalancerIpAddressReservedIpResult']):
|
1668
2031
|
"""
|
1669
2032
|
:param str ip_address: An IP address. Example: `192.168.0.3`
|
1670
|
-
:param str ip_version: IP version associated with
|
2033
|
+
:param str ip_version: IP version associated with the listener.
|
1671
2034
|
:param bool is_public: Whether the IP address is public or private.
|
1672
2035
|
:param Sequence['GetNetworkLoadBalancerIpAddressReservedIpArgs'] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
|
1673
2036
|
"""
|
@@ -1688,7 +2051,7 @@ class GetNetworkLoadBalancerIpAddressResult(dict):
|
|
1688
2051
|
@pulumi.getter(name="ipVersion")
|
1689
2052
|
def ip_version(self) -> str:
|
1690
2053
|
"""
|
1691
|
-
IP version associated with
|
2054
|
+
IP version associated with the listener.
|
1692
2055
|
"""
|
1693
2056
|
return pulumi.get(self, "ip_version")
|
1694
2057
|
|
@@ -1751,6 +2114,9 @@ class GetNetworkLoadBalancersFilterResult(dict):
|
|
1751
2114
|
name: str,
|
1752
2115
|
values: Sequence[str],
|
1753
2116
|
regex: Optional[bool] = None):
|
2117
|
+
"""
|
2118
|
+
:param str name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
2119
|
+
"""
|
1754
2120
|
pulumi.set(__self__, "name", name)
|
1755
2121
|
pulumi.set(__self__, "values", values)
|
1756
2122
|
if regex is not None:
|
@@ -1759,6 +2125,9 @@ class GetNetworkLoadBalancersFilterResult(dict):
|
|
1759
2125
|
@property
|
1760
2126
|
@pulumi.getter
|
1761
2127
|
def name(self) -> str:
|
2128
|
+
"""
|
2129
|
+
A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
2130
|
+
"""
|
1762
2131
|
return pulumi.get(self, "name")
|
1763
2132
|
|
1764
2133
|
@property
|
@@ -2011,7 +2380,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressResult(di
|
|
2011
2380
|
reserved_ips: Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressReservedIpResult']):
|
2012
2381
|
"""
|
2013
2382
|
:param str ip_address: An IP address. Example: `192.168.0.3`
|
2014
|
-
:param str ip_version: IP version associated with
|
2383
|
+
:param str ip_version: IP version associated with the listener.
|
2015
2384
|
:param bool is_public: Whether the IP address is public or private.
|
2016
2385
|
If "true", then the IP address is public and accessible from the internet.
|
2017
2386
|
:param Sequence['GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressReservedIpArgs'] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
|
@@ -2033,7 +2402,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressResult(di
|
|
2033
2402
|
@pulumi.getter(name="ipVersion")
|
2034
2403
|
def ip_version(self) -> str:
|
2035
2404
|
"""
|
2036
|
-
IP version associated with
|
2405
|
+
IP version associated with the listener.
|
2037
2406
|
"""
|
2038
2407
|
return pulumi.get(self, "ip_version")
|
2039
2408
|
|