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.
Files changed (26) hide show
  1. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  2. pulumi_oci/dataflow/invoke_run.py +49 -0
  3. pulumi_oci/dataflow/outputs.py +7 -0
  4. pulumi_oci/devops/_inputs.py +380 -10
  5. pulumi_oci/devops/outputs.py +953 -32
  6. pulumi_oci/filestorage/replication.py +4 -4
  7. pulumi_oci/networkfirewall/outputs.py +12 -16
  8. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  9. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  10. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  11. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  12. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  13. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  14. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  15. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  16. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  17. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  18. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  19. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  20. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  21. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  22. pulumi_oci/stackmonitoring/outputs.py +436 -1
  23. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/METADATA +1 -1
  24. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/RECORD +26 -26
  25. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.dist-info}/WHEEL +0 -0
  26. {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.31.0a1712742264.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=oci_file_storage_source["test_source"]["id"],
465
- target_id=oci_cloud_guard_target["test_target"]["id"],
464
+ source_id=oci_file_storage_file_system["test_source"]["id"],
465
+ target_id=oci_file_storage_file_system["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=oci_file_storage_source["test_source"]["id"],
546
- target_id=oci_cloud_guard_target["test_target"]["id"],
545
+ source_id=oci_file_storage_file_system["test_source"]["id"],
546
+ target_id=oci_file_storage_file_system["test_target"]["id"],
547
547
  defined_tags={
548
548
  "Operations.CostCenter": "42",
549
549
  },
@@ -1324,20 +1324,18 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1324
1324
  @pulumi.output_type
1325
1325
  class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItemPositionResult(dict):
1326
1326
  def __init__(__self__, *,
1327
- after_rule: Optional[str] = None,
1328
- before_rule: Optional[str] = None):
1327
+ after_rule: str,
1328
+ before_rule: str):
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
- 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)
1333
+ pulumi.set(__self__, "after_rule", after_rule)
1334
+ pulumi.set(__self__, "before_rule", before_rule)
1337
1335
 
1338
1336
  @property
1339
1337
  @pulumi.getter(name="afterRule")
1340
- def after_rule(self) -> Optional[str]:
1338
+ def after_rule(self) -> str:
1341
1339
  """
1342
1340
  Identifier for rule after which this rule lies.
1343
1341
  """
@@ -1345,7 +1343,7 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1345
1343
 
1346
1344
  @property
1347
1345
  @pulumi.getter(name="beforeRule")
1348
- def before_rule(self) -> Optional[str]:
1346
+ def before_rule(self) -> str:
1349
1347
  """
1350
1348
  Identifier for rule before which this rule lies.
1351
1349
  """
@@ -1792,20 +1790,18 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemCond
1792
1790
  @pulumi.output_type
1793
1791
  class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPositionResult(dict):
1794
1792
  def __init__(__self__, *,
1795
- after_rule: Optional[str] = None,
1796
- before_rule: Optional[str] = None):
1793
+ after_rule: str,
1794
+ before_rule: str):
1797
1795
  """
1798
1796
  :param str after_rule: Identifier for rule after which this rule lies.
1799
1797
  :param str before_rule: Identifier for rule before which this rule lies.
1800
1798
  """
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)
1799
+ pulumi.set(__self__, "after_rule", after_rule)
1800
+ pulumi.set(__self__, "before_rule", before_rule)
1805
1801
 
1806
1802
  @property
1807
1803
  @pulumi.getter(name="afterRule")
1808
- def after_rule(self) -> Optional[str]:
1804
+ def after_rule(self) -> str:
1809
1805
  """
1810
1806
  Identifier for rule after which this rule lies.
1811
1807
  """
@@ -1813,7 +1809,7 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPosi
1813
1809
 
1814
1810
  @property
1815
1811
  @pulumi.getter(name="beforeRule")
1816
- def before_rule(self) -> Optional[str]:
1812
+ def before_rule(self) -> str:
1817
1813
  """
1818
1814
  Identifier for rule before which this rule lies.
1819
1815
  """
@@ -12,11 +12,13 @@ from .. import _utilities
12
12
  __all__ = [
13
13
  'BackendSetBackendArgs',
14
14
  'BackendSetHealthCheckerArgs',
15
+ 'BackendSetHealthCheckerDnsArgs',
15
16
  'NetworkLoadBalancerIpAddressArgs',
16
17
  'NetworkLoadBalancerIpAddressReservedIpArgs',
17
18
  'NetworkLoadBalancerReservedIpArgs',
18
19
  'NetworkLoadBalancersBackendSetsUnifiedBackendArgs',
19
20
  'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs',
21
+ 'NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs',
20
22
  'GetBackendSetsFilterArgs',
21
23
  'GetBackendsFilterArgs',
22
24
  'GetListenersFilterArgs',
@@ -48,7 +50,7 @@ class BackendSetBackendArgs:
48
50
 
49
51
  Example: `example_backend_set`
50
52
  :param pulumi.Input[str] target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
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`
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/Balance/Reference/lbpolicies.htm). Example: `3`
52
54
  """
53
55
  pulumi.set(__self__, "port", port)
54
56
  if ip_address is not None:
@@ -158,7 +160,7 @@ class BackendSetBackendArgs:
158
160
  @pulumi.getter
159
161
  def weight(self) -> Optional[pulumi.Input[int]]:
160
162
  """
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`
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/Balance/Reference/lbpolicies.htm). Example: `3`
162
164
  """
163
165
  return pulumi.get(self, "weight")
164
166
 
@@ -171,6 +173,7 @@ class BackendSetBackendArgs:
171
173
  class BackendSetHealthCheckerArgs:
172
174
  def __init__(__self__, *,
173
175
  protocol: pulumi.Input[str],
176
+ dns: Optional[pulumi.Input['BackendSetHealthCheckerDnsArgs']] = None,
174
177
  interval_in_millis: Optional[pulumi.Input[int]] = None,
175
178
  port: Optional[pulumi.Input[int]] = None,
176
179
  request_data: Optional[pulumi.Input[str]] = None,
@@ -181,7 +184,8 @@ class BackendSetHealthCheckerArgs:
181
184
  timeout_in_millis: Optional[pulumi.Input[int]] = None,
182
185
  url_path: Optional[pulumi.Input[str]] = None):
183
186
  """
184
- :param pulumi.Input[str] protocol: (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
187
+ :param pulumi.Input[str] protocol: (Updatable) The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
188
+ :param pulumi.Input['BackendSetHealthCheckerDnsArgs'] dns: (Updatable) DNS healthcheck configurations.
185
189
  :param pulumi.Input[int] interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
186
190
  :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`
187
191
  :param pulumi.Input[str] request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
@@ -193,6 +197,8 @@ class BackendSetHealthCheckerArgs:
193
197
  :param pulumi.Input[str] url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
194
198
  """
195
199
  pulumi.set(__self__, "protocol", protocol)
200
+ if dns is not None:
201
+ pulumi.set(__self__, "dns", dns)
196
202
  if interval_in_millis is not None:
197
203
  pulumi.set(__self__, "interval_in_millis", interval_in_millis)
198
204
  if port is not None:
@@ -216,7 +222,7 @@ class BackendSetHealthCheckerArgs:
216
222
  @pulumi.getter
217
223
  def protocol(self) -> pulumi.Input[str]:
218
224
  """
219
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`
225
+ (Updatable) The protocol the health check must use; either HTTP, HTTPS, UDP, TCP or DNS. Example: `HTTP`
220
226
  """
221
227
  return pulumi.get(self, "protocol")
222
228
 
@@ -224,6 +230,18 @@ class BackendSetHealthCheckerArgs:
224
230
  def protocol(self, value: pulumi.Input[str]):
225
231
  pulumi.set(self, "protocol", value)
226
232
 
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
+
227
245
  @property
228
246
  @pulumi.getter(name="intervalInMillis")
229
247
  def interval_in_millis(self) -> Optional[pulumi.Input[int]]:
@@ -333,6 +351,92 @@ class BackendSetHealthCheckerArgs:
333
351
  pulumi.set(self, "url_path", value)
334
352
 
335
353
 
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
+
336
440
  @pulumi.input_type
337
441
  class NetworkLoadBalancerIpAddressArgs:
338
442
  def __init__(__self__, *,
@@ -341,8 +445,8 @@ class NetworkLoadBalancerIpAddressArgs:
341
445
  is_public: Optional[pulumi.Input[bool]] = None,
342
446
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerIpAddressReservedIpArgs']]]] = None):
343
447
  """
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.
448
+ :param pulumi.Input[str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
449
+ :param pulumi.Input[str] ip_version: IP version associated with the listener.
346
450
  :param pulumi.Input[bool] is_public: Whether the IP address is public or private.
347
451
  :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.
348
452
  """
@@ -359,7 +463,7 @@ class NetworkLoadBalancerIpAddressArgs:
359
463
  @pulumi.getter(name="ipAddress")
360
464
  def ip_address(self) -> Optional[pulumi.Input[str]]:
361
465
  """
362
- An IP address. Example: `192.168.0.3`
466
+ The IP address of the backend server. Example: `10.0.0.3`
363
467
  """
364
468
  return pulumi.get(self, "ip_address")
365
469
 
@@ -371,7 +475,7 @@ class NetworkLoadBalancerIpAddressArgs:
371
475
  @pulumi.getter(name="ipVersion")
372
476
  def ip_version(self) -> Optional[pulumi.Input[str]]:
373
477
  """
374
- IP version associated with this IP address.
478
+ IP version associated with the listener.
375
479
  """
376
480
  return pulumi.get(self, "ip_version")
377
481
 
@@ -505,7 +609,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
505
609
 
506
610
  Example: `example_backend_set`
507
611
  :param pulumi.Input[str] target_id: (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`
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`
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/Balance/Reference/lbpolicies.htm). Example: `3`
509
613
  """
510
614
  pulumi.set(__self__, "port", port)
511
615
  if ip_address is not None:
@@ -615,7 +719,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
615
719
  @pulumi.getter
616
720
  def weight(self) -> Optional[pulumi.Input[int]]:
617
721
  """
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`
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/Balance/Reference/lbpolicies.htm). Example: `3`
619
723
  """
620
724
  return pulumi.get(self, "weight")
621
725
 
@@ -628,6 +732,7 @@ class NetworkLoadBalancersBackendSetsUnifiedBackendArgs:
628
732
  class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
629
733
  def __init__(__self__, *,
630
734
  protocol: pulumi.Input[str],
735
+ dns: Optional[pulumi.Input['NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs']] = None,
631
736
  interval_in_millis: Optional[pulumi.Input[int]] = None,
632
737
  port: Optional[pulumi.Input[int]] = None,
633
738
  request_data: Optional[pulumi.Input[str]] = None,
@@ -639,6 +744,7 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
639
744
  url_path: Optional[pulumi.Input[str]] = None):
640
745
  """
641
746
  :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.
642
748
  :param pulumi.Input[int] interval_in_millis: (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`
643
749
  :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`
644
750
  :param pulumi.Input[str] request_data: (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
@@ -650,6 +756,8 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
650
756
  :param pulumi.Input[str] url_path: (Updatable) The path against which to run the health check. Example: `/healthcheck`
651
757
  """
652
758
  pulumi.set(__self__, "protocol", protocol)
759
+ if dns is not None:
760
+ pulumi.set(__self__, "dns", dns)
653
761
  if interval_in_millis is not None:
654
762
  pulumi.set(__self__, "interval_in_millis", interval_in_millis)
655
763
  if port is not None:
@@ -681,6 +789,18 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
681
789
  def protocol(self, value: pulumi.Input[str]):
682
790
  pulumi.set(self, "protocol", value)
683
791
 
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
+
684
804
  @property
685
805
  @pulumi.getter(name="intervalInMillis")
686
806
  def interval_in_millis(self) -> Optional[pulumi.Input[int]]:
@@ -790,6 +910,92 @@ class NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs:
790
910
  pulumi.set(self, "url_path", value)
791
911
 
792
912
 
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
+
793
999
  @pulumi.input_type
794
1000
  class GetBackendSetsFilterArgs:
795
1001
  def __init__(__self__, *,
@@ -931,6 +1137,9 @@ class GetNetworkLoadBalancersFilterArgs:
931
1137
  name: str,
932
1138
  values: Sequence[str],
933
1139
  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
+ """
934
1143
  pulumi.set(__self__, "name", name)
935
1144
  pulumi.set(__self__, "values", values)
936
1145
  if regex is not None:
@@ -939,6 +1148,9 @@ class GetNetworkLoadBalancersFilterArgs:
939
1148
  @property
940
1149
  @pulumi.getter
941
1150
  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
+ """
942
1154
  return pulumi.get(self, "name")
943
1155
 
944
1156
  @name.setter