pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 (78) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +369 -0
  5. pulumi_gcp/alloydb/_inputs.py +47 -1
  6. pulumi_gcp/alloydb/outputs.py +61 -3
  7. pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
  8. pulumi_gcp/applicationintegration/client.py +34 -12
  9. pulumi_gcp/artifactregistry/outputs.py +2 -2
  10. pulumi_gcp/certificateauthority/_inputs.py +32 -0
  11. pulumi_gcp/certificateauthority/ca_pool.py +2 -0
  12. pulumi_gcp/certificateauthority/outputs.py +22 -0
  13. pulumi_gcp/clouddeploy/_inputs.py +0 -6
  14. pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
  15. pulumi_gcp/clouddeploy/outputs.py +0 -4
  16. pulumi_gcp/cloudrunv2/_inputs.py +3 -3
  17. pulumi_gcp/cloudrunv2/outputs.py +4 -4
  18. pulumi_gcp/colab/runtime_template.py +3 -3
  19. pulumi_gcp/compute/__init__.py +7 -0
  20. pulumi_gcp/compute/_inputs.py +809 -1
  21. pulumi_gcp/compute/backend_service.py +89 -0
  22. pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
  23. pulumi_gcp/compute/get_backend_service.py +12 -1
  24. pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
  25. pulumi_gcp/compute/get_storage_pool_types.py +268 -0
  26. pulumi_gcp/compute/outputs.py +743 -3
  27. pulumi_gcp/compute/resource_policy_attachment.py +476 -0
  28. pulumi_gcp/compute/storage_pool.py +1045 -0
  29. pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
  30. pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
  31. pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/container/_inputs.py +63 -3
  35. pulumi_gcp/container/outputs.py +70 -6
  36. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  37. pulumi_gcp/dataproc/metastore_service.py +61 -0
  38. pulumi_gcp/datastream/connection_profile.py +40 -0
  39. pulumi_gcp/discoveryengine/_inputs.py +38 -0
  40. pulumi_gcp/discoveryengine/chat_engine.py +6 -4
  41. pulumi_gcp/discoveryengine/outputs.py +26 -0
  42. pulumi_gcp/firebaserules/_inputs.py +6 -6
  43. pulumi_gcp/firebaserules/outputs.py +4 -4
  44. pulumi_gcp/gkebackup/__init__.py +2 -0
  45. pulumi_gcp/gkebackup/backup_channel.py +737 -0
  46. pulumi_gcp/gkebackup/restore_channel.py +737 -0
  47. pulumi_gcp/gkehub/_inputs.py +208 -0
  48. pulumi_gcp/gkehub/outputs.py +171 -1
  49. pulumi_gcp/healthcare/pipeline_job.py +2 -2
  50. pulumi_gcp/iap/__init__.py +4 -0
  51. pulumi_gcp/iap/_inputs.py +130 -0
  52. pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
  53. pulumi_gcp/iap/outputs.py +76 -0
  54. pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
  55. pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
  56. pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
  57. pulumi_gcp/kms/key_ring_import_job.py +7 -7
  58. pulumi_gcp/managedkafka/connect_cluster.py +8 -4
  59. pulumi_gcp/managedkafka/connector.py +8 -4
  60. pulumi_gcp/monitoring/uptime_check_config.py +49 -0
  61. pulumi_gcp/networkconnectivity/internal_range.py +82 -0
  62. pulumi_gcp/projects/_inputs.py +0 -6
  63. pulumi_gcp/projects/api_key.py +28 -0
  64. pulumi_gcp/projects/outputs.py +0 -4
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pulumi-plugin.json +1 -1
  67. pulumi_gcp/redis/get_instance.py +12 -1
  68. pulumi_gcp/redis/instance.py +61 -0
  69. pulumi_gcp/sql/_inputs.py +86 -6
  70. pulumi_gcp/sql/outputs.py +156 -12
  71. pulumi_gcp/storage/__init__.py +1 -0
  72. pulumi_gcp/storage/_inputs.py +457 -0
  73. pulumi_gcp/storage/batch_operations_job.py +776 -0
  74. pulumi_gcp/storage/outputs.py +403 -0
  75. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
  76. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
  77. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
  78. {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,14 @@ from .. import _utilities
17
17
  from . import outputs
18
18
 
19
19
  __all__ = [
20
+ 'BatchOperationsJobBucketList',
21
+ 'BatchOperationsJobBucketListBuckets',
22
+ 'BatchOperationsJobBucketListBucketsManifest',
23
+ 'BatchOperationsJobBucketListBucketsPrefixList',
24
+ 'BatchOperationsJobDeleteObject',
25
+ 'BatchOperationsJobPutMetadata',
26
+ 'BatchOperationsJobPutObjectHold',
27
+ 'BatchOperationsJobRewriteObject',
20
28
  'BucketAutoclass',
21
29
  'BucketCor',
22
30
  'BucketCustomPlacementConfig',
@@ -137,6 +145,401 @@ __all__ = [
137
145
  'GetControlProjectIntelligenceConfigTrialConfigResult',
138
146
  ]
139
147
 
148
+ @pulumi.output_type
149
+ class BatchOperationsJobBucketList(dict):
150
+ def __init__(__self__, *,
151
+ buckets: 'outputs.BatchOperationsJobBucketListBuckets'):
152
+ """
153
+ :param 'BatchOperationsJobBucketListBucketsArgs' buckets: List of buckets and their objects to be transformed.
154
+ Structure is documented below.
155
+ """
156
+ pulumi.set(__self__, "buckets", buckets)
157
+
158
+ @property
159
+ @pulumi.getter
160
+ def buckets(self) -> 'outputs.BatchOperationsJobBucketListBuckets':
161
+ """
162
+ List of buckets and their objects to be transformed.
163
+ Structure is documented below.
164
+ """
165
+ return pulumi.get(self, "buckets")
166
+
167
+
168
+ @pulumi.output_type
169
+ class BatchOperationsJobBucketListBuckets(dict):
170
+ @staticmethod
171
+ def __key_warning(key: str):
172
+ suggest = None
173
+ if key == "prefixList":
174
+ suggest = "prefix_list"
175
+
176
+ if suggest:
177
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobBucketListBuckets. Access the value via the '{suggest}' property getter instead.")
178
+
179
+ def __getitem__(self, key: str) -> Any:
180
+ BatchOperationsJobBucketListBuckets.__key_warning(key)
181
+ return super().__getitem__(key)
182
+
183
+ def get(self, key: str, default = None) -> Any:
184
+ BatchOperationsJobBucketListBuckets.__key_warning(key)
185
+ return super().get(key, default)
186
+
187
+ def __init__(__self__, *,
188
+ bucket: builtins.str,
189
+ manifest: Optional['outputs.BatchOperationsJobBucketListBucketsManifest'] = None,
190
+ prefix_list: Optional['outputs.BatchOperationsJobBucketListBucketsPrefixList'] = None):
191
+ """
192
+ :param builtins.str bucket: Bucket name for the objects to be transformed.
193
+ :param 'BatchOperationsJobBucketListBucketsManifestArgs' manifest: contain the manifest source file that is a CSV file in a Google Cloud Storage bucket.
194
+ Structure is documented below.
195
+ :param 'BatchOperationsJobBucketListBucketsPrefixListArgs' prefix_list: Specifies objects matching a prefix set.
196
+ Structure is documented below.
197
+ """
198
+ pulumi.set(__self__, "bucket", bucket)
199
+ if manifest is not None:
200
+ pulumi.set(__self__, "manifest", manifest)
201
+ if prefix_list is not None:
202
+ pulumi.set(__self__, "prefix_list", prefix_list)
203
+
204
+ @property
205
+ @pulumi.getter
206
+ def bucket(self) -> builtins.str:
207
+ """
208
+ Bucket name for the objects to be transformed.
209
+ """
210
+ return pulumi.get(self, "bucket")
211
+
212
+ @property
213
+ @pulumi.getter
214
+ def manifest(self) -> Optional['outputs.BatchOperationsJobBucketListBucketsManifest']:
215
+ """
216
+ contain the manifest source file that is a CSV file in a Google Cloud Storage bucket.
217
+ Structure is documented below.
218
+ """
219
+ return pulumi.get(self, "manifest")
220
+
221
+ @property
222
+ @pulumi.getter(name="prefixList")
223
+ def prefix_list(self) -> Optional['outputs.BatchOperationsJobBucketListBucketsPrefixList']:
224
+ """
225
+ Specifies objects matching a prefix set.
226
+ Structure is documented below.
227
+ """
228
+ return pulumi.get(self, "prefix_list")
229
+
230
+
231
+ @pulumi.output_type
232
+ class BatchOperationsJobBucketListBucketsManifest(dict):
233
+ @staticmethod
234
+ def __key_warning(key: str):
235
+ suggest = None
236
+ if key == "manifestLocation":
237
+ suggest = "manifest_location"
238
+
239
+ if suggest:
240
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobBucketListBucketsManifest. Access the value via the '{suggest}' property getter instead.")
241
+
242
+ def __getitem__(self, key: str) -> Any:
243
+ BatchOperationsJobBucketListBucketsManifest.__key_warning(key)
244
+ return super().__getitem__(key)
245
+
246
+ def get(self, key: str, default = None) -> Any:
247
+ BatchOperationsJobBucketListBucketsManifest.__key_warning(key)
248
+ return super().get(key, default)
249
+
250
+ def __init__(__self__, *,
251
+ manifest_location: Optional[builtins.str] = None):
252
+ """
253
+ :param builtins.str manifest_location: Specifies objects in a manifest file.
254
+ """
255
+ if manifest_location is not None:
256
+ pulumi.set(__self__, "manifest_location", manifest_location)
257
+
258
+ @property
259
+ @pulumi.getter(name="manifestLocation")
260
+ def manifest_location(self) -> Optional[builtins.str]:
261
+ """
262
+ Specifies objects in a manifest file.
263
+ """
264
+ return pulumi.get(self, "manifest_location")
265
+
266
+
267
+ @pulumi.output_type
268
+ class BatchOperationsJobBucketListBucketsPrefixList(dict):
269
+ @staticmethod
270
+ def __key_warning(key: str):
271
+ suggest = None
272
+ if key == "includedObjectPrefixes":
273
+ suggest = "included_object_prefixes"
274
+
275
+ if suggest:
276
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobBucketListBucketsPrefixList. Access the value via the '{suggest}' property getter instead.")
277
+
278
+ def __getitem__(self, key: str) -> Any:
279
+ BatchOperationsJobBucketListBucketsPrefixList.__key_warning(key)
280
+ return super().__getitem__(key)
281
+
282
+ def get(self, key: str, default = None) -> Any:
283
+ BatchOperationsJobBucketListBucketsPrefixList.__key_warning(key)
284
+ return super().get(key, default)
285
+
286
+ def __init__(__self__, *,
287
+ included_object_prefixes: Optional[Sequence[builtins.str]] = None):
288
+ """
289
+ :param Sequence[builtins.str] included_object_prefixes: (Optional)
290
+ """
291
+ if included_object_prefixes is not None:
292
+ pulumi.set(__self__, "included_object_prefixes", included_object_prefixes)
293
+
294
+ @property
295
+ @pulumi.getter(name="includedObjectPrefixes")
296
+ def included_object_prefixes(self) -> Optional[Sequence[builtins.str]]:
297
+ """
298
+ (Optional)
299
+ """
300
+ return pulumi.get(self, "included_object_prefixes")
301
+
302
+
303
+ @pulumi.output_type
304
+ class BatchOperationsJobDeleteObject(dict):
305
+ @staticmethod
306
+ def __key_warning(key: str):
307
+ suggest = None
308
+ if key == "permanentObjectDeletionEnabled":
309
+ suggest = "permanent_object_deletion_enabled"
310
+
311
+ if suggest:
312
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobDeleteObject. Access the value via the '{suggest}' property getter instead.")
313
+
314
+ def __getitem__(self, key: str) -> Any:
315
+ BatchOperationsJobDeleteObject.__key_warning(key)
316
+ return super().__getitem__(key)
317
+
318
+ def get(self, key: str, default = None) -> Any:
319
+ BatchOperationsJobDeleteObject.__key_warning(key)
320
+ return super().get(key, default)
321
+
322
+ def __init__(__self__, *,
323
+ permanent_object_deletion_enabled: builtins.bool):
324
+ """
325
+ :param builtins.bool permanent_object_deletion_enabled: enable flag to permanently delete object and all object versions if versioning is enabled on bucket.
326
+ """
327
+ pulumi.set(__self__, "permanent_object_deletion_enabled", permanent_object_deletion_enabled)
328
+
329
+ @property
330
+ @pulumi.getter(name="permanentObjectDeletionEnabled")
331
+ def permanent_object_deletion_enabled(self) -> builtins.bool:
332
+ """
333
+ enable flag to permanently delete object and all object versions if versioning is enabled on bucket.
334
+ """
335
+ return pulumi.get(self, "permanent_object_deletion_enabled")
336
+
337
+
338
+ @pulumi.output_type
339
+ class BatchOperationsJobPutMetadata(dict):
340
+ @staticmethod
341
+ def __key_warning(key: str):
342
+ suggest = None
343
+ if key == "cacheControl":
344
+ suggest = "cache_control"
345
+ elif key == "contentDisposition":
346
+ suggest = "content_disposition"
347
+ elif key == "contentEncoding":
348
+ suggest = "content_encoding"
349
+ elif key == "contentLanguage":
350
+ suggest = "content_language"
351
+ elif key == "contentType":
352
+ suggest = "content_type"
353
+ elif key == "customMetadata":
354
+ suggest = "custom_metadata"
355
+ elif key == "customTime":
356
+ suggest = "custom_time"
357
+
358
+ if suggest:
359
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobPutMetadata. Access the value via the '{suggest}' property getter instead.")
360
+
361
+ def __getitem__(self, key: str) -> Any:
362
+ BatchOperationsJobPutMetadata.__key_warning(key)
363
+ return super().__getitem__(key)
364
+
365
+ def get(self, key: str, default = None) -> Any:
366
+ BatchOperationsJobPutMetadata.__key_warning(key)
367
+ return super().get(key, default)
368
+
369
+ def __init__(__self__, *,
370
+ cache_control: Optional[builtins.str] = None,
371
+ content_disposition: Optional[builtins.str] = None,
372
+ content_encoding: Optional[builtins.str] = None,
373
+ content_language: Optional[builtins.str] = None,
374
+ content_type: Optional[builtins.str] = None,
375
+ custom_metadata: Optional[Mapping[str, builtins.str]] = None,
376
+ custom_time: Optional[builtins.str] = None):
377
+ """
378
+ :param builtins.str cache_control: Cache-Control directive to specify caching behavior of object data. If omitted and object is accessible to all anonymous users, the default will be public, max-age=3600
379
+ :param builtins.str content_disposition: Content-Disposition of the object data.
380
+ :param builtins.str content_encoding: Content Encoding of the object data.
381
+ :param builtins.str content_language: Content-Language of the object data.
382
+ :param builtins.str content_type: Content-Type of the object data.
383
+ :param Mapping[str, builtins.str] custom_metadata: User-provided metadata, in key/value pairs.
384
+ :param builtins.str custom_time: Updates the objects fixed custom time metadata.
385
+ """
386
+ if cache_control is not None:
387
+ pulumi.set(__self__, "cache_control", cache_control)
388
+ if content_disposition is not None:
389
+ pulumi.set(__self__, "content_disposition", content_disposition)
390
+ if content_encoding is not None:
391
+ pulumi.set(__self__, "content_encoding", content_encoding)
392
+ if content_language is not None:
393
+ pulumi.set(__self__, "content_language", content_language)
394
+ if content_type is not None:
395
+ pulumi.set(__self__, "content_type", content_type)
396
+ if custom_metadata is not None:
397
+ pulumi.set(__self__, "custom_metadata", custom_metadata)
398
+ if custom_time is not None:
399
+ pulumi.set(__self__, "custom_time", custom_time)
400
+
401
+ @property
402
+ @pulumi.getter(name="cacheControl")
403
+ def cache_control(self) -> Optional[builtins.str]:
404
+ """
405
+ Cache-Control directive to specify caching behavior of object data. If omitted and object is accessible to all anonymous users, the default will be public, max-age=3600
406
+ """
407
+ return pulumi.get(self, "cache_control")
408
+
409
+ @property
410
+ @pulumi.getter(name="contentDisposition")
411
+ def content_disposition(self) -> Optional[builtins.str]:
412
+ """
413
+ Content-Disposition of the object data.
414
+ """
415
+ return pulumi.get(self, "content_disposition")
416
+
417
+ @property
418
+ @pulumi.getter(name="contentEncoding")
419
+ def content_encoding(self) -> Optional[builtins.str]:
420
+ """
421
+ Content Encoding of the object data.
422
+ """
423
+ return pulumi.get(self, "content_encoding")
424
+
425
+ @property
426
+ @pulumi.getter(name="contentLanguage")
427
+ def content_language(self) -> Optional[builtins.str]:
428
+ """
429
+ Content-Language of the object data.
430
+ """
431
+ return pulumi.get(self, "content_language")
432
+
433
+ @property
434
+ @pulumi.getter(name="contentType")
435
+ def content_type(self) -> Optional[builtins.str]:
436
+ """
437
+ Content-Type of the object data.
438
+ """
439
+ return pulumi.get(self, "content_type")
440
+
441
+ @property
442
+ @pulumi.getter(name="customMetadata")
443
+ def custom_metadata(self) -> Optional[Mapping[str, builtins.str]]:
444
+ """
445
+ User-provided metadata, in key/value pairs.
446
+ """
447
+ return pulumi.get(self, "custom_metadata")
448
+
449
+ @property
450
+ @pulumi.getter(name="customTime")
451
+ def custom_time(self) -> Optional[builtins.str]:
452
+ """
453
+ Updates the objects fixed custom time metadata.
454
+ """
455
+ return pulumi.get(self, "custom_time")
456
+
457
+
458
+ @pulumi.output_type
459
+ class BatchOperationsJobPutObjectHold(dict):
460
+ @staticmethod
461
+ def __key_warning(key: str):
462
+ suggest = None
463
+ if key == "eventBasedHold":
464
+ suggest = "event_based_hold"
465
+ elif key == "temporaryHold":
466
+ suggest = "temporary_hold"
467
+
468
+ if suggest:
469
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobPutObjectHold. Access the value via the '{suggest}' property getter instead.")
470
+
471
+ def __getitem__(self, key: str) -> Any:
472
+ BatchOperationsJobPutObjectHold.__key_warning(key)
473
+ return super().__getitem__(key)
474
+
475
+ def get(self, key: str, default = None) -> Any:
476
+ BatchOperationsJobPutObjectHold.__key_warning(key)
477
+ return super().get(key, default)
478
+
479
+ def __init__(__self__, *,
480
+ event_based_hold: Optional[builtins.str] = None,
481
+ temporary_hold: Optional[builtins.str] = None):
482
+ """
483
+ :param builtins.str event_based_hold: set/unset to update event based hold for objects.
484
+ :param builtins.str temporary_hold: set/unset to update temporary based hold for objects.
485
+ """
486
+ if event_based_hold is not None:
487
+ pulumi.set(__self__, "event_based_hold", event_based_hold)
488
+ if temporary_hold is not None:
489
+ pulumi.set(__self__, "temporary_hold", temporary_hold)
490
+
491
+ @property
492
+ @pulumi.getter(name="eventBasedHold")
493
+ def event_based_hold(self) -> Optional[builtins.str]:
494
+ """
495
+ set/unset to update event based hold for objects.
496
+ """
497
+ return pulumi.get(self, "event_based_hold")
498
+
499
+ @property
500
+ @pulumi.getter(name="temporaryHold")
501
+ def temporary_hold(self) -> Optional[builtins.str]:
502
+ """
503
+ set/unset to update temporary based hold for objects.
504
+ """
505
+ return pulumi.get(self, "temporary_hold")
506
+
507
+
508
+ @pulumi.output_type
509
+ class BatchOperationsJobRewriteObject(dict):
510
+ @staticmethod
511
+ def __key_warning(key: str):
512
+ suggest = None
513
+ if key == "kmsKey":
514
+ suggest = "kms_key"
515
+
516
+ if suggest:
517
+ pulumi.log.warn(f"Key '{key}' not found in BatchOperationsJobRewriteObject. Access the value via the '{suggest}' property getter instead.")
518
+
519
+ def __getitem__(self, key: str) -> Any:
520
+ BatchOperationsJobRewriteObject.__key_warning(key)
521
+ return super().__getitem__(key)
522
+
523
+ def get(self, key: str, default = None) -> Any:
524
+ BatchOperationsJobRewriteObject.__key_warning(key)
525
+ return super().get(key, default)
526
+
527
+ def __init__(__self__, *,
528
+ kms_key: builtins.str):
529
+ """
530
+ :param builtins.str kms_key: valid kms key
531
+ """
532
+ pulumi.set(__self__, "kms_key", kms_key)
533
+
534
+ @property
535
+ @pulumi.getter(name="kmsKey")
536
+ def kms_key(self) -> builtins.str:
537
+ """
538
+ valid kms key
539
+ """
540
+ return pulumi.get(self, "kms_key")
541
+
542
+
140
543
  @pulumi.output_type
141
544
  class BucketAutoclass(dict):
142
545
  @staticmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_gcp
3
- Version: 8.28.0a1745598508
3
+ Version: 8.29.0a1746076904
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io