pulumi-gcp 7.5.0a1704347630__py3-none-any.whl → 7.6.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +99 -0
  2. pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
  3. pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
  4. pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
  5. pulumi_gcp/clouddeploy/__init__.py +1 -0
  6. pulumi_gcp/clouddeploy/_inputs.py +239 -0
  7. pulumi_gcp/clouddeploy/automation.py +1103 -0
  8. pulumi_gcp/clouddeploy/outputs.py +246 -0
  9. pulumi_gcp/clouddomains/__init__.py +10 -0
  10. pulumi_gcp/clouddomains/_inputs.py +1098 -0
  11. pulumi_gcp/clouddomains/outputs.py +1156 -0
  12. pulumi_gcp/clouddomains/registration.py +1068 -0
  13. pulumi_gcp/cloudrunv2/job.py +4 -4
  14. pulumi_gcp/composer/_inputs.py +79 -1
  15. pulumi_gcp/composer/outputs.py +131 -4
  16. pulumi_gcp/compute/__init__.py +1 -0
  17. pulumi_gcp/compute/_inputs.py +180 -0
  18. pulumi_gcp/compute/get_instance_template.py +11 -1
  19. pulumi_gcp/compute/get_region_instance_template.py +11 -1
  20. pulumi_gcp/compute/get_reservation.py +212 -0
  21. pulumi_gcp/compute/instance_template.py +47 -0
  22. pulumi_gcp/compute/network_firewall_policy.py +20 -22
  23. pulumi_gcp/compute/outputs.py +325 -0
  24. pulumi_gcp/compute/region_instance_template.py +47 -0
  25. pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
  26. pulumi_gcp/compute/router_peer.py +54 -0
  27. pulumi_gcp/compute/vpn_tunnel.py +8 -4
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/container/_inputs.py +23 -0
  31. pulumi_gcp/container/aws_node_pool.py +7 -7
  32. pulumi_gcp/container/cluster.py +68 -14
  33. pulumi_gcp/container/get_cluster.py +11 -1
  34. pulumi_gcp/container/outputs.py +49 -0
  35. pulumi_gcp/dataflow/pipeline.py +1 -1
  36. pulumi_gcp/dataproc/_inputs.py +413 -39
  37. pulumi_gcp/dataproc/metastore_service.py +63 -0
  38. pulumi_gcp/dataproc/outputs.py +461 -39
  39. pulumi_gcp/dns/__init__.py +1 -0
  40. pulumi_gcp/dns/_inputs.py +94 -0
  41. pulumi_gcp/dns/get_managed_zones.py +89 -0
  42. pulumi_gcp/dns/outputs.py +62 -0
  43. pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
  44. pulumi_gcp/filestore/__init__.py +1 -0
  45. pulumi_gcp/filestore/get_instance.py +258 -0
  46. pulumi_gcp/filestore/instance.py +7 -7
  47. pulumi_gcp/filestore/outputs.py +126 -0
  48. pulumi_gcp/gkebackup/backup_plan.py +24 -8
  49. pulumi_gcp/gkebackup/restore_plan.py +36 -12
  50. pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
  51. pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
  52. pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
  53. pulumi_gcp/gkehub/_inputs.py +502 -2
  54. pulumi_gcp/gkehub/feature.py +34 -0
  55. pulumi_gcp/gkehub/feature_membership.py +177 -0
  56. pulumi_gcp/gkehub/membership.py +18 -6
  57. pulumi_gcp/gkehub/outputs.py +502 -2
  58. pulumi_gcp/gkeonprem/_inputs.py +21 -25
  59. pulumi_gcp/gkeonprem/outputs.py +34 -25
  60. pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
  61. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  62. pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
  63. pulumi_gcp/kms/_inputs.py +42 -0
  64. pulumi_gcp/kms/crypto_key.py +36 -0
  65. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  66. pulumi_gcp/kms/outputs.py +62 -0
  67. pulumi_gcp/logging/__init__.py +2 -0
  68. pulumi_gcp/logging/folder_settings.py +490 -0
  69. pulumi_gcp/logging/folder_sink.py +21 -21
  70. pulumi_gcp/logging/organization_settings.py +484 -0
  71. pulumi_gcp/logging/organization_sink.py +21 -21
  72. pulumi_gcp/logging/project_sink.py +7 -14
  73. pulumi_gcp/netapp/__init__.py +3 -0
  74. pulumi_gcp/netapp/active_directory.py +1413 -0
  75. pulumi_gcp/netapp/backup_vault.py +593 -0
  76. pulumi_gcp/netapp/kmsconfig.py +649 -0
  77. pulumi_gcp/orgpolicy/policy.py +28 -0
  78. pulumi_gcp/provider.py +20 -0
  79. pulumi_gcp/pubsub/subscription.py +29 -37
  80. pulumi_gcp/serviceaccount/account.py +47 -0
  81. pulumi_gcp/servicenetworking/connection.py +55 -1
  82. pulumi_gcp/sql/database_instance.py +2 -2
  83. pulumi_gcp/sql/ssl_cert.py +1 -1
  84. pulumi_gcp/sql/user.py +7 -7
  85. pulumi_gcp/storage/transfer_job.py +24 -5
  86. pulumi_gcp/vertex/__init__.py +3 -0
  87. pulumi_gcp/vertex/_inputs.py +339 -0
  88. pulumi_gcp/vertex/ai_feature_group.py +710 -0
  89. pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
  90. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
  91. pulumi_gcp/vertex/outputs.py +406 -0
  92. pulumi_gcp/vmwareengine/__init__.py +2 -0
  93. pulumi_gcp/vmwareengine/_inputs.py +84 -0
  94. pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
  95. pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
  96. pulumi_gcp/vmwareengine/outputs.py +146 -0
  97. pulumi_gcp/workflows/workflow.py +7 -7
  98. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -199,7 +199,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
