pulumi-gcp 8.2.0a1726671837__py3-none-any.whl → 8.3.0__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 (100) hide show
  1. pulumi_gcp/__init__.py +158 -0
  2. pulumi_gcp/alloydb/_inputs.py +20 -0
  3. pulumi_gcp/alloydb/instance.py +36 -0
  4. pulumi_gcp/alloydb/outputs.py +14 -0
  5. pulumi_gcp/bigquery/__init__.py +1 -0
  6. pulumi_gcp/bigquery/get_tables.py +143 -0
  7. pulumi_gcp/bigquery/outputs.py +30 -0
  8. pulumi_gcp/compute/__init__.py +2 -0
  9. pulumi_gcp/compute/_inputs.py +12481 -9158
  10. pulumi_gcp/compute/attached_disk.py +103 -0
  11. pulumi_gcp/compute/backend_service.py +29 -22
  12. pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
  13. pulumi_gcp/compute/get_instance.py +3 -0
  14. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  15. pulumi_gcp/compute/outputs.py +3695 -1293
  16. pulumi_gcp/compute/region_backend_service.py +29 -22
  17. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  18. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  19. pulumi_gcp/compute/router_nat.py +27 -66
  20. pulumi_gcp/compute/service_attachment.py +75 -0
  21. pulumi_gcp/compute/target_http_proxy.py +49 -28
  22. pulumi_gcp/compute/target_https_proxy.py +49 -28
  23. pulumi_gcp/config/__init__.pyi +6 -0
  24. pulumi_gcp/config/vars.py +12 -0
  25. pulumi_gcp/container/_inputs.py +168 -99
  26. pulumi_gcp/container/attached_cluster.py +54 -1
  27. pulumi_gcp/container/outputs.py +155 -70
  28. pulumi_gcp/databasemigrationservice/__init__.py +1 -0
  29. pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
  30. pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
  31. pulumi_gcp/databasemigrationservice/outputs.py +268 -0
  32. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  33. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  34. pulumi_gcp/dataproc/metastore_service.py +95 -0
  35. pulumi_gcp/datastream/stream.py +21 -14
  36. pulumi_gcp/developerconnect/__init__.py +11 -0
  37. pulumi_gcp/developerconnect/_inputs.py +304 -0
  38. pulumi_gcp/developerconnect/connection.py +1037 -0
  39. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  40. pulumi_gcp/developerconnect/outputs.py +249 -0
  41. pulumi_gcp/discoveryengine/__init__.py +1 -0
  42. pulumi_gcp/discoveryengine/_inputs.py +131 -0
  43. pulumi_gcp/discoveryengine/outputs.py +131 -0
  44. pulumi_gcp/discoveryengine/target_site.py +870 -0
  45. pulumi_gcp/dns/managed_zone.py +1 -1
  46. pulumi_gcp/filestore/get_instance.py +21 -1
  47. pulumi_gcp/filestore/instance.py +94 -0
  48. pulumi_gcp/gkehub/feature_membership.py +140 -62
  49. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  50. pulumi_gcp/gkeonprem/outputs.py +2 -2
  51. pulumi_gcp/healthcare/__init__.py +1 -0
  52. pulumi_gcp/healthcare/_inputs.py +39 -0
  53. pulumi_gcp/healthcare/outputs.py +40 -0
  54. pulumi_gcp/healthcare/workspace.py +465 -0
  55. pulumi_gcp/looker/instance.py +81 -0
  56. pulumi_gcp/memorystore/__init__.py +10 -0
  57. pulumi_gcp/memorystore/_inputs.py +731 -0
  58. pulumi_gcp/memorystore/instance.py +1663 -0
  59. pulumi_gcp/memorystore/outputs.py +598 -0
  60. pulumi_gcp/netapp/_inputs.py +63 -0
  61. pulumi_gcp/netapp/outputs.py +57 -0
  62. pulumi_gcp/netapp/storage_pool.py +54 -0
  63. pulumi_gcp/netapp/volume.py +183 -0
  64. pulumi_gcp/organizations/folder.py +52 -33
  65. pulumi_gcp/provider.py +60 -0
  66. pulumi_gcp/pubsub/subscription.py +43 -7
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/secretmanager/__init__.py +8 -0
  69. pulumi_gcp/secretmanager/_inputs.py +308 -0
  70. pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
  71. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
  72. pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
  73. pulumi_gcp/secretmanager/outputs.py +336 -0
  74. pulumi_gcp/secretmanager/regional_secret.py +1433 -0
  75. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
  76. pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
  77. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
  78. pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
  79. pulumi_gcp/securitycenter/__init__.py +4 -0
  80. pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
  81. pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
  82. pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
  83. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
  84. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
  85. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  86. pulumi_gcp/siteverification/__init__.py +3 -0
  87. pulumi_gcp/siteverification/_inputs.py +85 -0
  88. pulumi_gcp/siteverification/outputs.py +57 -0
  89. pulumi_gcp/siteverification/web_resource.py +398 -0
  90. pulumi_gcp/spanner/__init__.py +1 -0
  91. pulumi_gcp/spanner/_inputs.py +129 -0
  92. pulumi_gcp/spanner/backup_schedule.py +748 -0
  93. pulumi_gcp/spanner/get_instance.py +11 -1
  94. pulumi_gcp/spanner/instance.py +56 -0
  95. pulumi_gcp/spanner/outputs.py +93 -0
  96. pulumi_gcp/vpcaccess/connector.py +21 -28
  97. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/METADATA +1 -1
  98. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/RECORD +100 -69
  99. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/WHEEL +0 -0
  100. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,12 @@ from .. import _utilities
