pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.24.0a1743177741__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 (55) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/bigquery/_inputs.py +158 -0
  3. pulumi_gcp/bigquery/outputs.py +115 -0
  4. pulumi_gcp/bigquery/reservation.py +189 -1
  5. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  6. pulumi_gcp/chronicle/data_access_label.py +16 -0
  7. pulumi_gcp/cloudrunv2/service.py +14 -14
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +616 -18
  10. pulumi_gcp/compute/get_images.py +172 -0
  11. pulumi_gcp/compute/get_resource_policy.py +15 -4
  12. pulumi_gcp/compute/image.py +54 -0
  13. pulumi_gcp/compute/interconnect.py +14 -7
  14. pulumi_gcp/compute/outputs.py +710 -18
  15. pulumi_gcp/compute/resource_policy.py +169 -3
  16. pulumi_gcp/compute/router_route_policy.py +16 -0
  17. pulumi_gcp/config/__init__.pyi +6 -0
  18. pulumi_gcp/config/vars.py +12 -0
  19. pulumi_gcp/container/_inputs.py +262 -1
  20. pulumi_gcp/container/cluster.py +54 -0
  21. pulumi_gcp/container/get_cluster.py +12 -1
  22. pulumi_gcp/container/outputs.py +297 -2
  23. pulumi_gcp/dataproc/_inputs.py +23 -0
  24. pulumi_gcp/dataproc/outputs.py +27 -0
  25. pulumi_gcp/lustre/__init__.py +8 -0
  26. pulumi_gcp/lustre/instance.py +983 -0
  27. pulumi_gcp/memorystore/_inputs.py +419 -0
  28. pulumi_gcp/memorystore/get_instance.py +23 -1
  29. pulumi_gcp/memorystore/instance.py +137 -7
  30. pulumi_gcp/memorystore/outputs.py +544 -0
  31. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  32. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  33. pulumi_gcp/networkmanagement/outputs.py +280 -61
  34. pulumi_gcp/networksecurity/_inputs.py +392 -0
  35. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  36. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  37. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  38. pulumi_gcp/networksecurity/outputs.py +240 -0
  39. pulumi_gcp/organizations/__init__.py +1 -0
  40. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  41. pulumi_gcp/osconfig/__init__.py +1 -0
  42. pulumi_gcp/osconfig/_inputs.py +5413 -0
  43. pulumi_gcp/osconfig/outputs.py +3962 -0
  44. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  45. pulumi_gcp/provider.py +60 -0
  46. pulumi_gcp/pulumi-plugin.json +1 -1
  47. pulumi_gcp/storage/__init__.py +2 -0
  48. pulumi_gcp/storage/_inputs.py +726 -0
  49. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  50. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  51. pulumi_gcp/storage/outputs.py +716 -0
  52. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/RECORD +55 -48
  54. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.24.0a1743177741.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,8 @@ class ReservationArgs:
28
28
  ignore_idle_slots: Optional[pulumi.Input[bool]] = None,
29
29
  location: Optional[pulumi.Input[str]] = None,
30
30
  name: Optional[pulumi.Input[str]] = None,
31
- project: Optional[pulumi.Input[str]] = None):
31
+ project: Optional[pulumi.Input[str]] = None,
32
+ secondary_location: Optional[pulumi.Input[str]] = None):
32
33
  """
33
34
  The set of arguments for constructing a Reservation resource.
34
35
  :param pulumi.Input[int] slot_capacity: Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the
@@ -48,6 +49,10 @@ class ReservationArgs:
48
49
  - - -
49
50
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
50
51
  If it is not provided, the provider project is used.
52
+ :param pulumi.Input[str] secondary_location: The current location of the reservation's secondary replica. This field is only set for
53
+ reservations using the managed disaster recovery feature. Users can set this in create
54
+ reservation calls to create a failover reservation or in update reservation calls to convert
55
+ a non-failover reservation to a failover reservation(or vice versa).
51
56
  """
52
57
  pulumi.set(__self__, "slot_capacity", slot_capacity)
53
58
  if autoscale is not None:
@@ -64,6 +69,8 @@ class ReservationArgs:
64
69
  pulumi.set(__self__, "name", name)
65
70
  if project is not None:
66
71
  pulumi.set(__self__, "project", project)