199
199
  enabled=True,
200
200
  ),
201
201
  ),
202
- deletion_protection="")
202
+ deletion_protection="",
203
+ network="default",
204
+ subnetwork="default")
203
205
  basic = gcp.gkebackup.BackupPlan("basic",
204
206
  cluster=primary.id,
205
207
  location="us-central1",
@@ -239,7 +241,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
239
241
  enabled=True,
240
242
  ),
241
243
  ),
242
- deletion_protection="")
244
+ deletion_protection="",
245
+ network="default",
246
+ subnetwork="default")
243
247
  basic = gcp.gkebackup.BackupPlan("basic",
244
248
  cluster=primary.id,
245
249
  location="us-central1",
@@ -290,7 +294,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
290
294
  enabled=True,
291
295
  ),
292
296
  ),
293
- deletion_protection="")
297
+ deletion_protection="",
298
+ network="default",
299
+ subnetwork="default")
294
300
  basic = gcp.gkebackup.BackupPlan("basic",
295
301
  cluster=primary.id,
296
302
  location="us-central1",
@@ -334,7 +340,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
334
340
  enabled=True,
335
341
  ),
336
342
  ),
337
- deletion_protection="")
343
+ deletion_protection="",
344
+ network="default",
345
+ subnetwork="default")
338
346
  basic = gcp.gkebackup.BackupPlan("basic",
339
347
  cluster=primary.id,
340
348
  location="us-central1",
@@ -373,7 +381,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
373
381
  enabled=True,
374
382
  ),
375
383
  ),
376
- deletion_protection="")
384
+ deletion_protection="",
385
+ network="default",
386
+ subnetwork="default")
377
387
  basic = gcp.gkebackup.BackupPlan("basic",
378
388
  cluster=primary.id,
379
389
  location="us-central1",
@@ -441,7 +451,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
441
451
  enabled=True,
442
452
  ),
443
453
  ),
444
- deletion_protection="")
454
+ deletion_protection="",
455
+ network="default",
456
+ subnetwork="default")
445
457
  basic = gcp.gkebackup.BackupPlan("basic",
446
458
  cluster=primary.id,
447
459
  location="us-central1",
@@ -553,7 +565,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
553
565
  enabled=True,
554
566
  ),
555
567
  ),
556
- deletion_protection="")
568
+ deletion_protection="",
569
+ network="default",
570
+ subnetwork="default")
557
571
  basic = gcp.gkebackup.BackupPlan("basic",
558
572
  cluster=primary.id,
559
573
  location="us-central1",
@@ -593,7 +607,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
593
607
  enabled=True,
594
608
  ),
595
609
  ),
596
- deletion_protection="")
610
+ deletion_protection="",
611
+ network="default",
612
+ subnetwork="default")
597
613
  basic = gcp.gkebackup.BackupPlan("basic",
598
614
  cluster=primary.id,
599
615
  location="us-central1",
@@ -644,7 +660,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
644
660
  enabled=True,
645
661
  ),
646
662
  ),
647
- deletion_protection="")
663
+ deletion_protection="",
664
+ network="default",
665
+ subnetwork="default")
648
666
  basic = gcp.gkebackup.BackupPlan("basic",
649
667
  cluster=primary.id,
650
668
  location="us-central1",
@@ -688,7 +706,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
688
706
  enabled=True,
689
707
  ),
690
708
  ),
691
- deletion_protection="")
709
+ deletion_protection="",
710
+ network="default",
711
+ subnetwork="default")
692
712
  basic = gcp.gkebackup.BackupPlan("basic",
693
713
  cluster=primary.id,
694
714
  location="us-central1",
@@ -727,7 +747,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
727
747
  enabled=True,
728
748
  ),
729
749
  ),
730
- deletion_protection="")
750
+ deletion_protection="",
751
+ network="default",
752
+ subnetwork="default")
731
753
  basic = gcp.gkebackup.BackupPlan("basic",
732
754
  cluster=primary.id,
733
755
  location="us-central1",
@@ -795,7 +817,9 @@ class RestorePlanIamPolicy(pulumi.CustomResource):
795
817
  enabled=True,
796
818
  ),
797
819
  ),
798
- deletion_protection="")
820
+ deletion_protection="",
821
+ network="default",
822
+ subnetwork="default")
799
823
  basic = gcp.gkebackup.BackupPlan("basic",
800
824
  cluster=primary.id,
801
825
  location="us-central1",