pulumi-consul 3.13.0a1743571864__py3-none-any.whl → 3.13.0a1744263036__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.

Potentially problematic release.


This version of pulumi-consul might be problematic. Click here for more details.

Files changed (71) hide show
  1. pulumi_consul/__init__.py +1 -0
  2. pulumi_consul/_inputs.py +1306 -1305
  3. pulumi_consul/acl_auth_method.py +141 -140
  4. pulumi_consul/acl_binding_rule.py +99 -98
  5. pulumi_consul/acl_policy.py +85 -84
  6. pulumi_consul/acl_role.py +71 -70
  7. pulumi_consul/acl_role_policy_attachment.py +29 -28
  8. pulumi_consul/acl_token.py +113 -112
  9. pulumi_consul/acl_token_policy_attachment.py +29 -28
  10. pulumi_consul/acl_token_role_attachment.py +29 -28
  11. pulumi_consul/admin_partition.py +29 -28
  12. pulumi_consul/agent_service.py +57 -56
  13. pulumi_consul/autopilot_config.py +113 -112
  14. pulumi_consul/catalog_entry.py +57 -56
  15. pulumi_consul/certificate_authority.py +35 -34
  16. pulumi_consul/config/__init__.py +1 -0
  17. pulumi_consul/config/__init__.pyi +1 -0
  18. pulumi_consul/config/outputs.py +18 -17
  19. pulumi_consul/config/vars.py +1 -0
  20. pulumi_consul/config_entry.py +71 -70
  21. pulumi_consul/config_entry_service_defaults.py +169 -168
  22. pulumi_consul/config_entry_service_intentions.py +57 -56
  23. pulumi_consul/config_entry_service_resolver.py +99 -98
  24. pulumi_consul/config_entry_service_router.py +57 -56
  25. pulumi_consul/config_entry_service_splitter.py +57 -56
  26. pulumi_consul/config_entry_v2_exported_services.py +113 -112
  27. pulumi_consul/get_acl_auth_method.py +24 -23
  28. pulumi_consul/get_acl_policy.py +20 -19
  29. pulumi_consul/get_acl_role.py +18 -17
  30. pulumi_consul/get_acl_token.py +20 -19
  31. pulumi_consul/get_acl_token_secret_id.py +22 -21
  32. pulumi_consul/get_agent_config.py +8 -7
  33. pulumi_consul/get_agent_self.py +73 -72
  34. pulumi_consul/get_autopilot_health.py +9 -8
  35. pulumi_consul/get_catalog_nodes.py +5 -4
  36. pulumi_consul/get_catalog_service.py +20 -19
  37. pulumi_consul/get_catalog_services.py +6 -5
  38. pulumi_consul/get_config_entry.py +23 -22
  39. pulumi_consul/get_config_entry_v2_exported_services.py +42 -41
  40. pulumi_consul/get_datacenters.py +3 -2
  41. pulumi_consul/get_key_prefix.py +29 -28
  42. pulumi_consul/get_keys.py +28 -27
  43. pulumi_consul/get_network_area_members.py +17 -16
  44. pulumi_consul/get_network_segments.py +13 -12
  45. pulumi_consul/get_nodes.py +5 -4
  46. pulumi_consul/get_peering.py +15 -14
  47. pulumi_consul/get_peerings.py +5 -4
  48. pulumi_consul/get_service.py +20 -19
  49. pulumi_consul/get_service_health.py +40 -39
  50. pulumi_consul/get_services.py +6 -5
  51. pulumi_consul/intention.py +113 -112
  52. pulumi_consul/key_prefix.py +85 -84
  53. pulumi_consul/keys.py +62 -61
  54. pulumi_consul/license.py +99 -98
  55. pulumi_consul/namespace.py +85 -84
  56. pulumi_consul/namespace_policy_attachment.py +29 -28
  57. pulumi_consul/namespace_role_attachment.py +29 -28
  58. pulumi_consul/network_area.py +71 -70
  59. pulumi_consul/node.py +81 -80
  60. pulumi_consul/outputs.py +1054 -1053
  61. pulumi_consul/peering.py +83 -82
  62. pulumi_consul/peering_token.py +60 -59
  63. pulumi_consul/prepared_query.py +183 -182
  64. pulumi_consul/provider.py +110 -109
  65. pulumi_consul/pulumi-plugin.json +1 -1
  66. pulumi_consul/service.py +165 -164
  67. {pulumi_consul-3.13.0a1743571864.dist-info → pulumi_consul-3.13.0a1744263036.dist-info}/METADATA +1 -1
  68. pulumi_consul-3.13.0a1744263036.dist-info/RECORD +72 -0
  69. pulumi_consul-3.13.0a1743571864.dist-info/RECORD +0 -72
  70. {pulumi_consul-3.13.0a1743571864.dist-info → pulumi_consul-3.13.0a1744263036.dist-info}/WHEEL +0 -0
  71. {pulumi_consul-3.13.0a1743571864.dist-info → pulumi_consul-3.13.0a1744263036.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -246,17 +247,17 @@ class GetAgentSelfResult:
246
247
 
247
248
  @property
248
249
  @pulumi.getter(name="aclDatacenter")
249
- def acl_datacenter(self) -> str:
250
+ def acl_datacenter(self) -> builtins.str:
250
251
  return pulumi.get(self, "acl_datacenter")
251
252
 
252
253
  @property
253
254
  @pulumi.getter(name="aclDefaultPolicy")
254
- def acl_default_policy(self) -> str:
255
+ def acl_default_policy(self) -> builtins.str:
255
256
  return pulumi.get(self, "acl_default_policy")
256
257
 
257
258
  @property
258
259
  @pulumi.getter(name="aclDisabledTtl")
259
- def acl_disabled_ttl(self) -> str:
260
+ def acl_disabled_ttl(self) -> builtins.str:
260
261
  """
261
262
  * [`acl_down_policy`](https://www.consul.io/docs/agent/options.html#acl_down_policy)
262
263
  * [`acl_enforce_0_8_semantics`](https://www.consul.io/docs/agent/options.html#acl_enforce_version_8)
@@ -274,67 +275,67 @@ class GetAgentSelfResult:
274
275
 
275
276
  @property
276
277
  @pulumi.getter(name="aclDownPolicy")
277
- def acl_down_policy(self) -> str:
278
+ def acl_down_policy(self) -> builtins.str:
278
279
  return pulumi.get(self, "acl_down_policy")
279
280
 
280
281
  @property
281
282
  @pulumi.getter(name="aclEnforce08Semantics")
282
- def acl_enforce08_semantics(self) -> bool:
283
+ def acl_enforce08_semantics(self) -> builtins.bool:
283
284
  return pulumi.get(self, "acl_enforce08_semantics")
284
285
 
285
286
  @property
286
287
  @pulumi.getter(name="aclTtl")
287
- def acl_ttl(self) -> str:
288
+ def acl_ttl(self) -> builtins.str:
288
289
  return pulumi.get(self, "acl_ttl")
289
290
 
290
291
  @property
291
292
  @pulumi.getter
292
- def addresses(self) -> Mapping[str, str]:
293
+ def addresses(self) -> Mapping[str, builtins.str]:
293
294
  return pulumi.get(self, "addresses")
294
295
 
295
296
  @property
296
297
  @pulumi.getter(name="advertiseAddr")
297
- def advertise_addr(self) -> str:
298
+ def advertise_addr(self) -> builtins.str:
298
299
  return pulumi.get(self, "advertise_addr")
299
300
 
300
301
  @property
301
302
  @pulumi.getter(name="advertiseAddrWan")
302
- def advertise_addr_wan(self) -> str:
303
+ def advertise_addr_wan(self) -> builtins.str:
303
304
  return pulumi.get(self, "advertise_addr_wan")
304
305
 
305
306
  @property
306
307
  @pulumi.getter(name="advertiseAddrs")
307
- def advertise_addrs(self) -> Mapping[str, str]:
308
+ def advertise_addrs(self) -> Mapping[str, builtins.str]:
308
309
  return pulumi.get(self, "advertise_addrs")
309
310
 
310
311
  @property
311
312
  @pulumi.getter(name="atlasJoin")
312
- def atlas_join(self) -> bool:
313
+ def atlas_join(self) -> builtins.bool:
313
314
  return pulumi.get(self, "atlas_join")
314
315
 
315
316
  @property
316
317
  @pulumi.getter(name="bindAddr")
317
- def bind_addr(self) -> str:
318
+ def bind_addr(self) -> builtins.str:
318
319
  return pulumi.get(self, "bind_addr")
319
320
 
320
321
  @property
321
322
  @pulumi.getter(name="bootstrapExpect")
322
- def bootstrap_expect(self) -> int:
323
+ def bootstrap_expect(self) -> builtins.int:
323
324
  return pulumi.get(self, "bootstrap_expect")
324
325
 
325
326
  @property
326
327
  @pulumi.getter(name="bootstrapMode")
327
- def bootstrap_mode(self) -> bool:
328
+ def bootstrap_mode(self) -> builtins.bool:
328
329
  return pulumi.get(self, "bootstrap_mode")
329
330
 
330
331
  @property
331
332
  @pulumi.getter(name="checkDeregisterIntervalMin")
332
- def check_deregister_interval_min(self) -> str:
333
+ def check_deregister_interval_min(self) -> builtins.str:
333
334
  return pulumi.get(self, "check_deregister_interval_min")
334
335
 
335
336
  @property
336
337
  @pulumi.getter(name="checkReapInterval")
337
- def check_reap_interval(self) -> str:
338
+ def check_reap_interval(self) -> builtins.str:
338
339
  """
339
340
  * [`check_update_interval`](https://www.consul.io/docs/agent/options.html#check_update_interval)
340
341
  * [`client_addr`](https://www.consul.io/docs/agent/options.html#_client)
@@ -343,32 +344,32 @@ class GetAgentSelfResult:
343
344
 
344
345
  @property
345
346
  @pulumi.getter(name="checkUpdateInterval")
346
- def check_update_interval(self) -> str:
347
+ def check_update_interval(self) -> builtins.str:
347
348
  return pulumi.get(self, "check_update_interval")
348
349
 
349
350
  @property
350
351
  @pulumi.getter(name="clientAddr")
351
- def client_addr(self) -> str:
352
+ def client_addr(self) -> builtins.str:
352
353
  return pulumi.get(self, "client_addr")
353
354
 
354
355
  @property
355
356
  @pulumi.getter(name="dataDir")
356
- def data_dir(self) -> str:
357
+ def data_dir(self) -> builtins.str:
357
358
  return pulumi.get(self, "data_dir")
358
359
 
359
360
  @property
360
361
  @pulumi.getter
361
- def datacenter(self) -> str:
362
+ def datacenter(self) -> builtins.str:
362
363
  return pulumi.get(self, "datacenter")
363
364
 
364
365
  @property
365
366
  @pulumi.getter(name="devMode")
366
- def dev_mode(self) -> bool:
367
+ def dev_mode(self) -> builtins.bool:
367
368
  return pulumi.get(self, "dev_mode")
368
369
 
369
370
  @property
370
371
  @pulumi.getter
371
- def dns(self) -> Mapping[str, str]:
372
+ def dns(self) -> Mapping[str, builtins.str]:
372
373
  """
373
374
  A map of DNS configuration attributes. See below for details on the
374
375
  contents of the `dns` attribute.
@@ -384,22 +385,22 @@ class GetAgentSelfResult:
384
385
 
385
386
  @property
386
387
  @pulumi.getter(name="dnsRecursors")
387
- def dns_recursors(self) -> Sequence[str]:
388
+ def dns_recursors(self) -> Sequence[builtins.str]:
388
389
  return pulumi.get(self, "dns_recursors")
389
390
 
390
391
  @property
391
392
  @pulumi.getter
392
- def domain(self) -> str:
393
+ def domain(self) -> builtins.str:
393
394
  return pulumi.get(self, "domain")
394
395
 
395
396
  @property
396
397
  @pulumi.getter(name="enableAnonymousSignature")
397
- def enable_anonymous_signature(self) -> bool:
398
+ def enable_anonymous_signature(self) -> builtins.bool:
398
399
  return pulumi.get(self, "enable_anonymous_signature")
399
400
 
400
401
  @property
401
402
  @pulumi.getter(name="enableCoordinates")
402
- def enable_coordinates(self) -> bool:
403
+ def enable_coordinates(self) -> builtins.bool:
403
404
  """
404
405
  * [`enable_debug`](https://www.consul.io/docs/agent/options.html#enable_debug)
405
406
  * [`enable_remote_exec`](https://www.consul.io/docs/agent/options.html#disable_remote_exec)
@@ -454,222 +455,222 @@ class GetAgentSelfResult:
454
455
 
455
456
  @property
456
457
  @pulumi.getter(name="enableDebug")
457
- def enable_debug(self) -> bool:
458
+ def enable_debug(self) -> builtins.bool:
458
459
  return pulumi.get(self, "enable_debug")
459
460
 
460
461
  @property
461
462
  @pulumi.getter(name="enableRemoteExec")
462
- def enable_remote_exec(self) -> bool:
463
+ def enable_remote_exec(self) -> builtins.bool:
463
464
  return pulumi.get(self, "enable_remote_exec")
464
465
 
465
466
  @property
466
467
  @pulumi.getter(name="enableSyslog")
467
- def enable_syslog(self) -> bool:
468
+ def enable_syslog(self) -> builtins.bool:
468
469
  return pulumi.get(self, "enable_syslog")
469
470
 
470
471
  @property
471
472
  @pulumi.getter(name="enableUi")
472
- def enable_ui(self) -> bool:
473
+ def enable_ui(self) -> builtins.bool:
473
474
  return pulumi.get(self, "enable_ui")
474
475
 
475
476
  @property
476
477
  @pulumi.getter(name="enableUpdateCheck")
477
- def enable_update_check(self) -> bool:
478
+ def enable_update_check(self) -> builtins.bool:
478
479
  return pulumi.get(self, "enable_update_check")
479
480
 
480
481
  @property
481
482
  @pulumi.getter
482
- def id(self) -> str:
483
+ def id(self) -> builtins.str:
483
484
  return pulumi.get(self, "id")
484
485
 
485
486
  @property
486
487
  @pulumi.getter(name="leaveOnInt")
487
- def leave_on_int(self) -> bool:
488
+ def leave_on_int(self) -> builtins.bool:
488
489
  return pulumi.get(self, "leave_on_int")
489
490
 
490
491
  @property
491
492
  @pulumi.getter(name="leaveOnTerm")
492
- def leave_on_term(self) -> bool:
493
+ def leave_on_term(self) -> builtins.bool:
493
494
  return pulumi.get(self, "leave_on_term")
494
495
 
495
496
  @property
496
497
  @pulumi.getter(name="logLevel")
497
- def log_level(self) -> str:
498
+ def log_level(self) -> builtins.str:
498
499
  return pulumi.get(self, "log_level")
499
500
 
500
501
  @property
501
502
  @pulumi.getter
502
- def name(self) -> str:
503
+ def name(self) -> builtins.str:
503
504
  return pulumi.get(self, "name")
504
505
 
505
506
  @property
506
507
  @pulumi.getter
507
- def performance(self) -> Mapping[str, str]:
508
+ def performance(self) -> Mapping[str, builtins.str]:
508
509
  return pulumi.get(self, "performance")
509
510
 
510
511
  @property
511
512
  @pulumi.getter(name="pidFile")
512
- def pid_file(self) -> str:
513
+ def pid_file(self) -> builtins.str:
513
514
  return pulumi.get(self, "pid_file")
514
515
 
515
516
  @property
516
517
  @pulumi.getter
517
- def ports(self) -> Mapping[str, int]:
518
+ def ports(self) -> Mapping[str, builtins.int]:
518
519
  return pulumi.get(self, "ports")
519
520
 
520
521
  @property
521
522
  @pulumi.getter(name="protocolVersion")
522
- def protocol_version(self) -> int:
523
+ def protocol_version(self) -> builtins.int:
523
524
  return pulumi.get(self, "protocol_version")
524
525
 
525
526
  @property
526
527
  @pulumi.getter(name="reconnectTimeoutLan")
527
- def reconnect_timeout_lan(self) -> str:
528
+ def reconnect_timeout_lan(self) -> builtins.str:
528
529
  return pulumi.get(self, "reconnect_timeout_lan")
529
530
 
530
531
  @property
531
532
  @pulumi.getter(name="reconnectTimeoutWan")
532
- def reconnect_timeout_wan(self) -> str:
533
+ def reconnect_timeout_wan(self) -> builtins.str:
533
534
  return pulumi.get(self, "reconnect_timeout_wan")
534
535
 
535
536
  @property
536
537
  @pulumi.getter(name="rejoinAfterLeave")
537
- def rejoin_after_leave(self) -> bool:
538
+ def rejoin_after_leave(self) -> builtins.bool:
538
539
  return pulumi.get(self, "rejoin_after_leave")
539
540
 
540
541
  @property
541
542
  @pulumi.getter(name="retryJoinEc2")
542
- def retry_join_ec2(self) -> Mapping[str, str]:
543
+ def retry_join_ec2(self) -> Mapping[str, builtins.str]:
543
544
  return pulumi.get(self, "retry_join_ec2")
544
545
 
545
546
  @property
546
547
  @pulumi.getter(name="retryJoinGce")
547
- def retry_join_gce(self) -> Mapping[str, str]:
548
+ def retry_join_gce(self) -> Mapping[str, builtins.str]:
548
549
  return pulumi.get(self, "retry_join_gce")
549
550
 
550
551
  @property
551
552
  @pulumi.getter(name="retryJoinWans")
552
- def retry_join_wans(self) -> Sequence[str]:
553
+ def retry_join_wans(self) -> Sequence[builtins.str]:
553
554
  return pulumi.get(self, "retry_join_wans")
554
555
 
555
556
  @property
556
557
  @pulumi.getter(name="retryJoins")
557
- def retry_joins(self) -> Sequence[str]:
558
+ def retry_joins(self) -> Sequence[builtins.str]:
558
559
  return pulumi.get(self, "retry_joins")
559
560
 
560
561
  @property
561
562
  @pulumi.getter(name="retryMaxAttempts")
562
- def retry_max_attempts(self) -> int:
563
+ def retry_max_attempts(self) -> builtins.int:
563
564
  return pulumi.get(self, "retry_max_attempts")
564
565
 
565
566
  @property
566
567
  @pulumi.getter(name="retryMaxAttemptsWan")
567
- def retry_max_attempts_wan(self) -> int:
568
+ def retry_max_attempts_wan(self) -> builtins.int:
568
569
  return pulumi.get(self, "retry_max_attempts_wan")
569
570
 
570
571
  @property
571
572
  @pulumi.getter(name="serfLanBindAddr")
572
- def serf_lan_bind_addr(self) -> str:
573
+ def serf_lan_bind_addr(self) -> builtins.str:
573
574
  return pulumi.get(self, "serf_lan_bind_addr")
574
575
 
575
576
  @property
576
577
  @pulumi.getter(name="serfWanBindAddr")
577
- def serf_wan_bind_addr(self) -> str:
578
+ def serf_wan_bind_addr(self) -> builtins.str:
578
579
  return pulumi.get(self, "serf_wan_bind_addr")
579
580
 
580
581
  @property
581
582
  @pulumi.getter(name="serverMode")
582
- def server_mode(self) -> bool:
583
+ def server_mode(self) -> builtins.bool:
583
584
  return pulumi.get(self, "server_mode")
584
585
 
585
586
  @property
586
587
  @pulumi.getter(name="serverName")
587
- def server_name(self) -> str:
588
+ def server_name(self) -> builtins.str:
588
589
  return pulumi.get(self, "server_name")
589
590
 
590
591
  @property
591
592
  @pulumi.getter(name="sessionTtlMin")
592
- def session_ttl_min(self) -> str:
593
+ def session_ttl_min(self) -> builtins.str:
593
594
  return pulumi.get(self, "session_ttl_min")
594
595
 
595
596
  @property
596
597
  @pulumi.getter(name="startJoinWans")
597
- def start_join_wans(self) -> Sequence[str]:
598
+ def start_join_wans(self) -> Sequence[builtins.str]:
598
599
  return pulumi.get(self, "start_join_wans")
599
600
 
600
601
  @property
601
602
  @pulumi.getter(name="startJoins")
602
- def start_joins(self) -> Sequence[str]:
603
+ def start_joins(self) -> Sequence[builtins.str]:
603
604
  return pulumi.get(self, "start_joins")
604
605
 
605
606
  @property
606
607
  @pulumi.getter(name="syslogFacility")
607
- def syslog_facility(self) -> str:
608
+ def syslog_facility(self) -> builtins.str:
608
609
  return pulumi.get(self, "syslog_facility")
609
610
 
610
611
  @property
611
612
  @pulumi.getter(name="taggedAddresses")
612
- def tagged_addresses(self) -> Mapping[str, str]:
613
+ def tagged_addresses(self) -> Mapping[str, builtins.str]:
613
614
  return pulumi.get(self, "tagged_addresses")
614
615
 
615
616
  @property
616
617
  @pulumi.getter
617
- def telemetry(self) -> Mapping[str, str]:
618
+ def telemetry(self) -> Mapping[str, builtins.str]:
618
619
  return pulumi.get(self, "telemetry")
619
620
 
620
621
  @property
621
622
  @pulumi.getter(name="tlsCaFile")
622
- def tls_ca_file(self) -> str:
623
+ def tls_ca_file(self) -> builtins.str:
623
624
  return pulumi.get(self, "tls_ca_file")
624
625
 
625
626
  @property
626
627
  @pulumi.getter(name="tlsCertFile")
627
- def tls_cert_file(self) -> str:
628
+ def tls_cert_file(self) -> builtins.str:
628
629
  return pulumi.get(self, "tls_cert_file")
629
630
 
630
631
  @property
631
632
  @pulumi.getter(name="tlsKeyFile")
632
- def tls_key_file(self) -> str:
633
+ def tls_key_file(self) -> builtins.str:
633
634
  return pulumi.get(self, "tls_key_file")
634
635
 
635
636
  @property
636
637
  @pulumi.getter(name="tlsMinVersion")
637
- def tls_min_version(self) -> str:
638
+ def tls_min_version(self) -> builtins.str:
638
639
  return pulumi.get(self, "tls_min_version")
639
640
 
640
641
  @property
641
642
  @pulumi.getter(name="tlsVerifyIncoming")
642
- def tls_verify_incoming(self) -> bool:
643
+ def tls_verify_incoming(self) -> builtins.bool:
643
644
  return pulumi.get(self, "tls_verify_incoming")
644
645
 
645
646
  @property
646
647
  @pulumi.getter(name="tlsVerifyOutgoing")
647
- def tls_verify_outgoing(self) -> bool:
648
+ def tls_verify_outgoing(self) -> builtins.bool:
648
649
  return pulumi.get(self, "tls_verify_outgoing")
649
650
 
650
651
  @property
651
652
  @pulumi.getter(name="tlsVerifyServerHostname")
652
- def tls_verify_server_hostname(self) -> bool:
653
+ def tls_verify_server_hostname(self) -> builtins.bool:
653
654
  return pulumi.get(self, "tls_verify_server_hostname")
654
655
 
655
656
  @property
656
657
  @pulumi.getter(name="translateWanAddrs")
657
- def translate_wan_addrs(self) -> bool:
658
+ def translate_wan_addrs(self) -> builtins.bool:
658
659
  return pulumi.get(self, "translate_wan_addrs")
659
660
 
660
661
  @property
661
662
  @pulumi.getter(name="uiDir")
662
- def ui_dir(self) -> str:
663
+ def ui_dir(self) -> builtins.str:
663
664
  return pulumi.get(self, "ui_dir")
664
665
 
665
666
  @property
666
667
  @pulumi.getter(name="unixSockets")
667
- def unix_sockets(self) -> Mapping[str, str]:
668
+ def unix_sockets(self) -> Mapping[str, builtins.str]:
668
669
  return pulumi.get(self, "unix_sockets")
669
670
 
670
671
  @property
671
672
  @pulumi.getter
672
- def version(self) -> str:
673
+ def version(self) -> builtins.str:
673
674
  """
674
675
  The version of the Consul agent.
675
676
  """
@@ -677,12 +678,12 @@ class GetAgentSelfResult:
677
678
 
678
679
  @property
679
680
  @pulumi.getter(name="versionPrerelease")
680
- def version_prerelease(self) -> str:
681
+ def version_prerelease(self) -> builtins.str:
681
682
  return pulumi.get(self, "version_prerelease")
682
683
 
683
684
  @property
684
685
  @pulumi.getter(name="versionRevision")
685
- def version_revision(self) -> str:
686
+ def version_revision(self) -> builtins.str:
686
687
  return pulumi.get(self, "version_revision")
687
688
 
688
689
 
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -46,12 +47,12 @@ class GetAutopilotHealthResult:
46
47
 
47
48
  @property
48
49
  @pulumi.getter
49
- def datacenter(self) -> Optional[str]:
50
+ def datacenter(self) -> Optional[builtins.str]:
50
51
  return pulumi.get(self, "datacenter")
51
52
 
52
53
  @property
53
54
  @pulumi.getter(name="failureTolerance")
54
- def failure_tolerance(self) -> int:
55
+ def failure_tolerance(self) -> builtins.int:
55
56
  """
56
57
  The number of redundant healthy servers that could fail
57
58
  without causing an outage
@@ -60,7 +61,7 @@ class GetAutopilotHealthResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def healthy(self) -> bool:
64
+ def healthy(self) -> builtins.bool:
64
65
  """
65
66
  Whether the server is healthy according to the current Autopilot
66
67
  configuration
@@ -69,7 +70,7 @@ class GetAutopilotHealthResult:
69
70
 
70
71
  @property
71
72
  @pulumi.getter
72
- def id(self) -> str:
73
+ def id(self) -> builtins.str:
73
74
  """
74
75
  The provider-assigned unique ID for this managed resource.
75
76
  """
@@ -98,7 +99,7 @@ class AwaitableGetAutopilotHealthResult(GetAutopilotHealthResult):
98
99
  servers=self.servers)
99
100
 
100
101
 
101
- def get_autopilot_health(datacenter: Optional[str] = None,
102
+ def get_autopilot_health(datacenter: Optional[builtins.str] = None,
102
103
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAutopilotHealthResult:
103
104
  """
104
105
  The `get_autopilot_health` data source returns
@@ -116,7 +117,7 @@ def get_autopilot_health(datacenter: Optional[str] = None,
116
117
  ```
117
118
 
118
119
 
119
- :param str datacenter: The datacenter to use. This overrides the agent's
120
+ :param builtins.str datacenter: The datacenter to use. This overrides the agent's
120
121
  default datacenter and the datacenter in the provider setup.
121
122
  """
122
123
  __args__ = dict()
@@ -130,7 +131,7 @@ def get_autopilot_health(datacenter: Optional[str] = None,
130
131
  healthy=pulumi.get(__ret__, 'healthy'),
131
132
  id=pulumi.get(__ret__, 'id'),
132
133
  servers=pulumi.get(__ret__, 'servers'))
133
- def get_autopilot_health_output(datacenter: Optional[pulumi.Input[Optional[str]]] = None,
134
+ def get_autopilot_health_output(datacenter: Optional[pulumi.Input[Optional[builtins.str]]] = None,
134
135
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAutopilotHealthResult]:
135
136
  """
136
137
  The `get_autopilot_health` data source returns
@@ -148,7 +149,7 @@ def get_autopilot_health_output(datacenter: Optional[pulumi.Input[Optional[str]]
148
149
  ```
149
150
 
150
151
 
151
- :param str datacenter: The datacenter to use. This overrides the agent's
152
+ :param builtins.str datacenter: The datacenter to use. This overrides the agent's
152
153
  default datacenter and the datacenter in the provider setup.
153
154
  """
154
155
  __args__ = dict()
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -52,7 +53,7 @@ class GetCatalogNodesResult:
52
53
 
53
54
  @property
54
55
  @pulumi.getter
55
- def datacenter(self) -> str:
56
+ def datacenter(self) -> builtins.str:
56
57
  """
57
58
  The datacenter the keys are being read from to.
58
59
  """
@@ -60,7 +61,7 @@ class GetCatalogNodesResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def id(self) -> str:
64
+ def id(self) -> builtins.str:
64
65
  """
65
66
  The provider-assigned unique ID for this managed resource.
66
67
  """
@@ -68,7 +69,7 @@ class GetCatalogNodesResult:
68
69
 
69
70
  @property
70
71
  @pulumi.getter(name="nodeIds")
71
- def node_ids(self) -> Sequence[str]:
72
+ def node_ids(self) -> Sequence[builtins.str]:
72
73
  """
73
74
  A list of the Consul node IDs.
74
75
  """
@@ -76,7 +77,7 @@ class GetCatalogNodesResult:
76
77
 
77
78
  @property
78
79
  @pulumi.getter(name="nodeNames")
79
- def node_names(self) -> Sequence[str]:
80
+ def node_names(self) -> Sequence[builtins.str]:
80
81
  """
81
82
  A list of the Consul node names.
82
83
  """