72
+ if secondary_location is not None:
73
+ pulumi.set(__self__, "secondary_location", secondary_location)
67
74
 
68
75
  @property
69
76
  @pulumi.getter(name="slotCapacity")
@@ -170,6 +177,21 @@ class ReservationArgs:
170
177
  def project(self, value: Optional[pulumi.Input[str]]):
171
178
  pulumi.set(self, "project", value)
172
179
 
180
+ @property
181
+ @pulumi.getter(name="secondaryLocation")
182
+ def secondary_location(self) -> Optional[pulumi.Input[str]]:
183
+ """
184
+ The current location of the reservation's secondary replica. This field is only set for
185
+ reservations using the managed disaster recovery feature. Users can set this in create
186
+ reservation calls to create a failover reservation or in update reservation calls to convert
187
+ a non-failover reservation to a failover reservation(or vice versa).
188
+ """
189
+ return pulumi.get(self, "secondary_location")
190
+
191
+ @secondary_location.setter
192
+ def secondary_location(self, value: Optional[pulumi.Input[str]]):
193
+ pulumi.set(self, "secondary_location", value)
194
+
173
195
 
174
196
  @pulumi.input_type
175
197
  class _ReservationState:
@@ -180,7 +202,11 @@ class _ReservationState:
180
202
  ignore_idle_slots: Optional[pulumi.Input[bool]] = None,
181
203
  location: Optional[pulumi.Input[str]] = None,
182
204
  name: Optional[pulumi.Input[str]] = None,
205
+ original_primary_location: Optional[pulumi.Input[str]] = None,
206
+ primary_location: Optional[pulumi.Input[str]] = None,
183
207
  project: Optional[pulumi.Input[str]] = None,
208
+ replication_statuses: Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusArgs']]]] = None,
209
+ secondary_location: Optional[pulumi.Input[str]] = None,
184
210
  slot_capacity: Optional[pulumi.Input[int]] = None):
185
211
  """
186
212
  Input properties used for looking up and filtering Reservation resources.
@@ -197,8 +223,24 @@ class _ReservationState:
197
223
 
198
224
 
199
225
  - - -
226
+ :param pulumi.Input[str] original_primary_location: The location where the reservation was originally created. This is set only during the
227
+ failover reservation's creation. All billing charges for the failover reservation will be
228
+ applied to this location.
229
+ :param pulumi.Input[str] primary_location: The current location of the reservation's primary replica. This field is only set for
230
+ reservations using the managed disaster recovery feature.
200
231
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
201
232
  If it is not provided, the provider project is used.
233
+ :param pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusArgs']]] replication_statuses: The Disaster Recovery(DR) replication status of the reservation. This is only available for
234
+ the primary replicas of DR/failover reservations and provides information about the both the
235
+ staleness of the secondary and the last error encountered while trying to replicate changes
236
+ from the primary to the secondary. If this field is blank, it means that the reservation is
237
+ either not a DR reservation or the reservation is a DR secondary or that any replication
238
+ operations on the reservation have succeeded.
239
+ Structure is documented below.
240
+ :param pulumi.Input[str] secondary_location: The current location of the reservation's secondary replica. This field is only set for
241
+ reservations using the managed disaster recovery feature. Users can set this in create
242
+ reservation calls to create a failover reservation or in update reservation calls to convert
243
+ a non-failover reservation to a failover reservation(or vice versa).
202
244
  :param pulumi.Input[int] slot_capacity: Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the
203
245
  unit of parallelism. Queries using this reservation might use more slots during runtime if ignoreIdleSlots is set to false.
204
246
  """
@@ -214,8 +256,16 @@ class _ReservationState:
214
256
  pulumi.set(__self__, "location", location)
215
257
  if name is not None:
216
258
  pulumi.set(__self__, "name", name)
259
+ if original_primary_location is not None:
260
+ pulumi.set(__self__, "original_primary_location", original_primary_location)
261
+ if primary_location is not None:
262
+ pulumi.set(__self__, "primary_location", primary_location)
217
263
  if project is not None:
218
264
  pulumi.set(__self__, "project", project)
265
+ if replication_statuses is not None:
266
+ pulumi.set(__self__, "replication_statuses", replication_statuses)
267
+ if secondary_location is not None:
268
+ pulumi.set(__self__, "secondary_location", secondary_location)
219
269
  if slot_capacity is not None:
220
270
  pulumi.set(__self__, "slot_capacity", slot_capacity)
221
271
 
@@ -298,6 +348,33 @@ class _ReservationState:
298
348
  def name(self, value: Optional[pulumi.Input[str]]):
299
349
  pulumi.set(self, "name", value)
300
350
 
351
+ @property
352
+ @pulumi.getter(name="originalPrimaryLocation")
353
+ def original_primary_location(self) -> Optional[pulumi.Input[str]]:
354
+ """
355
+ The location where the reservation was originally created. This is set only during the
356
+ failover reservation's creation. All billing charges for the failover reservation will be
357
+ applied to this location.
358
+ """
359
+ return pulumi.get(self, "original_primary_location")
360
+
361
+ @original_primary_location.setter
362
+ def original_primary_location(self, value: Optional[pulumi.Input[str]]):
363
+ pulumi.set(self, "original_primary_location", value)
364
+
365
+ @property
366
+ @pulumi.getter(name="primaryLocation")
367
+ def primary_location(self) -> Optional[pulumi.Input[str]]:
368
+ """
369
+ The current location of the reservation's primary replica. This field is only set for
370
+ reservations using the managed disaster recovery feature.
371
+ """
372
+ return pulumi.get(self, "primary_location")
373
+
374
+ @primary_location.setter
375
+ def primary_location(self, value: Optional[pulumi.Input[str]]):
376
+ pulumi.set(self, "primary_location", value)
377
+
301
378
  @property
302
379
  @pulumi.getter
303
380
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -311,6 +388,39 @@ class _ReservationState:
311
388
  def project(self, value: Optional[pulumi.Input[str]]):
312
389
  pulumi.set(self, "project", value)
313
390
 
391
+ @property
392
+ @pulumi.getter(name="replicationStatuses")
393
+ def replication_statuses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusArgs']]]]:
394
+ """
395
+ The Disaster Recovery(DR) replication status of the reservation. This is only available for
396
+ the primary replicas of DR/failover reservations and provides information about the both the
397
+ staleness of the secondary and the last error encountered while trying to replicate changes
398
+ from the primary to the secondary. If this field is blank, it means that the reservation is
399
+ either not a DR reservation or the reservation is a DR secondary or that any replication
400
+ operations on the reservation have succeeded.
401
+ Structure is documented below.
402
+ """
403
+ return pulumi.get(self, "replication_statuses")
404
+
405
+ @replication_statuses.setter
406
+ def replication_statuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ReservationReplicationStatusArgs']]]]):
407
+ pulumi.set(self, "replication_statuses", value)
408
+
409
+ @property
410
+ @pulumi.getter(name="secondaryLocation")
411
+ def secondary_location(self) -> Optional[pulumi.Input[str]]:
412
+ """
413
+ The current location of the reservation's secondary replica. This field is only set for
414
+ reservations using the managed disaster recovery feature. Users can set this in create
415
+ reservation calls to create a failover reservation or in update reservation calls to convert
416
+ a non-failover reservation to a failover reservation(or vice versa).
417
+ """
418
+ return pulumi.get(self, "secondary_location")
419
+
420
+ @secondary_location.setter
421
+ def secondary_location(self, value: Optional[pulumi.Input[str]]):
422
+ pulumi.set(self, "secondary_location", value)
423
+
314
424
  @property
315
425
  @pulumi.getter(name="slotCapacity")
316
426
  def slot_capacity(self) -> Optional[pulumi.Input[int]]:
@@ -337,6 +447,7 @@ class Reservation(pulumi.CustomResource):
337
447
  location: Optional[pulumi.Input[str]] = None,
338
448
  name: Optional[pulumi.Input[str]] = None,
339
449
  project: Optional[pulumi.Input[str]] = None,
450
+ secondary_location: Optional[pulumi.Input[str]] = None,
340
451
  slot_capacity: Optional[pulumi.Input[int]] = None,
341
452
  __props__=None):
342
453
  """
@@ -409,6 +520,10 @@ class Reservation(pulumi.CustomResource):
409
520
  - - -
410
521
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
411
522
  If it is not provided, the provider project is used.
523
+ :param pulumi.Input[str] secondary_location: The current location of the reservation's secondary replica. This field is only set for
524
+ reservations using the managed disaster recovery feature. Users can set this in create
525
+ reservation calls to create a failover reservation or in update reservation calls to convert
526
+ a non-failover reservation to a failover reservation(or vice versa).
412
527
  :param pulumi.Input[int] slot_capacity: Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the
413
528
  unit of parallelism. Queries using this reservation might use more slots during runtime if ignoreIdleSlots is set to false.
414
529
  """
@@ -493,6 +608,7 @@ class Reservation(pulumi.CustomResource):
493
608
  location: Optional[pulumi.Input[str]] = None,
494
609
  name: Optional[pulumi.Input[str]] = None,
495
610
  project: Optional[pulumi.Input[str]] = None,
611
+ secondary_location: Optional[pulumi.Input[str]] = None,
496
612
  slot_capacity: Optional[pulumi.Input[int]] = None,
497
613
  __props__=None):
498
614
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -510,9 +626,13 @@ class Reservation(pulumi.CustomResource):
510
626
  __props__.__dict__["location"] = location
511
627
  __props__.__dict__["name"] = name
512
628
  __props__.__dict__["project"] = project
629
+ __props__.__dict__["secondary_location"] = secondary_location
513
630
  if slot_capacity is None and not opts.urn:
514
631
  raise TypeError("Missing required property 'slot_capacity'")
515
632
  __props__.__dict__["slot_capacity"] = slot_capacity
633
+ __props__.__dict__["original_primary_location"] = None
634
+ __props__.__dict__["primary_location"] = None
635
+ __props__.__dict__["replication_statuses"] = None
516
636
  super(Reservation, __self__).__init__(
517
637
  'gcp:bigquery/reservation:Reservation',
518
638
  resource_name,
@@ -529,7 +649,11 @@ class Reservation(pulumi.CustomResource):
529
649
  ignore_idle_slots: Optional[pulumi.Input[bool]] = None,
530
650
  location: Optional[pulumi.Input[str]] = None,
531
651
  name: Optional[pulumi.Input[str]] = None,
652
+ original_primary_location: Optional[pulumi.Input[str]] = None,
653
+ primary_location: Optional[pulumi.Input[str]] = None,
532
654
  project: Optional[pulumi.Input[str]] = None,
655
+ replication_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ReservationReplicationStatusArgs', 'ReservationReplicationStatusArgsDict']]]]] = None,
656
+ secondary_location: Optional[pulumi.Input[str]] = None,
533
657
  slot_capacity: Optional[pulumi.Input[int]] = None) -> 'Reservation':
534
658
  """
535
659
  Get an existing Reservation resource's state with the given name, id, and optional extra
@@ -551,8 +675,24 @@ class Reservation(pulumi.CustomResource):
551
675
 
552
676
 
553
677
  - - -
678
+ :param pulumi.Input[str] original_primary_location: The location where the reservation was originally created. This is set only during the
679
+ failover reservation's creation. All billing charges for the failover reservation will be
680
+ applied to this location.
681
+ :param pulumi.Input[str] primary_location: The current location of the reservation's primary replica. This field is only set for
682
+ reservations using the managed disaster recovery feature.
554
683
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
555
684
  If it is not provided, the provider project is used.
685
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ReservationReplicationStatusArgs', 'ReservationReplicationStatusArgsDict']]]] replication_statuses: The Disaster Recovery(DR) replication status of the reservation. This is only available for
686
+ the primary replicas of DR/failover reservations and provides information about the both the
687
+ staleness of the secondary and the last error encountered while trying to replicate changes
688
+ from the primary to the secondary. If this field is blank, it means that the reservation is
689
+ either not a DR reservation or the reservation is a DR secondary or that any replication
690
+ operations on the reservation have succeeded.
691
+ Structure is documented below.
692
+ :param pulumi.Input[str] secondary_location: The current location of the reservation's secondary replica. This field is only set for
693
+ reservations using the managed disaster recovery feature. Users can set this in create
694
+ reservation calls to create a failover reservation or in update reservation calls to convert
695
+ a non-failover reservation to a failover reservation(or vice versa).
556
696
  :param pulumi.Input[int] slot_capacity: Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the
557
697
  unit of parallelism. Queries using this reservation might use more slots during runtime if ignoreIdleSlots is set to false.
558
698
  """
