pulumi-gcp 8.9.0a1731221331__py3-none-any.whl → 8.9.0a1731432418__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 (114) hide show
  1. pulumi_gcp/__init__.py +64 -0
  2. pulumi_gcp/activedirectory/domain.py +24 -0
  3. pulumi_gcp/apigee/__init__.py +1 -0
  4. pulumi_gcp/apigee/_inputs.py +74 -0
  5. pulumi_gcp/apigee/api.py +456 -0
  6. pulumi_gcp/apigee/outputs.py +65 -0
  7. pulumi_gcp/applicationintegration/auth_config.py +24 -0
  8. pulumi_gcp/backupdisasterrecovery/__init__.py +4 -0
  9. pulumi_gcp/backupdisasterrecovery/_inputs.py +533 -0
  10. pulumi_gcp/backupdisasterrecovery/backup_plan.py +653 -0
  11. pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +766 -0
  12. pulumi_gcp/backupdisasterrecovery/backup_vault.py +146 -6
  13. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +204 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +243 -0
  15. pulumi_gcp/backupdisasterrecovery/outputs.py +702 -0
  16. pulumi_gcp/bigquery/data_transfer_config.py +24 -0
  17. pulumi_gcp/cloudrunv2/_inputs.py +46 -0
  18. pulumi_gcp/cloudrunv2/job.py +0 -2
  19. pulumi_gcp/cloudrunv2/outputs.py +60 -2
  20. pulumi_gcp/cloudrunv2/service.py +0 -2
  21. pulumi_gcp/compute/__init__.py +1 -0
  22. pulumi_gcp/compute/_inputs.py +2163 -256
  23. pulumi_gcp/compute/disk.py +7 -7
  24. pulumi_gcp/compute/firewall_policy_rule.py +108 -54
  25. pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
  26. pulumi_gcp/compute/health_check.py +42 -42
  27. pulumi_gcp/compute/network_firewall_policy_rule.py +4 -4
  28. pulumi_gcp/compute/network_firewall_policy_with_rules.py +10 -10
  29. pulumi_gcp/compute/node_template.py +95 -0
  30. pulumi_gcp/compute/outputs.py +1639 -213
  31. pulumi_gcp/compute/region_disk.py +7 -7
  32. pulumi_gcp/compute/region_health_check.py +42 -42
  33. pulumi_gcp/compute/region_instance_group_manager.py +54 -14
  34. pulumi_gcp/compute/region_network_firewall_policy_rule.py +4 -4
  35. pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +10 -10
  36. pulumi_gcp/compute/region_resize_request.py +772 -0
  37. pulumi_gcp/compute/region_security_policy.py +120 -0
  38. pulumi_gcp/compute/region_security_policy_rule.py +6 -6
  39. pulumi_gcp/compute/router_peer.py +56 -35
  40. pulumi_gcp/compute/security_scan_config.py +8 -8
  41. pulumi_gcp/config/__init__.pyi +4 -0
  42. pulumi_gcp/config/vars.py +8 -0
  43. pulumi_gcp/container/_inputs.py +345 -10
  44. pulumi_gcp/container/cluster.py +101 -0
  45. pulumi_gcp/container/get_cluster.py +23 -1
  46. pulumi_gcp/container/outputs.py +456 -8
  47. pulumi_gcp/dataloss/prevention_discovery_config.py +7 -7
  48. pulumi_gcp/dataproc/__init__.py +2 -0
  49. pulumi_gcp/dataproc/_inputs.py +101 -0
  50. pulumi_gcp/dataproc/gdc_application_environment.py +931 -0
  51. pulumi_gcp/dataproc/gdc_service_instance.py +1022 -0
  52. pulumi_gcp/dataproc/outputs.py +94 -0
  53. pulumi_gcp/edgecontainer/vpn_connection.py +4 -4
  54. pulumi_gcp/firebase/android_app.py +2 -2
  55. pulumi_gcp/firebase/apple_app.py +2 -2
  56. pulumi_gcp/firebase/web_app.py +2 -2
  57. pulumi_gcp/firestore/index.py +44 -0
  58. pulumi_gcp/gkeonprem/_inputs.py +15 -15
  59. pulumi_gcp/gkeonprem/outputs.py +10 -10
  60. pulumi_gcp/healthcare/dataset.py +7 -7
  61. pulumi_gcp/healthcare/dicom_store.py +7 -7
  62. pulumi_gcp/healthcare/fhir_store.py +7 -7
  63. pulumi_gcp/healthcare/hl7_store.py +14 -14
  64. pulumi_gcp/iam/__init__.py +1 -0
  65. pulumi_gcp/iam/_inputs.py +161 -0
  66. pulumi_gcp/iam/outputs.py +114 -0
  67. pulumi_gcp/iam/principal_access_boundary_policy.py +679 -0
  68. pulumi_gcp/logging/metric.py +2 -2
  69. pulumi_gcp/looker/_inputs.py +6 -0
  70. pulumi_gcp/looker/instance.py +169 -321
  71. pulumi_gcp/looker/outputs.py +4 -0
  72. pulumi_gcp/memorystore/instance.py +4 -0
  73. pulumi_gcp/monitoring/alert_policy.py +24 -0
  74. pulumi_gcp/monitoring/custom_service.py +24 -0
  75. pulumi_gcp/monitoring/group.py +24 -0
  76. pulumi_gcp/monitoring/metric_descriptor.py +24 -0
  77. pulumi_gcp/monitoring/slo.py +24 -0
  78. pulumi_gcp/monitoring/uptime_check_config.py +24 -0
  79. pulumi_gcp/networkmanagement/__init__.py +1 -0
  80. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +1358 -0
  81. pulumi_gcp/osconfig/patch_deployment.py +8 -8
  82. pulumi_gcp/provider.py +40 -0
  83. pulumi_gcp/pulumi-plugin.json +1 -1
  84. pulumi_gcp/redis/_inputs.py +3 -3
  85. pulumi_gcp/redis/outputs.py +2 -2
  86. pulumi_gcp/securitycenter/notification_config.py +4 -16
  87. pulumi_gcp/securitycenter/project_notification_config.py +0 -24
  88. pulumi_gcp/securitycenter/v2_organization_notification_config.py +4 -16
  89. pulumi_gcp/spanner/__init__.py +1 -0
  90. pulumi_gcp/spanner/_inputs.py +9 -9
  91. pulumi_gcp/spanner/get_database.py +229 -0
  92. pulumi_gcp/spanner/get_instance.py +12 -1
  93. pulumi_gcp/spanner/instance.py +70 -0
  94. pulumi_gcp/spanner/outputs.py +46 -12
  95. pulumi_gcp/sql/_inputs.py +26 -0
  96. pulumi_gcp/sql/database_instance.py +124 -11
  97. pulumi_gcp/sql/get_database_instance.py +12 -1
  98. pulumi_gcp/sql/outputs.py +51 -0
  99. pulumi_gcp/storage/_inputs.py +3 -3
  100. pulumi_gcp/storage/outputs.py +2 -2
  101. pulumi_gcp/tags/tag_binding.py +4 -4
  102. pulumi_gcp/tags/tag_value.py +2 -2
  103. pulumi_gcp/transcoder/job.py +24 -0
  104. pulumi_gcp/vertex/_inputs.py +184 -0
  105. pulumi_gcp/vertex/ai_endpoint.py +394 -8
  106. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  107. pulumi_gcp/vertex/outputs.py +166 -0
  108. pulumi_gcp/workbench/instance.py +21 -7
  109. pulumi_gcp/workflows/workflow.py +36 -0
  110. pulumi_gcp/workstations/workstation_config.py +8 -8
  111. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/METADATA +1 -1
  112. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/RECORD +114 -103
  113. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/WHEEL +1 -1
  114. {pulumi_gcp-8.9.0a1731221331.dist-info → pulumi_gcp-8.9.0a1731432418.dist-info}/top_level.txt +0 -0