16
16
  from . import outputs
17
17
 
18
18
  __all__ = [
19
+ 'RegionalSecretCustomerManagedEncryption',
20
+ 'RegionalSecretIamBindingCondition',
21
+ 'RegionalSecretIamMemberCondition',
22
+ 'RegionalSecretRotation',
23
+ 'RegionalSecretTopic',
24
+ 'RegionalSecretVersionCustomerManagedEncryption',
19
25
  'SecretIamBindingCondition',
20
26
  'SecretIamMemberCondition',
21
27
  'SecretReplication',
@@ -26,6 +32,10 @@ __all__ = [
26
32
  'SecretReplicationUserManagedReplicaCustomerManagedEncryption',
27
33
  'SecretRotation',
28
34
  'SecretTopic',
35
+ 'GetRegionalSecretCustomerManagedEncryptionResult',
36
+ 'GetRegionalSecretRotationResult',
37
+ 'GetRegionalSecretTopicResult',
38
+ 'GetRegionalSecretVersionCustomerManagedEncryptionResult',
29
39
  'GetSecretReplicationResult',
30
40
  'GetSecretReplicationAutoResult',
31
41
  'GetSecretReplicationAutoCustomerManagedEncryptionResult',
@@ -45,6 +55,235 @@ __all__ = [
45
55
  'GetSecretsSecretTopicResult',
46
56
  ]
47
57
 
58
+ @pulumi.output_type
59
+ class RegionalSecretCustomerManagedEncryption(dict):
60
+ @staticmethod
61
+ def __key_warning(key: str):
62
+ suggest = None
63
+ if key == "kmsKeyName":
64
+ suggest = "kms_key_name"
65
+
66
+ if suggest:
67
+ pulumi.log.warn(f"Key '{key}' not found in RegionalSecretCustomerManagedEncryption. Access the value via the '{suggest}' property getter instead.")
68
+
69
+ def __getitem__(self, key: str) -> Any:
70
+ RegionalSecretCustomerManagedEncryption.__key_warning(key)
71
+ return super().__getitem__(key)
72
+
73
+ def get(self, key: str, default = None) -> Any:
74
+ RegionalSecretCustomerManagedEncryption.__key_warning(key)
75
+ return super().get(key, default)
76
+
77
+ def __init__(__self__, *,
78
+ kms_key_name: str):
79
+ """
80
+ :param str kms_key_name: The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
81
+ """
82
+ pulumi.set(__self__, "kms_key_name", kms_key_name)
83
+
84
+ @property
85
+ @pulumi.getter(name="kmsKeyName")
86
+ def kms_key_name(self) -> str:
87
+ """
88
+ The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
89
+ """
90
+ return pulumi.get(self, "kms_key_name")
91
+
92
+
93
+ @pulumi.output_type
94
+ class RegionalSecretIamBindingCondition(dict):
95
+ def __init__(__self__, *,
96
+ expression: str,
97
+ title: str,
98
+ description: Optional[str] = None):
99
+ """
100
+ :param str expression: Textual representation of an expression in Common Expression Language syntax.
101
+ :param str title: A title for the expression, i.e. a short string describing its purpose.
102
+ """
103
+ pulumi.set(__self__, "expression", expression)
104
+ pulumi.set(__self__, "title", title)
105
+ if description is not None:
106
+ pulumi.set(__self__, "description", description)
107
+
108
+ @property
109
+ @pulumi.getter
110
+ def expression(self) -> str:
111
+ """
112
+ Textual representation of an expression in Common Expression Language syntax.
113
+ """
114
+ return pulumi.get(self, "expression")
115
+
116
+ @property
117
+ @pulumi.getter
118
+ def title(self) -> str:
119
+ """
120
+ A title for the expression, i.e. a short string describing its purpose.
121
+ """
122
+ return pulumi.get(self, "title")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def description(self) -> Optional[str]:
127
+ return pulumi.get(self, "description")
128
+
129
+
130
+ @pulumi.output_type
131
+ class RegionalSecretIamMemberCondition(dict):
132
+ def __init__(__self__, *,
133
+ expression: str,
134
+ title: str,
135
+ description: Optional[str] = None):
136
+ """
137
+ :param str expression: Textual representation of an expression in Common Expression Language syntax.
138
+ :param str title: A title for the expression, i.e. a short string describing its purpose.
139
+ """
140
+ pulumi.set(__self__, "expression", expression)
141
+ pulumi.set(__self__, "title", title)
142
+ if description is not None:
143
+ pulumi.set(__self__, "description", description)
144
+
145
+ @property
146
+ @pulumi.getter
147
+ def expression(self) -> str:
148
+ """
149
+ Textual representation of an expression in Common Expression Language syntax.
150
+ """
151
+ return pulumi.get(self, "expression")
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def title(self) -> str:
156
+ """
157
+ A title for the expression, i.e. a short string describing its purpose.
158
+ """
159
+ return pulumi.get(self, "title")
160
+
161
+ @property
162
+ @pulumi.getter
163
+ def description(self) -> Optional[str]:
164
+ return pulumi.get(self, "description")
165
+
166
+
167
+ @pulumi.output_type
168
+ class RegionalSecretRotation(dict):
169
+ @staticmethod
170
+ def __key_warning(key: str):
171
+ suggest = None
172
+ if key == "nextRotationTime":
173
+ suggest = "next_rotation_time"
174
+ elif key == "rotationPeriod":
175
+ suggest = "rotation_period"
176
+
177
+ if suggest:
178
+ pulumi.log.warn(f"Key '{key}' not found in RegionalSecretRotation. Access the value via the '{suggest}' property getter instead.")
179
+
180
+ def __getitem__(self, key: str) -> Any:
181
+ RegionalSecretRotation.__key_warning(key)
182
+ return super().__getitem__(key)
183
+
184
+ def get(self, key: str, default = None) -> Any:
185
+ RegionalSecretRotation.__key_warning(key)
186
+ return super().get(key, default)
187
+
188
+ def __init__(__self__, *,
189
+ next_rotation_time: Optional[str] = None,
190
+ rotation_period: Optional[str] = None):
191
+ """
192
+ :param str next_rotation_time: Timestamp in UTC at which the Secret is scheduled to rotate.
193
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
194
+ fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
195
+ :param str rotation_period: The Duration between rotation notifications. Must be in seconds and at least 3600s (1h)
196
+ and at most 3153600000s (100 years). If rotationPeriod is set, `next_rotation_time` must
197
+ be set. `next_rotation_time` will be advanced by this period when the service
198
+ automatically sends rotation notifications.
199
+ """
200
+ if next_rotation_time is not None:
201
+ pulumi.set(__self__, "next_rotation_time", next_rotation_time)
202
+ if rotation_period is not None:
203
+ pulumi.set(__self__, "rotation_period", rotation_period)
204
+
205
+ @property
206
+ @pulumi.getter(name="nextRotationTime")
207
+ def next_rotation_time(self) -> Optional[str]:
208
+ """
209
+ Timestamp in UTC at which the Secret is scheduled to rotate.
210
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
211
+ fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
212
+ """
213
+ return pulumi.get(self, "next_rotation_time")
214
+
215
+ @property
216
+ @pulumi.getter(name="rotationPeriod")
217
+ def rotation_period(self) -> Optional[str]:
218
+ """
219
+ The Duration between rotation notifications. Must be in seconds and at least 3600s (1h)
220
+ and at most 3153600000s (100 years). If rotationPeriod is set, `next_rotation_time` must
221
+ be set. `next_rotation_time` will be advanced by this period when the service
222
+ automatically sends rotation notifications.
223
+ """
224
+ return pulumi.get(self, "rotation_period")
225
+
226
+
227
+ @pulumi.output_type
228
+ class RegionalSecretTopic(dict):
229
+ def __init__(__self__, *,
230
+ name: str):
231
+ """
232
+ :param str name: The resource name of the Pub/Sub topic that will be published to, in the following format:
233
+ projects/*/topics/*. For publication to succeed, the Secret Manager Service
234
+ Agent service account must have pubsub.publisher permissions on the topic.
235
+ """
236
+ pulumi.set(__self__, "name", name)
237
+
238
+ @property
239
+ @pulumi.getter
240
+ def name(self) -> str:
241
+ """
242
+ The resource name of the Pub/Sub topic that will be published to, in the following format:
243
+ projects/*/topics/*. For publication to succeed, the Secret Manager Service
244
+ Agent service account must have pubsub.publisher permissions on the topic.
245
+ """
246
+ return pulumi.get(self, "name")
247
+
248
+
249
+ @pulumi.output_type
250
+ class RegionalSecretVersionCustomerManagedEncryption(dict):
251
+ @staticmethod
252
+ def __key_warning(key: str):
253
+ suggest = None
254
+ if key == "kmsKeyVersionName":
255
+ suggest = "kms_key_version_name"
256
+
257
+ if suggest:
258
+ pulumi.log.warn(f"Key '{key}' not found in RegionalSecretVersionCustomerManagedEncryption. Access the value via the '{suggest}' property getter instead.")
259
+
260
+ def __getitem__(self, key: str) -> Any:
261
+ RegionalSecretVersionCustomerManagedEncryption.__key_warning(key)
262
+ return super().__getitem__(key)
263
+
264
+ def get(self, key: str, default = None) -> Any:
265
+ RegionalSecretVersionCustomerManagedEncryption.__key_warning(key)
266
+ return super().get(key, default)
267
+
268
+ def __init__(__self__, *,
269
+ kms_key_version_name: Optional[str] = None):
270
+ """
271
+ :param str kms_key_version_name: (Output)
272
+ The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
273
+ """
274
+ if kms_key_version_name is not None:
275
+ pulumi.set(__self__, "kms_key_version_name", kms_key_version_name)
276
+
277
+ @property
278
+ @pulumi.getter(name="kmsKeyVersionName")
279
+ def kms_key_version_name(self) -> Optional[str]:
280
+ """
281
+ (Output)
282
+ The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
283
+ """
284
+ return pulumi.get(self, "kms_key_version_name")
285
+
286
+
48
287
  @pulumi.output_type
49
288
  class SecretIamBindingCondition(dict):
50
289
  def __init__(__self__, *,
@@ -434,6 +673,103 @@ class SecretTopic(dict):
434
673
  return pulumi.get(self, "name")
435
674
 
436
675
 
676
+ @pulumi.output_type
677
+ class GetRegionalSecretCustomerManagedEncryptionResult(dict):
678
+ def __init__(__self__, *,
679
+ kms_key_name: str):
680
+ """
681
+ :param str kms_key_name: The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
682
+ """
683
+ pulumi.set(__self__, "kms_key_name", kms_key_name)
684
+
685
+ @property
686
+ @pulumi.getter(name="kmsKeyName")
687
+ def kms_key_name(self) -> str:
688
+ """
689
+ The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
690
+ """
691
+ return pulumi.get(self, "kms_key_name")
692
+
693
+
694
+ @pulumi.output_type
695
+ class GetRegionalSecretRotationResult(dict):
696
+ def __init__(__self__, *,
697
+ next_rotation_time: str,
698
+ rotation_period: str):
699
+ """
700
+ :param str next_rotation_time: Timestamp in UTC at which the Secret is scheduled to rotate.
701
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
702
+ fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
703
+ :param str rotation_period: The Duration between rotation notifications. Must be in seconds and at least 3600s (1h)
704
+ and at most 3153600000s (100 years). If rotationPeriod is set, 'next_rotation_time' must
705
+ be set. 'next_rotation_time' will be advanced by this period when the service
706
+ automatically sends rotation notifications.
707
+ """
708
+ pulumi.set(__self__, "next_rotation_time", next_rotation_time)
709
+ pulumi.set(__self__, "rotation_period", rotation_period)
710
+
711
+ @property
712
+ @pulumi.getter(name="nextRotationTime")
713
+ def next_rotation_time(self) -> str:
714
+ """
715
+ Timestamp in UTC at which the Secret is scheduled to rotate.
716
+ A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
717
+ fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
718
+ """
719
+ return pulumi.get(self, "next_rotation_time")
720
+
721
+ @property
722
+ @pulumi.getter(name="rotationPeriod")
723
+ def rotation_period(self) -> str:
724
+ """
725
+ The Duration between rotation notifications. Must be in seconds and at least 3600s (1h)
726
+ and at most 3153600000s (100 years). If rotationPeriod is set, 'next_rotation_time' must
727
+ be set. 'next_rotation_time' will be advanced by this period when the service
728
+ automatically sends rotation notifications.
729
+ """
730
+ return pulumi.get(self, "rotation_period")
731
+
732
+
733
+ @pulumi.output_type
734
+ class GetRegionalSecretTopicResult(dict):
735
+ def __init__(__self__, *,
736
+ name: str):
737
+ """
738
+ :param str name: The resource name of the Pub/Sub topic that will be published to, in the following format:
739
+ projects/*/topics/*. For publication to succeed, the Secret Manager Service
740
+ Agent service account must have pubsub.publisher permissions on the topic.
741
+ """
742
+ pulumi.set(__self__, "name", name)
743
+
744
+ @property
745
+ @pulumi.getter
746
+ def name(self) -> str:
747
+ """
748
+ The resource name of the Pub/Sub topic that will be published to, in the following format:
749
+ projects/*/topics/*. For publication to succeed, the Secret Manager Service
750
+ Agent service account must have pubsub.publisher permissions on the topic.
751
+ """
752
+ return pulumi.get(self, "name")
753
+
754
+
755
+ @pulumi.output_type
756
+ class GetRegionalSecretVersionCustomerManagedEncryptionResult(dict):
757
+ def __init__(__self__, *,
758
+ kms_key_version_name: str):
759
+ """
760
+ :param str kms_key_version_name: The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
761
+ """
762
+ pulumi.set(__self__, "kms_key_version_name", kms_key_version_name)
763
+
764
+ @property
765
+ @pulumi.getter(name="kmsKeyVersionName")
766
+ def kms_key_version_name(self) -> str:
767
+ """
768
+ The resource name of the Cloud KMS CryptoKey used to encrypt secret payloads.
769
+ """
770
+ return pulumi.get(self, "kms_key_version_name")
771
+
772
+
437
773
  @pulumi.output_type
438
774
  class GetSecretReplicationResult(dict):
439
775
  def __init__(__self__, *,