@@ -566,7 +706,11 @@ class Reservation(pulumi.CustomResource):
566
706
  __props__.__dict__["ignore_idle_slots"] = ignore_idle_slots
567
707
  __props__.__dict__["location"] = location
568
708
  __props__.__dict__["name"] = name
709
+ __props__.__dict__["original_primary_location"] = original_primary_location
710
+ __props__.__dict__["primary_location"] = primary_location
569
711
  __props__.__dict__["project"] = project
712
+ __props__.__dict__["replication_statuses"] = replication_statuses
713
+ __props__.__dict__["secondary_location"] = secondary_location
570
714
  __props__.__dict__["slot_capacity"] = slot_capacity
571
715
  return Reservation(resource_name, opts=opts, __props__=__props__)
572
716
 
@@ -625,6 +769,25 @@ class Reservation(pulumi.CustomResource):
625
769
  """
626
770
  return pulumi.get(self, "name")
627
771
 
772
+ @property
773
+ @pulumi.getter(name="originalPrimaryLocation")
774
+ def original_primary_location(self) -> pulumi.Output[str]:
775
+ """
776
+ The location where the reservation was originally created. This is set only during the
777
+ failover reservation's creation. All billing charges for the failover reservation will be
778
+ applied to this location.
779
+ """
780
+ return pulumi.get(self, "original_primary_location")
781
+
782
+ @property
783
+ @pulumi.getter(name="primaryLocation")
784
+ def primary_location(self) -> pulumi.Output[str]:
785
+ """
786
+ The current location of the reservation's primary replica. This field is only set for
787
+ reservations using the managed disaster recovery feature.
788
+ """
789
+ return pulumi.get(self, "primary_location")
790
+
628
791
  @property
629
792
  @pulumi.getter
630
793
  def project(self) -> pulumi.Output[str]:
@@ -634,6 +797,31 @@ class Reservation(pulumi.CustomResource):
634
797
  """
635
798
  return pulumi.get(self, "project")
636
799
 
800
+ @property
801
+ @pulumi.getter(name="replicationStatuses")
802
+ def replication_statuses(self) -> pulumi.Output[Sequence['outputs.ReservationReplicationStatus']]:
803
+ """
804
+ The Disaster Recovery(DR) replication status of the reservation. This is only available for
805
+ the primary replicas of DR/failover reservations and provides information about the both the
806
+ staleness of the secondary and the last error encountered while trying to replicate changes
807
+ from the primary to the secondary. If this field is blank, it means that the reservation is
808
+ either not a DR reservation or the reservation is a DR secondary or that any replication
809
+ operations on the reservation have succeeded.
810
+ Structure is documented below.
811
+ """
812
+ return pulumi.get(self, "replication_statuses")
813
+
814
+ @property
815
+ @pulumi.getter(name="secondaryLocation")
816
+ def secondary_location(self) -> pulumi.Output[Optional[str]]:
817
+ """
818
+ The current location of the reservation's secondary replica. This field is only set for
819
+ reservations using the managed disaster recovery feature. Users can set this in create
820
+ reservation calls to create a failover reservation or in update reservation calls to convert
821
+ a non-failover reservation to a failover reservation(or vice versa).
822
+ """
823
+ return pulumi.get(self, "secondary_location")
824
+
637
825
  @property
638
826
  @pulumi.getter(name="slotCapacity")
639
827
  def slot_capacity(self) -> pulumi.Output[int]:
@@ -32,7 +32,7 @@ class ListingSubscriptionArgs:
32
32
  :param pulumi.Input['ListingSubscriptionDestinationDatasetArgs'] destination_dataset: The destination dataset for this subscription.
33
33
  Structure is documented below.
34
34
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
35
- :param pulumi.Input[str] location: The name of the location for this subscription.
35
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
36
36
  """
37
37
  pulumi.set(__self__, "data_exchange_id", data_exchange_id)
38
38
  pulumi.set(__self__, "destination_dataset", destination_dataset)
@@ -82,7 +82,7 @@ class ListingSubscriptionArgs:
82
82
  @pulumi.getter
83
83
  def location(self) -> pulumi.Input[str]:
84
84
  """