@@ -528,6 +528,8 @@ class InstanceOauthConfig(dict):
528
528
  """
529
529
  :param str client_id: The client ID for the Oauth config.
530
530
  :param str client_secret: The client secret for the Oauth config.
531
+
532
+ - - -
531
533
  """
532
534
  pulumi.set(__self__, "client_id", client_id)
533
535
  pulumi.set(__self__, "client_secret", client_secret)
@@ -545,6 +547,8 @@ class InstanceOauthConfig(dict):
545
547
  def client_secret(self) -> str:
546
548
  """
547
549
  The client secret for the Oauth config.
550
+
551
+ - - -
548
552
  """
549
553
  return pulumi.get(self, "client_secret")
550
554
 
@@ -897,6 +897,8 @@ class Instance(pulumi.CustomResource):
897
897
  zone_distribution_config: Optional[pulumi.Input[Union['InstanceZoneDistributionConfigArgs', 'InstanceZoneDistributionConfigArgsDict']]] = None,
898
898
  __props__=None):
899
899
  """
900
+ A Google Cloud Memorystore instance.
901
+
900
902
  ## Example Usage
901
903
 
902
904
  ### Memorystore Instance Basic
@@ -1113,6 +1115,8 @@ class Instance(pulumi.CustomResource):
1113
1115
  args: InstanceArgs,
1114
1116
  opts: Optional[pulumi.ResourceOptions] = None):
1115
1117
  """
