pulumi-gcp 8.39.0a1752907636__py3-none-any.whl → 8.39.0a1753339645__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 (36) hide show
  1. pulumi_gcp/__init__.py +16 -0
  2. pulumi_gcp/apigee/_inputs.py +62 -0
  3. pulumi_gcp/apigee/instance.py +63 -0
  4. pulumi_gcp/apigee/outputs.py +37 -0
  5. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  6. pulumi_gcp/backupdisasterrecovery/service_config.py +297 -0
  7. pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
  8. pulumi_gcp/bigqueryanalyticshub/_inputs.py +355 -0
  9. pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +1082 -0
  10. pulumi_gcp/bigqueryanalyticshub/listing.py +116 -0
  11. pulumi_gcp/bigqueryanalyticshub/outputs.py +287 -0
  12. pulumi_gcp/compute/__init__.py +1 -0
  13. pulumi_gcp/compute/_inputs.py +699 -19
  14. pulumi_gcp/compute/firewall.py +54 -0
  15. pulumi_gcp/compute/future_reservation.py +124 -0
  16. pulumi_gcp/compute/get_network_attachment.py +288 -0
  17. pulumi_gcp/compute/get_region_disk.py +23 -1
  18. pulumi_gcp/compute/get_reservation.py +45 -1
  19. pulumi_gcp/compute/interconnect.py +108 -0
  20. pulumi_gcp/compute/outputs.py +734 -15
  21. pulumi_gcp/compute/region_disk.py +115 -0
  22. pulumi_gcp/compute/reservation.py +449 -0
  23. pulumi_gcp/firebase/hosting_site.py +50 -2
  24. pulumi_gcp/firestore/__init__.py +1 -0
  25. pulumi_gcp/firestore/database.py +117 -1
  26. pulumi_gcp/firestore/get_document.py +234 -0
  27. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +12 -0
  28. pulumi_gcp/networksecurity/backend_authentication_config.py +12 -0
  29. pulumi_gcp/pulumi-plugin.json +1 -1
  30. pulumi_gcp/storage/bucket_object.py +47 -0
  31. pulumi_gcp/storage/get_bucket_object.py +12 -1
  32. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  33. {pulumi_gcp-8.39.0a1752907636.dist-info → pulumi_gcp-8.39.0a1753339645.dist-info}/METADATA +1 -1
  34. {pulumi_gcp-8.39.0a1752907636.dist-info → pulumi_gcp-8.39.0a1753339645.dist-info}/RECORD +36 -32
  35. {pulumi_gcp-8.39.0a1752907636.dist-info → pulumi_gcp-8.39.0a1753339645.dist-info}/WHEEL +0 -0
  36. {pulumi_gcp-8.39.0a1752907636.dist-info → pulumi_gcp-8.39.0a1753339645.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,14 @@ __all__ = [
26
26
  'DataExchangeSharingEnvironmentConfigDcrExchangeConfigArgsDict',
27
27
  'DataExchangeSharingEnvironmentConfigDefaultExchangeConfigArgs',
28
28
  'DataExchangeSharingEnvironmentConfigDefaultExchangeConfigArgsDict',
29
+ 'DataExchangeSubscriptionDestinationDatasetArgs',
30
+ 'DataExchangeSubscriptionDestinationDatasetArgsDict',
31
+ 'DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs',
32
+ 'DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgsDict',
33
+ 'DataExchangeSubscriptionLinkedDatasetMapArgs',
34
+ 'DataExchangeSubscriptionLinkedDatasetMapArgsDict',
35
+ 'DataExchangeSubscriptionLinkedResourceArgs',
36
+ 'DataExchangeSubscriptionLinkedResourceArgsDict',
29
37
  'ListingBigqueryDatasetArgs',
30
38
  'ListingBigqueryDatasetArgsDict',
31
39
  'ListingBigqueryDatasetSelectedResourceArgs',
@@ -224,6 +232,333 @@ class DataExchangeSharingEnvironmentConfigDefaultExchangeConfigArgs:
224
232
  pass
225
233
 
226
234
 
235
+ if not MYPY:
236
+ class DataExchangeSubscriptionDestinationDatasetArgsDict(TypedDict):
237
+ dataset_reference: pulumi.Input['DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgsDict']
238
+ """
239
+ A reference that identifies the destination dataset.
240
+ Structure is documented below.
241
+ """
242
+ location: pulumi.Input[builtins.str]
243
+ """
244
+ The geographic location where the dataset should reside.
245
+ See https://cloud.google.com/bigquery/docs/locations for supported locations.
246
+ """
247
+ description: NotRequired[pulumi.Input[builtins.str]]
248
+ """
249
+ A user-friendly description of the dataset.
250
+ """
251
+ friendly_name: NotRequired[pulumi.Input[builtins.str]]
252
+ """
253
+ A descriptive name for the dataset.
254
+ """
255
+ labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
256
+ """
257
+ The labels associated with this dataset. You can use these to
258
+ organize and group your datasets.
259
+ """
260
+ elif False:
261
+ DataExchangeSubscriptionDestinationDatasetArgsDict: TypeAlias = Mapping[str, Any]
262
+
263
+ @pulumi.input_type
264
+ class DataExchangeSubscriptionDestinationDatasetArgs:
265
+ def __init__(__self__, *,
266
+ dataset_reference: pulumi.Input['DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs'],
267
+ location: pulumi.Input[builtins.str],
268
+ description: Optional[pulumi.Input[builtins.str]] = None,
269
+ friendly_name: Optional[pulumi.Input[builtins.str]] = None,
270
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
271
+ """
272
+ :param pulumi.Input['DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs'] dataset_reference: A reference that identifies the destination dataset.
273
+ Structure is documented below.
274
+ :param pulumi.Input[builtins.str] location: The geographic location where the dataset should reside.
275
+ See https://cloud.google.com/bigquery/docs/locations for supported locations.
276
+ :param pulumi.Input[builtins.str] description: A user-friendly description of the dataset.
277
+ :param pulumi.Input[builtins.str] friendly_name: A descriptive name for the dataset.
278
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: The labels associated with this dataset. You can use these to
279
+ organize and group your datasets.
280
+ """
281
+ pulumi.set(__self__, "dataset_reference", dataset_reference)
282
+ pulumi.set(__self__, "location", location)
283
+ if description is not None:
284
+ pulumi.set(__self__, "description", description)
285
+ if friendly_name is not None:
286
+ pulumi.set(__self__, "friendly_name", friendly_name)
287
+ if labels is not None:
288
+ pulumi.set(__self__, "labels", labels)
289
+
290
+ @property
291
+ @pulumi.getter(name="datasetReference")
292
+ def dataset_reference(self) -> pulumi.Input['DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs']:
293
+ """
294
+ A reference that identifies the destination dataset.
295
+ Structure is documented below.
296
+ """
297
+ return pulumi.get(self, "dataset_reference")
298
+
299
+ @dataset_reference.setter
300
+ def dataset_reference(self, value: pulumi.Input['DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs']):
301
+ pulumi.set(self, "dataset_reference", value)
302
+
303
+ @property
304
+ @pulumi.getter
305
+ def location(self) -> pulumi.Input[builtins.str]:
306
+ """
307
+ The geographic location where the dataset should reside.
308
+ See https://cloud.google.com/bigquery/docs/locations for supported locations.
309
+ """
310
+ return pulumi.get(self, "location")
311
+
312
+ @location.setter
313
+ def location(self, value: pulumi.Input[builtins.str]):
314
+ pulumi.set(self, "location", value)
315
+
316
+ @property
317
+ @pulumi.getter
318
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
319
+ """
320
+ A user-friendly description of the dataset.
321
+ """
322
+ return pulumi.get(self, "description")
323
+
324
+ @description.setter
325
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
326
+ pulumi.set(self, "description", value)
327
+
328
+ @property
329
+ @pulumi.getter(name="friendlyName")
330
+ def friendly_name(self) -> Optional[pulumi.Input[builtins.str]]:
331
+ """
332
+ A descriptive name for the dataset.
333
+ """
334
+ return pulumi.get(self, "friendly_name")
335
+
336
+ @friendly_name.setter
337
+ def friendly_name(self, value: Optional[pulumi.Input[builtins.str]]):
338
+ pulumi.set(self, "friendly_name", value)
339
+
340
+ @property
341
+ @pulumi.getter
342
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
343
+ """
344
+ The labels associated with this dataset. You can use these to
345
+ organize and group your datasets.
346
+ """
347
+ return pulumi.get(self, "labels")
348
+
349
+ @labels.setter
350
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
351
+ pulumi.set(self, "labels", value)
352
+
353
+
354
+ if not MYPY:
355
+ class DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgsDict(TypedDict):
356
+ dataset_id: pulumi.Input[builtins.str]
357
+ """
358
+ A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
359
+ """
360
+ project_id: pulumi.Input[builtins.str]
361
+ """
362
+ The ID of the project containing this dataset.
363
+ """
364
+ elif False:
365
+ DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgsDict: TypeAlias = Mapping[str, Any]
366
+
367
+ @pulumi.input_type
368
+ class DataExchangeSubscriptionDestinationDatasetDatasetReferenceArgs:
369
+ def __init__(__self__, *,
370
+ dataset_id: pulumi.Input[builtins.str],
371
+ project_id: pulumi.Input[builtins.str]):
372
+ """
373
+ :param pulumi.Input[builtins.str] dataset_id: A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
374
+ :param pulumi.Input[builtins.str] project_id: The ID of the project containing this dataset.
375
+ """
376
+ pulumi.set(__self__, "dataset_id", dataset_id)
377
+ pulumi.set(__self__, "project_id", project_id)
378
+
379
+ @property
380
+ @pulumi.getter(name="datasetId")
381
+ def dataset_id(self) -> pulumi.Input[builtins.str]:
382
+ """
383
+ A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
384
+ """
385
+ return pulumi.get(self, "dataset_id")
386
+
387
+ @dataset_id.setter
388
+ def dataset_id(self, value: pulumi.Input[builtins.str]):
389
+ pulumi.set(self, "dataset_id", value)
390
+
391
+ @property
392
+ @pulumi.getter(name="projectId")
393
+ def project_id(self) -> pulumi.Input[builtins.str]:
394
+ """
395
+ The ID of the project containing this dataset.
396
+ """
397
+ return pulumi.get(self, "project_id")
398
+
399
+ @project_id.setter
400
+ def project_id(self, value: pulumi.Input[builtins.str]):
401
+ pulumi.set(self, "project_id", value)
402
+
403
+
404
+ if not MYPY:
405
+ class DataExchangeSubscriptionLinkedDatasetMapArgsDict(TypedDict):
406
+ resource_name: pulumi.Input[builtins.str]
407
+ """
408
+ (Required) The identifier for this object. Format specified above.
409
+ """
410
+ linked_dataset: NotRequired[pulumi.Input[builtins.str]]
411
+ """
412
+ (Output)
413
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
414
+ """
415
+ linked_pubsub_subscription: NotRequired[pulumi.Input[builtins.str]]
416
+ """
417
+ (Output)
418
+ Output only. Name of the Pub/Sub subscription, e.g. projects/subscriberproject/subscriptions/subscriptions/sub_id
419
+ """
420
+ listing: NotRequired[pulumi.Input[builtins.str]]
421
+ """
422
+ (Output)
423
+ Output only. Listing for which linked resource is created.
424
+ """
425
+ elif False:
426
+ DataExchangeSubscriptionLinkedDatasetMapArgsDict: TypeAlias = Mapping[str, Any]
427
+
428
+ @pulumi.input_type
429
+ class DataExchangeSubscriptionLinkedDatasetMapArgs:
430
+ def __init__(__self__, *,
431
+ resource_name: pulumi.Input[builtins.str],
432
+ linked_dataset: Optional[pulumi.Input[builtins.str]] = None,
433
+ linked_pubsub_subscription: Optional[pulumi.Input[builtins.str]] = None,
434
+ listing: Optional[pulumi.Input[builtins.str]] = None):
435
+ """
436
+ :param pulumi.Input[builtins.str] resource_name: (Required) The identifier for this object. Format specified above.
437
+ :param pulumi.Input[builtins.str] linked_dataset: (Output)
438
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
439
+ :param pulumi.Input[builtins.str] linked_pubsub_subscription: (Output)
440
+ Output only. Name of the Pub/Sub subscription, e.g. projects/subscriberproject/subscriptions/subscriptions/sub_id
441
+ :param pulumi.Input[builtins.str] listing: (Output)
442
+ Output only. Listing for which linked resource is created.
443
+ """
444
+ pulumi.set(__self__, "resource_name", resource_name)
445
+ if linked_dataset is not None:
446
+ pulumi.set(__self__, "linked_dataset", linked_dataset)
447
+ if linked_pubsub_subscription is not None:
448
+ pulumi.set(__self__, "linked_pubsub_subscription", linked_pubsub_subscription)
449
+ if listing is not None:
450
+ pulumi.set(__self__, "listing", listing)
451
+
452
+ @property
453
+ @pulumi.getter(name="resourceName")
454
+ def resource_name(self) -> pulumi.Input[builtins.str]:
455
+ """
456
+ (Required) The identifier for this object. Format specified above.
457
+ """
458
+ return pulumi.get(self, "resource_name")
459
+
460
+ @resource_name.setter
461
+ def resource_name(self, value: pulumi.Input[builtins.str]):
462
+ pulumi.set(self, "resource_name", value)
463
+
464
+ @property
465
+ @pulumi.getter(name="linkedDataset")
466
+ def linked_dataset(self) -> Optional[pulumi.Input[builtins.str]]:
467
+ """
468
+ (Output)
469
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
470
+ """
471
+ return pulumi.get(self, "linked_dataset")
472
+
473
+ @linked_dataset.setter
474
+ def linked_dataset(self, value: Optional[pulumi.Input[builtins.str]]):
475
+ pulumi.set(self, "linked_dataset", value)
476
+
477
+ @property
478
+ @pulumi.getter(name="linkedPubsubSubscription")
479
+ def linked_pubsub_subscription(self) -> Optional[pulumi.Input[builtins.str]]:
480
+ """
481
+ (Output)
482
+ Output only. Name of the Pub/Sub subscription, e.g. projects/subscriberproject/subscriptions/subscriptions/sub_id
483
+ """
484
+ return pulumi.get(self, "linked_pubsub_subscription")
485
+
486
+ @linked_pubsub_subscription.setter
487
+ def linked_pubsub_subscription(self, value: Optional[pulumi.Input[builtins.str]]):
488
+ pulumi.set(self, "linked_pubsub_subscription", value)
489
+
490
+ @property
491
+ @pulumi.getter
492
+ def listing(self) -> Optional[pulumi.Input[builtins.str]]:
493
+ """
494
+ (Output)
495
+ Output only. Listing for which linked resource is created.
496
+ """
497
+ return pulumi.get(self, "listing")
498
+
499
+ @listing.setter
500
+ def listing(self, value: Optional[pulumi.Input[builtins.str]]):
501
+ pulumi.set(self, "listing", value)
502
+
503
+
504
+ if not MYPY:
505
+ class DataExchangeSubscriptionLinkedResourceArgsDict(TypedDict):
506
+ linked_dataset: NotRequired[pulumi.Input[builtins.str]]
507
+ """
508
+ (Output)
509
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
510
+ """
511
+ listing: NotRequired[pulumi.Input[builtins.str]]
512
+ """
513
+ (Output)
514
+ Output only. Listing for which linked resource is created.
515
+ """
516
+ elif False:
517
+ DataExchangeSubscriptionLinkedResourceArgsDict: TypeAlias = Mapping[str, Any]
518
+
519
+ @pulumi.input_type
520
+ class DataExchangeSubscriptionLinkedResourceArgs:
521
+ def __init__(__self__, *,
522
+ linked_dataset: Optional[pulumi.Input[builtins.str]] = None,
523
+ listing: Optional[pulumi.Input[builtins.str]] = None):
524
+ """
525
+ :param pulumi.Input[builtins.str] linked_dataset: (Output)
526
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
527
+ :param pulumi.Input[builtins.str] listing: (Output)
528
+ Output only. Listing for which linked resource is created.
529
+ """
530
+ if linked_dataset is not None:
531
+ pulumi.set(__self__, "linked_dataset", linked_dataset)
532
+ if listing is not None:
533
+ pulumi.set(__self__, "listing", listing)
534
+
535
+ @property
536
+ @pulumi.getter(name="linkedDataset")
537
+ def linked_dataset(self) -> Optional[pulumi.Input[builtins.str]]:
538
+ """
539
+ (Output)
540
+ Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linkedDataset
541
+ """
542
+ return pulumi.get(self, "linked_dataset")
543
+
544
+ @linked_dataset.setter
545
+ def linked_dataset(self, value: Optional[pulumi.Input[builtins.str]]):
546
+ pulumi.set(self, "linked_dataset", value)
547
+
548
+ @property
549
+ @pulumi.getter
550
+ def listing(self) -> Optional[pulumi.Input[builtins.str]]:
551
+ """
552
+ (Output)
553
+ Output only. Listing for which linked resource is created.
554
+ """
555
+ return pulumi.get(self, "listing")
556
+
557
+ @listing.setter
558
+ def listing(self, value: Optional[pulumi.Input[builtins.str]]):
559
+ pulumi.set(self, "listing", value)
560
+
561
+
227
562
  if not MYPY:
228
563
  class ListingBigqueryDatasetArgsDict(TypedDict):
229
564
  dataset: pulumi.Input[builtins.str]
@@ -280,6 +615,10 @@ class ListingBigqueryDatasetArgs:
280
615
 
281
616
  if not MYPY:
282
617
  class ListingBigqueryDatasetSelectedResourceArgsDict(TypedDict):
618
+ routine: NotRequired[pulumi.Input[builtins.str]]
619
+ """
620
+ Format: For routine: projects/{projectId}/datasets/{datasetId}/routines/{routineId} Example:"projects/test_project/datasets/test_dataset/routines/test_routine"
621
+ """
283
622
  table: NotRequired[pulumi.Input[builtins.str]]
284
623
  """
285
624
  Format: For table: projects/{projectId}/datasets/{datasetId}/tables/{tableId} Example:"projects/test_project/datasets/test_dataset/tables/test_table"
@@ -290,13 +629,29 @@ elif False:
290
629
  @pulumi.input_type
291
630
  class ListingBigqueryDatasetSelectedResourceArgs:
292
631
  def __init__(__self__, *,
632
+ routine: Optional[pulumi.Input[builtins.str]] = None,
293
633
  table: Optional[pulumi.Input[builtins.str]] = None):
294
634
  """
635
+ :param pulumi.Input[builtins.str] routine: Format: For routine: projects/{projectId}/datasets/{datasetId}/routines/{routineId} Example:"projects/test_project/datasets/test_dataset/routines/test_routine"
295
636
  :param pulumi.Input[builtins.str] table: Format: For table: projects/{projectId}/datasets/{datasetId}/tables/{tableId} Example:"projects/test_project/datasets/test_dataset/tables/test_table"
296
637
  """
638
+ if routine is not None:
639
+ pulumi.set(__self__, "routine", routine)
297
640
  if table is not None:
298
641
  pulumi.set(__self__, "table", table)
299
642
 
643
+ @property
644
+ @pulumi.getter
645
+ def routine(self) -> Optional[pulumi.Input[builtins.str]]:
646
+ """
647
+ Format: For routine: projects/{projectId}/datasets/{datasetId}/routines/{routineId} Example:"projects/test_project/datasets/test_dataset/routines/test_routine"
648
+ """
649
+ return pulumi.get(self, "routine")
650
+
651
+ @routine.setter
652
+ def routine(self, value: Optional[pulumi.Input[builtins.str]]):
653
+ pulumi.set(self, "routine", value)
654
+
300
655
  @property
301
656
  @pulumi.getter
302
657
  def table(self) -> Optional[pulumi.Input[builtins.str]]: