pulumi-oci 1.31.0__py3-none-any.whl → 1.31.0a1712402206__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 +1 -11
- pulumi_oci/dataflow/invoke_run.py +0 -49
- pulumi_oci/dataflow/outputs.py +0 -7
- pulumi_oci/devops/_inputs.py +10 -380
- pulumi_oci/devops/outputs.py +32 -953
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/networkfirewall/outputs.py +16 -12
- pulumi_oci/networkloadbalancer/_inputs.py +10 -222
- pulumi_oci/networkloadbalancer/backend_set.py +7 -70
- pulumi_oci/networkloadbalancer/get_backend_set.py +2 -15
- pulumi_oci/networkloadbalancer/network_load_balancer.py +62 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -70
- pulumi_oci/networkloadbalancer/outputs.py +28 -397
- pulumi_oci/stackmonitoring/_inputs.py +1 -209
- pulumi_oci/stackmonitoring/get_monitored_resource.py +1 -27
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +1 -27
- pulumi_oci/stackmonitoring/get_monitored_resources.py +1 -18
- pulumi_oci/stackmonitoring/monitored_resource.py +0 -56
- pulumi_oci/stackmonitoring/monitored_resource_task.py +0 -18
- pulumi_oci/stackmonitoring/monitored_resource_type.py +19 -117
- pulumi_oci/stackmonitoring/monitored_resources_search.py +1 -197
- pulumi_oci/stackmonitoring/outputs.py +1 -436
- {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/RECORD +26 -26
- {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0.dist-info → pulumi_oci-1.31.0a1712402206.dist-info}/top_level.txt +0 -0
@@ -461,8 +461,8 @@ class Replication(pulumi.CustomResource):
|
|
461
461
|
|
462
462
|
test_replication = oci.file_storage.Replication("testReplication",
|
463
463
|
compartment_id=var["compartment_id"],
|
464
|
-
source_id=
|
465
|
-
target_id=
|
464
|
+
source_id=oci_file_storage_source["test_source"]["id"],
|
465
|
+
target_id=oci_cloud_guard_target["test_target"]["id"],
|
466
466
|
defined_tags={
|
467
467
|
"Operations.CostCenter": "42",
|
468
468
|
},
|
@@ -542,8 +542,8 @@ class Replication(pulumi.CustomResource):
|
|
542
542
|
|
543
543
|
test_replication = oci.file_storage.Replication("testReplication",
|
544
544
|
compartment_id=var["compartment_id"],
|
545
|
-
source_id=
|
546
|
-
target_id=
|
545
|
+
source_id=oci_file_storage_source["test_source"]["id"],
|
546
|
+
target_id=oci_cloud_guard_target["test_target"]["id"],
|
547
547
|
defined_tags={
|
548
548
|
"Operations.CostCenter": "42",
|
549
549
|
},
|
@@ -1324,18 +1324,20 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
|
|
1324
1324
|
@pulumi.output_type
|
1325
1325
|
class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItemPositionResult(dict):
|
1326
1326
|
def __init__(__self__, *,
|
1327
|
-
after_rule: str,
|
1328
|
-
before_rule: str):
|
1327
|
+
after_rule: Optional[str] = None,
|
1328
|
+
before_rule: Optional[str] = None):
|
1329
1329
|
"""
|
1330
1330
|
:param str after_rule: Identifier for rule after which this rule lies.
|
1331
1331
|
:param str before_rule: Identifier for rule before which this rule lies.
|
1332
1332
|
"""
|
1333
|
-
|
1334
|
-
|
1333
|
+
if after_rule is not None:
|
1334
|
+
pulumi.set(__self__, "after_rule", after_rule)
|
1335
|
+
if before_rule is not None:
|
1336
|
+
pulumi.set(__self__, "before_rule", before_rule)
|
1335
1337
|
|
1336
1338
|
@property
|
1337
1339
|
@pulumi.getter(name="afterRule")
|
1338
|
-
def after_rule(self) -> str:
|
1340
|
+
def after_rule(self) -> Optional[str]:
|
1339
1341
|
"""
|
1340
1342
|
Identifier for rule after which this rule lies.
|
1341
1343
|
"""
|
@@ -1343,7 +1345,7 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
|
|
1343
1345
|
|
1344
1346
|
@property
|
1345
1347
|
@pulumi.getter(name="beforeRule")
|
1346
|
-
def before_rule(self) -> str:
|
1348
|
+
def before_rule(self) -> Optional[str]:
|
1347
1349
|
"""
|
1348
1350
|
Identifier for rule before which this rule lies.
|
1349
1351
|
"""
|
@@ -1790,18 +1792,20 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemCond
|
|
1790
1792
|
@pulumi.output_type
|
1791
1793
|
class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPositionResult(dict):
|
1792
1794
|
def __init__(__self__, *,
|
1793
|
-
after_rule: str,
|
1794
|
-
before_rule: str):
|
1795
|
+
after_rule: Optional[str] = None,
|
1796
|
+
before_rule: Optional[str] = None):
|
1795
1797
|
"""
|
1796
1798
|
:param str after_rule: Identifier for rule after which this rule lies.
|
1797
1799
|
:param str before_rule: Identifier for rule before which this rule lies.
|
1798
1800
|
"""
|
1799
|
-
|
1800
|
-
|
1801
|
+
if after_rule is not None:
|
1802
|
+
pulumi.set(__self__, "after_rule", after_rule)
|
1803
|
+
if before_rule is not None:
|
1804
|
+
pulumi.set(__self__, "before_rule", before_rule)
|
1801
1805
|
|
1802
1806
|
@property
|
1803
1807
|
@pulumi.getter(name="afterRule")
|
1804
|
-
def after_rule(self) -> str:
|
1808
|
+
def after_rule(self) -> Optional[str]:
|
1805
1809
|
"""
|
1806
1810
|
Identifier for rule after which this rule lies.
|
1807
1811
|
"""
|
@@ -1809,7 +1813,7 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPosi
|
|
1809
1813
|
|
1810
1814
|
@property
|
1811
1815
|
@pulumi.getter(name="beforeRule")
|
1812
|
-
def before_rule(self) -> str:
|
1816
|
+
def before_rule(self) -> Optional[str]:
|
1813
1817
|
"""
|
1814
1818
|
Identifier for rule before which this rule lies.
|
1815
1819
|
"""
|
@@ -12,13 +12,11 @@ from .. import _utilities
|
|
12
12
|
__all__ = [
|
13
13
|
'BackendSetBackendArgs',
|
14
14
|
'BackendSetHealthCheckerArgs',
|
15
|
-
'BackendSetHealthCheckerDnsArgs',
|
16
15
|
'NetworkLoadBalancerIpAddressArgs',
|
17
16
|
'NetworkLoadBalancerIpAddressReservedIpArgs',
|
18
17
|
'NetworkLoadBalancerReservedIpArgs',
|
19
18
|
'NetworkLoadBalancersBackendSetsUnifiedBackendArgs',
|
20
19
|
'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs',
|
21
|
-
'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs',
|
22
20
|
'GetBackendSetsFilterArgs',
|
23
21
|
'GetBackendsFilterArgs',
|
24
22
|
'GetListenersFilterArgs',
|
@@ -50,7 +48,7 @@ class BackendSetBackendArgs:
|
|
50
48
|
|
51
49
|
Example: `example_backend_set`
|
52
50
|
:param pulumi.Input[str] target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
53
|
-
:param pulumi.Input[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/
|
51
|
+
:param pulumi.Input[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/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
54
52
|
"""
|
55
53
|
pulumi.set(__self__, "port", port)
|
56
54
|
if ip_address is not None:
|
@@ -160,7 +158,7 @@ class BackendSetBackendArgs:
|
|
160
158
|
@pulumi.getter
|
161
159
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
162
160
|
"""
|
163
|
-
(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/
|
161
|
+
(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/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
164
162
|
"""
|
165
163
|
return pulumi.get(self, "weight")
|
166
164
|
|
@@ -173,7 +171,6 @@ class BackendSetBackendArgs:
|
|
173
171
|
class BackendSetHealthCheckerArgs:
|
174
172
|
def __init__(__self__, *,
|
175
173
|
protocol: pulumi.Input[str],
|
176
|
-
dns: Optional[pulumi.Input['BackendSetHealthCheckerDnsArgs']] = None,
|
177
174
|
interval_in_millis: Optional[pulumi.Input[int]] = None,
|
178
175
|
port: Optional[pulumi.Input[int]] = None,
|
179
176
|
request_data: Optional[pulumi.Input[str]] = None,
|
@@ -184,8 +181,7 @@ class BackendSetHealthCheckerArgs:
|
|
184
181
|
timeout_in_millis: Optional[pulumi.Input[int]] = None,
|
185
182
|
url_path: Optional[pulumi.Input[str]] = None):
|
186
183
|
"""
|
187
|
-
:param pulumi.Input[str] protocol: (Updatable) The protocol the health check must use; either HTTP
|
188
|
-
:param pulumi.Input['BackendSetHealthCheckerDnsArgs'] dns: (Updatable) DNS healthcheck configurations.
|
184
|
+
:param pulumi.Input[str] protocol: (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
|
189
185
|
:param pulumi.Input[int] interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
190
186
|
:param pulumi.Input[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`
|
191
187
|
:param pulumi.Input[str] request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
@@ -197,8 +193,6 @@ class BackendSetHealthCheckerArgs:
|
|
197
193
|
:param pulumi.Input[str] url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
|
198
194
|
"""
|
199
195
|
pulumi.set(__self__, "protocol", protocol)
|
200
|
-
if dns is not None:
|
201
|
-
pulumi.set(__self__, "dns", dns)
|
202
196
|
if interval_in_millis is not None:
|
203
197
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
204
198
|
if port is not None:
|
@@ -222,7 +216,7 @@ class BackendSetHealthCheckerArgs:
|
|
222
216
|
@pulumi.getter
|
223
217
|
def protocol(self) -> pulumi.Input[str]:
|
224
218
|
"""
|
225
|
-
(Updatable) The protocol the health check must use; either HTTP
|
219
|
+
(Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
|
226
220
|
"""
|
227
221
|
return pulumi.get(self, "protocol")
|
228
222
|
|
@@ -230,18 +224,6 @@ class BackendSetHealthCheckerArgs:
|
|
230
224
|
def protocol(self, value: pulumi.Input[str]):
|
231
225
|
pulumi.set(self, "protocol", value)
|
232
226
|
|
233
|
-
@property
|
234
|
-
@pulumi.getter
|
235
|
-
def dns(self) -> Optional[pulumi.Input['BackendSetHealthCheckerDnsArgs']]:
|
236
|
-
"""
|
237
|
-
(Updatable) DNS healthcheck configurations.
|
238
|
-
"""
|
239
|
-
return pulumi.get(self, "dns")
|
240
|
-
|
241
|
-
@dns.setter
|
242
|
-
def dns(self, value: Optional[pulumi.Input['BackendSetHealthCheckerDnsArgs']]):
|
243
|
-
pulumi.set(self, "dns", value)
|
244
|
-
|
245
227
|
@property
|
246
228
|
@pulumi.getter(name="intervalInMillis")
|
247
229
|
def interval_in_millis(self) -> Optional[pulumi.Input[int]]:
|
@@ -351,92 +333,6 @@ class BackendSetHealthCheckerArgs:
|
|
351
333
|
pulumi.set(self, "url_path", value)
|
352
334
|
|
353
335
|
|
354
|
-
@pulumi.input_type
|
355
|
-
class BackendSetHealthCheckerDnsArgs:
|
356
|
-
def __init__(__self__, *,
|
357
|
-
domain_name: pulumi.Input[str],
|
358
|
-
query_class: Optional[pulumi.Input[str]] = None,
|
359
|
-
query_type: Optional[pulumi.Input[str]] = None,
|
360
|
-
rcodes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
361
|
-
transport_protocol: Optional[pulumi.Input[str]] = None):
|
362
|
-
"""
|
363
|
-
:param pulumi.Input[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.
|
364
|
-
:param pulumi.Input[str] query_class: (Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
365
|
-
:param pulumi.Input[str] query_type: (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
366
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] rcodes: (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
367
|
-
:param pulumi.Input[str] transport_protocol: (Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
368
|
-
"""
|
369
|
-
pulumi.set(__self__, "domain_name", domain_name)
|
370
|
-
if query_class is not None:
|
371
|
-
pulumi.set(__self__, "query_class", query_class)
|
372
|
-
if query_type is not None:
|
373
|
-
pulumi.set(__self__, "query_type", query_type)
|
374
|
-
if rcodes is not None:
|
375
|
-
pulumi.set(__self__, "rcodes", rcodes)
|
376
|
-
if transport_protocol is not None:
|
377
|
-
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
378
|
-
|
379
|
-
@property
|
380
|
-
@pulumi.getter(name="domainName")
|
381
|
-
def domain_name(self) -> pulumi.Input[str]:
|
382
|
-
"""
|
383
|
-
(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.
|
384
|
-
"""
|
385
|
-
return pulumi.get(self, "domain_name")
|
386
|
-
|
387
|
-
@domain_name.setter
|
388
|
-
def domain_name(self, value: pulumi.Input[str]):
|
389
|
-
pulumi.set(self, "domain_name", value)
|
390
|
-
|
391
|
-
@property
|
392
|
-
@pulumi.getter(name="queryClass")
|
393
|
-
def query_class(self) -> Optional[pulumi.Input[str]]:
|
394
|
-
"""
|
395
|
-
(Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
396
|
-
"""
|
397
|
-
return pulumi.get(self, "query_class")
|
398
|
-
|
399
|
-
@query_class.setter
|
400
|
-
def query_class(self, value: Optional[pulumi.Input[str]]):
|
401
|
-
pulumi.set(self, "query_class", value)
|
402
|
-
|
403
|
-
@property
|
404
|
-
@pulumi.getter(name="queryType")
|
405
|
-
def query_type(self) -> Optional[pulumi.Input[str]]:
|
406
|
-
"""
|
407
|
-
(Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
408
|
-
"""
|
409
|
-
return pulumi.get(self, "query_type")
|
410
|
-
|
411
|
-
@query_type.setter
|
412
|
-
def query_type(self, value: Optional[pulumi.Input[str]]):
|
413
|
-
pulumi.set(self, "query_type", value)
|
414
|
-
|
415
|
-
@property
|
416
|
-
@pulumi.getter
|
417
|
-
def rcodes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
418
|
-
"""
|
419
|
-
(Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
420
|
-
"""
|
421
|
-
return pulumi.get(self, "rcodes")
|
422
|
-
|
423
|
-
@rcodes.setter
|
424
|
-
def rcodes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
425
|
-
pulumi.set(self, "rcodes", value)
|
426
|
-
|
427
|
-
@property
|
428
|
-
@pulumi.getter(name="transportProtocol")
|
429
|
-
def transport_protocol(self) -> Optional[pulumi.Input[str]]:
|
430
|
-
"""
|
431
|
-
(Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
432
|
-
"""
|
433
|
-
return pulumi.get(self, "transport_protocol")
|
434
|
-
|
435
|
-
@transport_protocol.setter
|
436
|
-
def transport_protocol(self, value: Optional[pulumi.Input[str]]):
|
437
|
-
pulumi.set(self, "transport_protocol", value)
|
438
|
-
|
439
|
-
|
440
336
|
@pulumi.input_type
|
441
337
|
class NetworkLoadBalancerIpAddressArgs:
|
442
338
|
def __init__(__self__, *,
|
@@ -445,8 +341,8 @@ class NetworkLoadBalancerIpAddressArgs:
|
|
445
341
|
is_public: Optional[pulumi.Input[bool]] = None,
|
446
342
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressReservedIpArgs']]]] = None):
|
447
343
|
"""
|
448
|
-
:param pulumi.Input[str] ip_address:
|
449
|
-
:param pulumi.Input[str] ip_version: IP version associated with
|
344
|
+
:param pulumi.Input[str] ip_address: An IP address. Example: `192.168.0.3`
|
345
|
+
:param pulumi.Input[str] ip_version: IP version associated with this IP address.
|
450
346
|
:param pulumi.Input[bool] is_public: Whether the IP address is public or private.
|
451
347
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressReservedIpArgs']]] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
|
452
348
|
"""
|
@@ -463,7 +359,7 @@ class NetworkLoadBalancerIpAddressArgs:
|
|
463
359
|
@pulumi.getter(name="ipAddress")
|
464
360
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
465
361
|
"""
|
466
|
-
|
362
|
+
An IP address. Example: `192.168.0.3`
|
467
363
|
"""
|
468
364
|
return pulumi.get(self, "ip_address")
|
469
365
|
|
@@ -475,7 +371,7 @@ class NetworkLoadBalancerIpAddressArgs:
|
|
475
371
|
@pulumi.getter(name="ipVersion")
|
476
372
|
def ip_version(self) -> Optional[pulumi.Input[str]]:
|
477
373
|
"""
|
478
|
-
IP version associated with
|
374
|
+
IP version associated with this IP address.
|
479
375
|
"""
|
480
376
|
return pulumi.get(self, "ip_version")
|
481
377
|
|
@@ -609,7 +505,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
|
|
609
505
|
|
610
506
|
Example: `example_backend_set`
|
611
507
|
:param pulumi.Input[str] target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var><unique_ID></var>`
|
612
|
-
:param pulumi.Input[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/
|
508
|
+
:param pulumi.Input[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/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
613
509
|
"""
|
614
510
|
pulumi.set(__self__, "port", port)
|
615
511
|
if ip_address is not None:
|
@@ -719,7 +615,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
|
|
719
615
|
@pulumi.getter
|
720
616
|
def weight(self) -> Optional[pulumi.Input[int]]:
|
721
617
|
"""
|
722
|
-
(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/
|
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/NetworkLoadBalancer/introducton.htm#Policies). Example: `3`
|
723
619
|
"""
|
724
620
|
return pulumi.get(self, "weight")
|
725
621
|
|
@@ -732,7 +628,6 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
|
|
732
628
|
class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
|
733
629
|
def __init__(__self__, *,
|
734
630
|
protocol: pulumi.Input[str],
|
735
|
-
dns: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs']] = None,
|
736
631
|
interval_in_millis: Optional[pulumi.Input[int]] = None,
|
737
632
|
port: Optional[pulumi.Input[int]] = None,
|
738
633
|
request_data: Optional[pulumi.Input[str]] = None,
|
@@ -744,7 +639,6 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
|
|
744
639
|
url_path: Optional[pulumi.Input[str]] = None):
|
745
640
|
"""
|
746
641
|
:param pulumi.Input[str] protocol: (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
|
747
|
-
:param pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs'] dns: (Updatable) DNS healthcheck configurations.
|
748
642
|
:param pulumi.Input[int] interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
|
749
643
|
:param pulumi.Input[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`
|
750
644
|
:param pulumi.Input[str] request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
|
@@ -756,8 +650,6 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
|
|
756
650
|
:param pulumi.Input[str] url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
|
757
651
|
"""
|
758
652
|
pulumi.set(__self__, "protocol", protocol)
|
759
|
-
if dns is not None:
|
760
|
-
pulumi.set(__self__, "dns", dns)
|
761
653
|
if interval_in_millis is not None:
|
762
654
|
pulumi.set(__self__, "interval_in_millis", interval_in_millis)
|
763
655
|
if port is not None:
|
@@ -789,18 +681,6 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
|
|
789
681
|
def protocol(self, value: pulumi.Input[str]):
|
790
682
|
pulumi.set(self, "protocol", value)
|
791
683
|
|
792
|
-
@property
|
793
|
-
@pulumi.getter
|
794
|
-
def dns(self) -> Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs']]:
|
795
|
-
"""
|
796
|
-
(Updatable) DNS healthcheck configurations.
|
797
|
-
"""
|
798
|
-
return pulumi.get(self, "dns")
|
799
|
-
|
800
|
-
@dns.setter
|
801
|
-
def dns(self, value: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs']]):
|
802
|
-
pulumi.set(self, "dns", value)
|
803
|
-
|
804
684
|
@property
|
805
685
|
@pulumi.getter(name="intervalInMillis")
|
806
686
|
def interval_in_millis(self) -> Optional[pulumi.Input[int]]:
|
@@ -910,92 +790,6 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
|
|
910
790
|
pulumi.set(self, "url_path", value)
|
911
791
|
|
912
792
|
|
913
|
-
@pulumi.input_type
|
914
|
-
class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs:
|
915
|
-
def __init__(__self__, *,
|
916
|
-
domain_name: pulumi.Input[str],
|
917
|
-
query_class: Optional[pulumi.Input[str]] = None,
|
918
|
-
query_type: Optional[pulumi.Input[str]] = None,
|
919
|
-
rcodes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
920
|
-
transport_protocol: Optional[pulumi.Input[str]] = None):
|
921
|
-
"""
|
922
|
-
:param pulumi.Input[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.
|
923
|
-
:param pulumi.Input[str] query_class: (Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
924
|
-
:param pulumi.Input[str] query_type: (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
925
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] rcodes: (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
926
|
-
:param pulumi.Input[str] transport_protocol: (Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
927
|
-
"""
|
928
|
-
pulumi.set(__self__, "domain_name", domain_name)
|
929
|
-
if query_class is not None:
|
930
|
-
pulumi.set(__self__, "query_class", query_class)
|
931
|
-
if query_type is not None:
|
932
|
-
pulumi.set(__self__, "query_type", query_type)
|
933
|
-
if rcodes is not None:
|
934
|
-
pulumi.set(__self__, "rcodes", rcodes)
|
935
|
-
if transport_protocol is not None:
|
936
|
-
pulumi.set(__self__, "transport_protocol", transport_protocol)
|
937
|
-
|
938
|
-
@property
|
939
|
-
@pulumi.getter(name="domainName")
|
940
|
-
def domain_name(self) -> pulumi.Input[str]:
|
941
|
-
"""
|
942
|
-
(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.
|
943
|
-
"""
|
944
|
-
return pulumi.get(self, "domain_name")
|
945
|
-
|
946
|
-
@domain_name.setter
|
947
|
-
def domain_name(self, value: pulumi.Input[str]):
|
948
|
-
pulumi.set(self, "domain_name", value)
|
949
|
-
|
950
|
-
@property
|
951
|
-
@pulumi.getter(name="queryClass")
|
952
|
-
def query_class(self) -> Optional[pulumi.Input[str]]:
|
953
|
-
"""
|
954
|
-
(Updatable) The class the dns health check query to use; either IN or CH. Example: `IN`
|
955
|
-
"""
|
956
|
-
return pulumi.get(self, "query_class")
|
957
|
-
|
958
|
-
@query_class.setter
|
959
|
-
def query_class(self, value: Optional[pulumi.Input[str]]):
|
960
|
-
pulumi.set(self, "query_class", value)
|
961
|
-
|
962
|
-
@property
|
963
|
-
@pulumi.getter(name="queryType")
|
964
|
-
def query_type(self) -> Optional[pulumi.Input[str]]:
|
965
|
-
"""
|
966
|
-
(Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: `A`
|
967
|
-
"""
|
968
|
-
return pulumi.get(self, "query_type")
|
969
|
-
|
970
|
-
@query_type.setter
|
971
|
-
def query_type(self, value: Optional[pulumi.Input[str]]):
|
972
|
-
pulumi.set(self, "query_type", value)
|
973
|
-
|
974
|
-
@property
|
975
|
-
@pulumi.getter
|
976
|
-
def rcodes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
977
|
-
"""
|
978
|
-
(Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
|
979
|
-
"""
|
980
|
-
return pulumi.get(self, "rcodes")
|
981
|
-
|
982
|
-
@rcodes.setter
|
983
|
-
def rcodes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
984
|
-
pulumi.set(self, "rcodes", value)
|
985
|
-
|
986
|
-
@property
|
987
|
-
@pulumi.getter(name="transportProtocol")
|
988
|
-
def transport_protocol(self) -> Optional[pulumi.Input[str]]:
|
989
|
-
"""
|
990
|
-
(Updatable) DNS transport protocol; either UDP or TCP. Example: `UDP`
|
991
|
-
"""
|
992
|
-
return pulumi.get(self, "transport_protocol")
|
993
|
-
|
994
|
-
@transport_protocol.setter
|
995
|
-
def transport_protocol(self, value: Optional[pulumi.Input[str]]):
|
996
|
-
pulumi.set(self, "transport_protocol", value)
|
997
|
-
|
998
|
-
|
999
793
|
@pulumi.input_type
|
1000
794
|
class GetBackendSetsFilterArgs:
|
1001
795
|
def __init__(__self__, *,
|
@@ -1137,9 +931,6 @@ class GetNetworkLoadBalancersFilterArgs:
|
|
1137
931
|
name: str,
|
1138
932
|
values: Sequence[str],
|
1139
933
|
regex: Optional[bool] = None):
|
1140
|
-
"""
|
1141
|
-
:param str name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
1142
|
-
"""
|
1143
934
|
pulumi.set(__self__, "name", name)
|
1144
935
|
pulumi.set(__self__, "values", values)
|
1145
936
|
if regex is not None:
|
@@ -1148,9 +939,6 @@ class GetNetworkLoadBalancersFilterArgs:
|
|
1148
939
|
@property
|
1149
940
|
@pulumi.getter
|
1150
941
|
def name(self) -> str:
|
1151
|
-
"""
|
1152
|
-
A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
1153
|
-
"""
|
1154
942
|
return pulumi.get(self, "name")
|
1155
943
|
|
1156
944
|
@name.setter
|