1118
+ A Google Cloud Memorystore instance.
1119
+
1116
1120
  ## Example Usage
1117
1121
 
1118
1122
  ### Memorystore Instance Basic
@@ -591,10 +591,22 @@ class AlertPolicy(pulumi.CustomResource):
591
591
 
592
592
  AlertPolicy can be imported using any of these accepted formats:
593
593
 
594
+ * `{{project}}/{{name}}`
595
+
596
+ * `{{project}} {{name}}`
597
+
594
598
  * `{{name}}`
595
599
 
596
600
  When using the `pulumi import` command, AlertPolicy can be imported using one of the formats above. For example:
597
601
 
602
+ ```sh
603
+ $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default {{project}}/{{name}}
604
+ ```
605
+
606
+ ```sh
607
+ $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default "{{project}} {{name}}"
608
+ ```
609
+
598
610
  ```sh
599
611
  $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default {{name}}
600
612
  ```
@@ -755,10 +767,22 @@ class AlertPolicy(pulumi.CustomResource):
755
767
 
756
768
  AlertPolicy can be imported using any of these accepted formats:
757
769
 
770
+ * `{{project}}/{{name}}`
771
+
772
+ * `{{project}} {{name}}`
773
+
758
774
  * `{{name}}`
759
775
 
760
776
  When using the `pulumi import` command, AlertPolicy can be imported using one of the formats above. For example:
761
777
 
778
+ ```sh
779
+ $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default {{project}}/{{name}}
780
+ ```
781
+
782
+ ```sh
783
+ $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default "{{project}} {{name}}"
784
+ ```
785
+
762
786
  ```sh
763
787
  $ pulumi import gcp:monitoring/alertPolicy:AlertPolicy default {{name}}
764
788
  ```
@@ -293,10 +293,22 @@ class CustomService(pulumi.CustomResource):
293
293
 
294
294
  Service can be imported using any of these accepted formats:
295
295
 
296
+ * `{{project}}/{{name}}`
297
+
298
+ * `{{project}} {{name}}`
299
+
296
300
  * `{{name}}`
297
301
 
298
302
  When using the `pulumi import` command, Service can be imported using one of the formats above. For example:
299
303
 
304
+ ```sh
305
+ $ pulumi import gcp:monitoring/customService:CustomService default {{project}}/{{name}}
306
+ ```
307
+
308
+ ```sh
309
+ $ pulumi import gcp:monitoring/customService:CustomService default "{{project}} {{name}}"
310
+ ```
311
+
300
312
  ```sh
301
313
  $ pulumi import gcp:monitoring/customService:CustomService default {{name}}
302
314
  ```
@@ -361,10 +373,22 @@ class CustomService(pulumi.CustomResource):
361
373
 
362
374
  Service can be imported using any of these accepted formats:
363
375
 
376
+ * `{{project}}/{{name}}`
377
+
378
+ * `{{project}} {{name}}`
379
+
364
380
  * `{{name}}`
365
381
 
366
382
  When using the `pulumi import` command, Service can be imported using one of the formats above. For example:
367
383
 
384
+ ```sh
385
+ $ pulumi import gcp:monitoring/customService:CustomService default {{project}}/{{name}}
386
+ ```
387
+
388
+ ```sh
389
+ $ pulumi import gcp:monitoring/customService:CustomService default "{{project}} {{name}}"
390
+ ```
391
+
368
392
  ```sh
369
393
  $ pulumi import gcp:monitoring/customService:CustomService default {{name}}
370
394
  ```
@@ -302,10 +302,22 @@ class Group(pulumi.CustomResource):
302
302
 
303
303
  Group can be imported using any of these accepted formats:
304
304
 
305
+ * `{{project}}/{{name}}`
306
+
307
+ * `{{project}} {{name}}`
308
+
305
309
  * `{{name}}`
306
310
 
307
311
  When using the `pulumi import` command, Group can be imported using one of the formats above. For example:
308
312
 
313
+ ```sh
314
+ $ pulumi import gcp:monitoring/group:Group default {{project}}/{{name}}
315
+ ```
316
+
317
+ ```sh
318
+ $ pulumi import gcp:monitoring/group:Group default "{{project}} {{name}}"
319
+ ```
320
+
309
321
  ```sh
310
322
  $ pulumi import gcp:monitoring/group:Group default {{name}}
311
323
  ```
@@ -377,10 +389,22 @@ class Group(pulumi.CustomResource):
377
389
 
378
390
  Group can be imported using any of these accepted formats:
379
391
 
392
+ * `{{project}}/{{name}}`
393
+
394
+ * `{{project}} {{name}}`
395
+
380
396
  * `{{name}}`
381
397
 
382
398
  When using the `pulumi import` command, Group can be imported using one of the formats above. For example:
383
399
 
400
+ ```sh
401
+ $ pulumi import gcp:monitoring/group:Group default {{project}}/{{name}}
402
+ ```
403
+
404
+ ```sh
405
+ $ pulumi import gcp:monitoring/group:Group default "{{project}} {{name}}"
406
+ ```
407
+
384
408
  ```sh
385
409
  $ pulumi import gcp:monitoring/group:Group default {{name}}
386
410
  ```
@@ -562,10 +562,22 @@ class MetricDescriptor(pulumi.CustomResource):
562
562
 
563
563
  MetricDescriptor can be imported using any of these accepted formats:
564
564
 
565
+ * `{{project}}/{{name}}`
566
+
567
+ * `{{project}} {{name}}`
568
+
565
569
  * `{{name}}`
566
570
 
567
571
  When using the `pulumi import` command, MetricDescriptor can be imported using one of the formats above. For example:
568
572
 
573
+ ```sh
574
+ $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default {{project}}/{{name}}
575
+ ```
576
+
577
+ ```sh
578
+ $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default "{{project}} {{name}}"
579
+ ```
580
+
569
581
  ```sh
570
582
  $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default {{name}}
571
583
  ```
@@ -679,10 +691,22 @@ class MetricDescriptor(pulumi.CustomResource):
679
691
 
680
692
  MetricDescriptor can be imported using any of these accepted formats:
681
693
 
694
+ * `{{project}}/{{name}}`
695
+
696
+ * `{{project}} {{name}}`
697
+
682
698
  * `{{name}}`
683
699
 
684
700
  When using the `pulumi import` command, MetricDescriptor can be imported using one of the formats above. For example:
685
701
 
702
+ ```sh
703
+ $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default {{project}}/{{name}}
704
+ ```
705
+
706
+ ```sh
707
+ $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default "{{project}} {{name}}"
708
+ ```
709
+
686
710
  ```sh
687
711
  $ pulumi import gcp:monitoring/metricDescriptor:MetricDescriptor default {{name}}
688
712
  ```
@@ -738,10 +738,22 @@ class Slo(pulumi.CustomResource):
738
738
 
739
739
  Slo can be imported using any of these accepted formats:
740
740
 
741
+ * `{{project}}/{{name}}`
742
+
743
+ * `{{project}} {{name}}`
744
+
741
745
  * `{{name}}`
742
746
 
743
747
  When using the `pulumi import` command, Slo can be imported using one of the formats above. For example:
744
748
 
749
+ ```sh
750
+ $ pulumi import gcp:monitoring/slo:Slo default {{project}}/{{name}}
751
+ ```
752
+
753
+ ```sh
754
+ $ pulumi import gcp:monitoring/slo:Slo default "{{project}} {{name}}"
755
+ ```
756
+
745
757
  ```sh
746
758
  $ pulumi import gcp:monitoring/slo:Slo default {{name}}
747
759
  ```
@@ -986,10 +998,22 @@ class Slo(pulumi.CustomResource):
986
998
 
987
999
  Slo can be imported using any of these accepted formats:
988
1000
 
1001
+ * `{{project}}/{{name}}`
1002
+
1003
+ * `{{project}} {{name}}`
1004
+
989
1005
  * `{{name}}`
990
1006
 
991
1007
  When using the `pulumi import` command, Slo can be imported using one of the formats above. For example:
992
1008
 
1009
+ ```sh
1010
+ $ pulumi import gcp:monitoring/slo:Slo default {{project}}/{{name}}
1011
+ ```
1012
+
1013
+ ```sh
1014
+ $ pulumi import gcp:monitoring/slo:Slo default "{{project}} {{name}}"
1015
+ ```
1016
+
993
1017
  ```sh
994
1018
  $ pulumi import gcp:monitoring/slo:Slo default {{name}}
995
1019
  ```
@@ -749,10 +749,22 @@ class UptimeCheckConfig(pulumi.CustomResource):
749
749
 
750
750
  UptimeCheckConfig can be imported using any of these accepted formats:
751
751
 
752
+ * `{{project}}/{{name}}`
753
+
754
+ * `{{project}} {{name}}`
755
+
752
756
  * `{{name}}`
753
757
 
754
758
  When using the `pulumi import` command, UptimeCheckConfig can be imported using one of the formats above. For example:
755
759
 
760
+ ```sh
761
+ $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default {{project}}/{{name}}
762
+ ```
763
+
764
+ ```sh
765
+ $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default "{{project}} {{name}}"
766
+ ```
767
+
756
768
  ```sh
757
769
  $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default {{name}}
758
770
  ```
@@ -990,10 +1002,22 @@ class UptimeCheckConfig(pulumi.CustomResource):
990
1002
 
991
1003
  UptimeCheckConfig can be imported using any of these accepted formats:
992
1004
 
1005
+ * `{{project}}/{{name}}`
1006
+
1007
+ * `{{project}} {{name}}`
1008
+
993
1009
  * `{{name}}`
994
1010
 
995
1011
  When using the `pulumi import` command, UptimeCheckConfig can be imported using one of the formats above. For example:
996
1012
 
1013
+ ```sh
1014
+ $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default {{project}}/{{name}}
1015
+ ```
1016
+
1017
+ ```sh
1018
+ $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default "{{project}} {{name}}"
1019
+ ```
1020
+
997
1021
  ```sh
998
1022
  $ pulumi import gcp:monitoring/uptimeCheckConfig:UptimeCheckConfig default {{name}}
999
1023
  ```
@@ -6,5 +6,6 @@ from .. import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
8
  from .connectivity_test import *
9
+ from .vpc_flow_logs_config import *
9
10
  from ._inputs import *
10
11
  from . import outputs