85
- The name of the location for this subscription.
85
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
86
86
  """
87
87
  return pulumi.get(self, "location")
88
88
 
@@ -132,7 +132,7 @@ class _ListingSubscriptionState:
132
132
  :param pulumi.Input[Sequence[pulumi.Input['ListingSubscriptionLinkedResourceArgs']]] linked_resources: Output only. Linked resources created in the subscription. Only contains values if state = STATE_ACTIVE.
133
133
  Structure is documented below.
134
134
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
135
- :param pulumi.Input[str] location: The name of the location for this subscription.
135
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
136
136
  :param pulumi.Input[str] name: The resource name of the subscription. e.g. "projects/myproject/locations/US/subscriptions/123"
137
137
  :param pulumi.Input[str] organization_display_name: Display name of the project of this subscription.
138
138
  :param pulumi.Input[str] organization_id: Organization of the project this subscription belongs to.
@@ -266,7 +266,7 @@ class _ListingSubscriptionState:
266
266
  @pulumi.getter
267
267
  def location(self) -> Optional[pulumi.Input[str]]:
268
268
  """
269
- The name of the location for this subscription.
269
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
270
270
  """
271
271
  return pulumi.get(self, "location")
272
272
 
@@ -388,6 +388,8 @@ class ListingSubscription(pulumi.CustomResource):
388
388
  * How-to Guides
389
389
  * [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
390
390
 
391
+ > **Note:** When importing the resource with `pulumi import`, provide the destination project and location
392
+ in the format projects/{{destination_project}}/locations/{{destination_location}}/subscriptions/{{subscription_id}}
391
393
  ## Example Usage
392
394
 
393
395
  ### Bigquery Analyticshub Listing Subscription Basic
@@ -463,7 +465,7 @@ class ListingSubscription(pulumi.CustomResource):
463
465
  :param pulumi.Input[Union['ListingSubscriptionDestinationDatasetArgs', 'ListingSubscriptionDestinationDatasetArgsDict']] destination_dataset: The destination dataset for this subscription.
464
466
  Structure is documented below.
465
467
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
466
- :param pulumi.Input[str] location: The name of the location for this subscription.
468
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
467
469
  """
468
470
  ...
469
471
  @overload
@@ -480,6 +482,8 @@ class ListingSubscription(pulumi.CustomResource):
480
482
  * How-to Guides
481
483
  * [Official Documentation](https://cloud.google.com/bigquery/docs/analytics-hub-introduction)
482
484
 
485
+ > **Note:** When importing the resource with `pulumi import`, provide the destination project and location
486
+ in the format projects/{{destination_project}}/locations/{{destination_location}}/subscriptions/{{subscription_id}}
483
487
  ## Example Usage
484
488
 
485
489
  ### Bigquery Analyticshub Listing Subscription Basic
@@ -646,7 +650,7 @@ class ListingSubscription(pulumi.CustomResource):
646
650
  :param pulumi.Input[Sequence[pulumi.Input[Union['ListingSubscriptionLinkedResourceArgs', 'ListingSubscriptionLinkedResourceArgsDict']]]] linked_resources: Output only. Linked resources created in the subscription. Only contains values if state = STATE_ACTIVE.
647
651
  Structure is documented below.
648
652
  :param pulumi.Input[str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces.
649
- :param pulumi.Input[str] location: The name of the location for this subscription.
653
+ :param pulumi.Input[str] location: The name of the location of the data exchange. Distinct from the location of the destination data set.
650
654
  :param pulumi.Input[str] name: The resource name of the subscription. e.g. "projects/myproject/locations/US/subscriptions/123"
651
655
  :param pulumi.Input[str] organization_display_name: Display name of the project of this subscription.
652
656
  :param pulumi.Input[str] organization_id: Organization of the project this subscription belongs to.
@@ -741,7 +745,7 @@ class ListingSubscription(pulumi.CustomResource):
741
745
  @pulumi.getter
742
746
  def location(self) -> pulumi.Output[str]:
743
747
  """
744
- The name of the location for this subscription.
748
+ The name of the location of the data exchange. Distinct from the location of the destination data set.
745
749
  """
746
750
  return pulumi.get(self, "location")
747
751
 
@@ -361,6 +361,14 @@ class DataAccessLabel(pulumi.CustomResource):
361
361
  udm_query: Optional[pulumi.Input[str]] = None,
362
362
  __props__=None):
363
363
  """
364
+ A DataAccessLabel is a label on events to define user access to data.
365
+
366
+ To get more information about DataAccessLabel, see:
367
+
368
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
369
+ * How-to Guides
370
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
371
+
364
372
  ## Example Usage
365
373
 
366
374
  ### Chronicle Dataaccesslabel Basic
@@ -424,6 +432,14 @@ class DataAccessLabel(pulumi.CustomResource):
424
432
  args: DataAccessLabelArgs,
425
433
  opts: Optional[pulumi.ResourceOptions] = None):
426
434
  """
435
+ A DataAccessLabel is a label on events to define user access to data.
436
+
437
+ To get more information about DataAccessLabel, see:
438
+
439
+ * [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.dataAccessLabels)
440
+ * How-to Guides
441
+ * [Introduction to data RBAC](https://cloud.google.com/chronicle/docs/onboard/onboard-datarbac)
442
+
427
443
  ## Example Usage
428
444
 
429
445
  ### Chronicle Dataaccesslabel Basic
@@ -64,8 +64,8 @@ class ServiceArgs:
64
64
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
65
65
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
66
66
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
67
- :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
68
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
67
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
68
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
69
69
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
70
70
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
71
71
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -278,8 +278,8 @@ class ServiceArgs:
278
278
  @pulumi.getter(name="invokerIamDisabled")
279
279
  def invoker_iam_disabled(self) -> Optional[pulumi.Input[bool]]:
280
280
  """
281
- Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
282
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
281
+ Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
282
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
283
283
  """
284
284
  return pulumi.get(self, "invoker_iam_disabled")
285
285
 
@@ -443,8 +443,8 @@ class _ServiceState:
443
443
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
444
444
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
445
445
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
446
- :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
447
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
446
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
447
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
448
448
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
449
449
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
450
450
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -804,8 +804,8 @@ class _ServiceState:
804
804
  @pulumi.getter(name="invokerIamDisabled")
805
805
  def invoker_iam_disabled(self) -> Optional[pulumi.Input[bool]]:
806
806
  """
807
- Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
808
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
807
+ Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
808
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
809
809
  """
810
810
  return pulumi.get(self, "invoker_iam_disabled")
811
811
 
@@ -1668,8 +1668,8 @@ class Service(pulumi.CustomResource):
1668
1668
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
1669
1669
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
1670
1670
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
1671
- :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
1672
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
1671
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
1672
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
1673
1673
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
1674
1674
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
1675
1675
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -2422,8 +2422,8 @@ class Service(pulumi.CustomResource):
2422
2422
  :param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
2423
2423
  INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
2424
2424
  "INGRESS_TRAFFIC_INTERNAL_ONLY", "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"]
2425
- :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
2426
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2425
+ :param pulumi.Input[bool] invoker_iam_disabled: Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
2426
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2427
2427
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Unstructured key value map that can be used to organize and categorize objects. User-provided labels are shared with
2428
2428
  Google's billing system, so they can be used to filter, or break down billing charges by team, component, environment,
2429
2429
  state, etc. For more information, visit https://cloud.google.com/resource-manager/docs/creating-managing-labels or
@@ -2672,8 +2672,8 @@ class Service(pulumi.CustomResource):
2672
2672
  @pulumi.getter(name="invokerIamDisabled")
2673
2673
  def invoker_iam_disabled(self) -> pulumi.Output[Optional[bool]]:
2674
2674
  """
2675
- Disables IAM permission check for run.routes.invoke for callers of this service. This feature is available by invitation
2676
- only. For more information, visit https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2675
+ Disables IAM permission check for run.routes.invoke for callers of this service. For more information, visit
2676
+ https://cloud.google.com/run/docs/securing/managing-access#invoker_check.
2677
2677
  """
2678
2678
  return pulumi.get(self, "invoker_iam_disabled")
2679
2679
 
@@ -50,6 +50,7 @@ from .get_hc_vpn_gateway import *
50
50
  from .get_health_check import *
51
51
  from .get_image import *
52
52
  from .get_image_iam_policy import *
53
+ from .get_images import *
53
54
  from .get_instance import *
54
55
  from .get_instance_group import *
55
56
  from .get_instance_group_manager import *