pulumi-gcp 7.18.0a1712683935__py3-none-any.whl → 7.18.0a1712714650__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.
@@ -20,6 +20,7 @@ class ClusterArgs:
20
20
  shard_count: pulumi.Input[int],
21
21
  authorization_mode: Optional[pulumi.Input[str]] = None,
22
22
  name: Optional[pulumi.Input[str]] = None,
23
+ node_type: Optional[pulumi.Input[str]] = None,
23
24
  project: Optional[pulumi.Input[str]] = None,
24
25
  region: Optional[pulumi.Input[str]] = None,
25
26
  replica_count: Optional[pulumi.Input[int]] = None,
@@ -36,6 +37,9 @@ class ClusterArgs:
36
37
  Possible values are: `AUTH_MODE_UNSPECIFIED`, `AUTH_MODE_IAM_AUTH`, `AUTH_MODE_DISABLED`.
37
38
  :param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
38
39
  projects/{projectId}/locations/{locationId}/clusters/{clusterId}
40
+ :param pulumi.Input[str] node_type: The nodeType for the Redis cluster.
41
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
42
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
39
43
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
40
44
  If it is not provided, the provider project is used.
41
45
  :param pulumi.Input[str] region: The name of the region of the Redis cluster.
@@ -51,6 +55,8 @@ class ClusterArgs:
51
55
  pulumi.set(__self__, "authorization_mode", authorization_mode)
52
56
  if name is not None:
53
57
  pulumi.set(__self__, "name", name)
58
+ if node_type is not None:
59
+ pulumi.set(__self__, "node_type", node_type)
54
60
  if project is not None:
55
61
  pulumi.set(__self__, "project", project)
56
62
  if region is not None:
@@ -114,6 +120,20 @@ class ClusterArgs:
114
120
  def name(self, value: Optional[pulumi.Input[str]]):
115
121
  pulumi.set(self, "name", value)
116
122
 
123
+ @property
124
+ @pulumi.getter(name="nodeType")
125
+ def node_type(self) -> Optional[pulumi.Input[str]]:
126
+ """
127
+ The nodeType for the Redis cluster.
128
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
129
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
130
+ """
131
+ return pulumi.get(self, "node_type")
132
+
133
+ @node_type.setter
134
+ def node_type(self, value: Optional[pulumi.Input[str]]):
135
+ pulumi.set(self, "node_type", value)
136
+
117
137
  @property
118
138
  @pulumi.getter
119
139
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -174,6 +194,8 @@ class _ClusterState:
174
194
  create_time: Optional[pulumi.Input[str]] = None,
175
195
  discovery_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterDiscoveryEndpointArgs']]]] = None,
176
196
  name: Optional[pulumi.Input[str]] = None,
197
+ node_type: Optional[pulumi.Input[str]] = None,
198
+ precise_size_gb: Optional[pulumi.Input[float]] = None,
177
199
  project: Optional[pulumi.Input[str]] = None,
178
200
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]]] = None,
179
201
  psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]] = None,
@@ -199,6 +221,10 @@ class _ClusterState:
199
221
  Structure is documented below.
200
222
  :param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
201
223
  projects/{projectId}/locations/{locationId}/clusters/{clusterId}
224
+ :param pulumi.Input[str] node_type: The nodeType for the Redis cluster.
225
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
226
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
227
+ :param pulumi.Input[float] precise_size_gb: Output only. Redis memory precise size in GB for the entire cluster.
202
228
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
203
229
  If it is not provided, the provider project is used.
204
230
  :param pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]] psc_configs: Required. Each PscConfig configures the consumer network where two
@@ -228,6 +254,10 @@ class _ClusterState:
228
254
  pulumi.set(__self__, "discovery_endpoints", discovery_endpoints)
229
255
  if name is not None:
230
256
  pulumi.set(__self__, "name", name)
257
+ if node_type is not None:
258
+ pulumi.set(__self__, "node_type", node_type)
259
+ if precise_size_gb is not None:
260
+ pulumi.set(__self__, "precise_size_gb", precise_size_gb)
231
261
  if project is not None:
232
262
  pulumi.set(__self__, "project", project)
233
263
  if psc_configs is not None:
@@ -307,6 +337,32 @@ class _ClusterState:
307
337
  def name(self, value: Optional[pulumi.Input[str]]):
308
338
  pulumi.set(self, "name", value)
309
339
 
340
+ @property
341
+ @pulumi.getter(name="nodeType")
342
+ def node_type(self) -> Optional[pulumi.Input[str]]:
343
+ """
344
+ The nodeType for the Redis cluster.
345
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
346
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
347
+ """
348
+ return pulumi.get(self, "node_type")
349
+
350
+ @node_type.setter
351
+ def node_type(self, value: Optional[pulumi.Input[str]]):
352
+ pulumi.set(self, "node_type", value)
353
+
354
+ @property
355
+ @pulumi.getter(name="preciseSizeGb")
356
+ def precise_size_gb(self) -> Optional[pulumi.Input[float]]:
357
+ """
358
+ Output only. Redis memory precise size in GB for the entire cluster.
359
+ """
360
+ return pulumi.get(self, "precise_size_gb")
361
+
362
+ @precise_size_gb.setter
363
+ def precise_size_gb(self, value: Optional[pulumi.Input[float]]):
364
+ pulumi.set(self, "precise_size_gb", value)
365
+
310
366
  @property
311
367
  @pulumi.getter
312
368
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -456,6 +512,7 @@ class Cluster(pulumi.CustomResource):
456
512
  opts: Optional[pulumi.ResourceOptions] = None,
457
513
  authorization_mode: Optional[pulumi.Input[str]] = None,
458
514
  name: Optional[pulumi.Input[str]] = None,
515
+ node_type: Optional[pulumi.Input[str]] = None,
459
516
  project: Optional[pulumi.Input[str]] = None,
460
517
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
461
518
  region: Optional[pulumi.Input[str]] = None,
@@ -492,6 +549,7 @@ class Cluster(pulumi.CustomResource):
492
549
  )],
493
550
  region="us-central1",
494
551
  replica_count=1,
552
+ node_type="REDIS_SHARED_CORE_NANO",
495
553
  transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
496
554
  authorization_mode="AUTH_MODE_DISABLED")
497
555
  producer_subnet = gcp.compute.Subnetwork("producer_subnet",
@@ -548,6 +606,9 @@ class Cluster(pulumi.CustomResource):
548
606
  Possible values are: `AUTH_MODE_UNSPECIFIED`, `AUTH_MODE_IAM_AUTH`, `AUTH_MODE_DISABLED`.
549
607
  :param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
550
608
  projects/{projectId}/locations/{locationId}/clusters/{clusterId}
609
+ :param pulumi.Input[str] node_type: The nodeType for the Redis cluster.
610
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
611
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
551
612
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
552
613
  If it is not provided, the provider project is used.
553
614
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]] psc_configs: Required. Each PscConfig configures the consumer network where two
@@ -597,6 +658,7 @@ class Cluster(pulumi.CustomResource):
597
658
  )],
598
659
  region="us-central1",
599
660
  replica_count=1,
661
+ node_type="REDIS_SHARED_CORE_NANO",
600
662
  transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
601
663
  authorization_mode="AUTH_MODE_DISABLED")
602
664
  producer_subnet = gcp.compute.Subnetwork("producer_subnet",
@@ -663,6 +725,7 @@ class Cluster(pulumi.CustomResource):
663
725
  opts: Optional[pulumi.ResourceOptions] = None,
664
726
  authorization_mode: Optional[pulumi.Input[str]] = None,
665
727
  name: Optional[pulumi.Input[str]] = None,
728
+ node_type: Optional[pulumi.Input[str]] = None,
666
729
  project: Optional[pulumi.Input[str]] = None,
667
730
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
668
731
  region: Optional[pulumi.Input[str]] = None,
@@ -680,6 +743,7 @@ class Cluster(pulumi.CustomResource):
680
743
 
681
744
  __props__.__dict__["authorization_mode"] = authorization_mode
682
745
  __props__.__dict__["name"] = name
746
+ __props__.__dict__["node_type"] = node_type
683
747
  __props__.__dict__["project"] = project
684
748
  if psc_configs is None and not opts.urn:
685
749
  raise TypeError("Missing required property 'psc_configs'")
@@ -692,6 +756,7 @@ class Cluster(pulumi.CustomResource):
692
756
  __props__.__dict__["transit_encryption_mode"] = transit_encryption_mode
693
757
  __props__.__dict__["create_time"] = None
694
758
  __props__.__dict__["discovery_endpoints"] = None
759
+ __props__.__dict__["precise_size_gb"] = None
695
760
  __props__.__dict__["psc_connections"] = None
696
761
  __props__.__dict__["size_gb"] = None
697
762
  __props__.__dict__["state"] = None
@@ -711,6 +776,8 @@ class Cluster(pulumi.CustomResource):
711
776
  create_time: Optional[pulumi.Input[str]] = None,
712
777
  discovery_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterDiscoveryEndpointArgs']]]]] = None,
713
778
  name: Optional[pulumi.Input[str]] = None,
779
+ node_type: Optional[pulumi.Input[str]] = None,
780
+ precise_size_gb: Optional[pulumi.Input[float]] = None,
714
781
  project: Optional[pulumi.Input[str]] = None,
715
782
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
716
783
  psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConnectionArgs']]]]] = None,
@@ -741,6 +808,10 @@ class Cluster(pulumi.CustomResource):
741
808
  Structure is documented below.
742
809
  :param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
743
810
  projects/{projectId}/locations/{locationId}/clusters/{clusterId}
811
+ :param pulumi.Input[str] node_type: The nodeType for the Redis cluster.
812
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
813
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
814
+ :param pulumi.Input[float] precise_size_gb: Output only. Redis memory precise size in GB for the entire cluster.
744
815
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
745
816
  If it is not provided, the provider project is used.
746
817
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]] psc_configs: Required. Each PscConfig configures the consumer network where two
@@ -770,6 +841,8 @@ class Cluster(pulumi.CustomResource):
770
841
  __props__.__dict__["create_time"] = create_time
771
842
  __props__.__dict__["discovery_endpoints"] = discovery_endpoints
772
843
  __props__.__dict__["name"] = name
844
+ __props__.__dict__["node_type"] = node_type
845
+ __props__.__dict__["precise_size_gb"] = precise_size_gb
773
846
  __props__.__dict__["project"] = project
774
847
  __props__.__dict__["psc_configs"] = psc_configs
775
848
  __props__.__dict__["psc_connections"] = psc_connections
@@ -823,6 +896,24 @@ class Cluster(pulumi.CustomResource):
823
896
  """
824
897
  return pulumi.get(self, "name")
825
898
 
899
+ @property
900
+ @pulumi.getter(name="nodeType")
901
+ def node_type(self) -> pulumi.Output[str]:
902
+ """
903
+ The nodeType for the Redis cluster.
904
+ If not provided, REDIS_HIGHMEM_MEDIUM will be used as default
905
+ Possible values are: `REDIS_SHARED_CORE_NANO`, `REDIS_HIGHMEM_MEDIUM`, `REDIS_HIGHMEM_XLARGE`, `REDIS_STANDARD_SMALL`.
906
+ """
907
+ return pulumi.get(self, "node_type")
908
+
909
+ @property
910
+ @pulumi.getter(name="preciseSizeGb")
911
+ def precise_size_gb(self) -> pulumi.Output[float]:
912
+ """
913
+ Output only. Redis memory precise size in GB for the entire cluster.
914
+ """
915
+ return pulumi.get(self, "precise_size_gb")
916
+
826
917
  @property
827
918
  @pulumi.getter
828
919
  def project(self) -> pulumi.Output[str]:
@@ -401,6 +401,7 @@ class _BucketState:
401
401
  logging: Optional[pulumi.Input['BucketLoggingArgs']] = None,
402
402
  name: Optional[pulumi.Input[str]] = None,
403
403
  project: Optional[pulumi.Input[str]] = None,
404
+ project_number: Optional[pulumi.Input[int]] = None,
404
405
  public_access_prevention: Optional[pulumi.Input[str]] = None,
405
406
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
406
407
  requester_pays: Optional[pulumi.Input[bool]] = None,
@@ -435,6 +436,7 @@ class _BucketState:
435
436
  :param pulumi.Input[str] name: The name of the bucket.
436
437
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
437
438
  is not provided, the provider project is used.
439
+ :param pulumi.Input[int] project_number: The project number of the project in which the resource belongs.
438
440
  :param pulumi.Input[str] public_access_prevention: Prevents public access to a bucket. Acceptable values are "inherited" or "enforced". If "inherited", the bucket uses [public access prevention](https://cloud.google.com/storage/docs/public-access-prevention). only if the bucket is subject to the public access prevention organization policy constraint. Defaults to "inherited".
439
441
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
440
442
  :param pulumi.Input[bool] requester_pays: Enables [Requester Pays](https://cloud.google.com/storage/docs/requester-pays) on a storage bucket.
@@ -477,6 +479,8 @@ class _BucketState:
477
479
  pulumi.set(__self__, "name", name)
478
480
  if project is not None:
479
481
  pulumi.set(__self__, "project", project)
482
+ if project_number is not None:
483
+ pulumi.set(__self__, "project_number", project_number)
480
484
  if public_access_prevention is not None:
481
485
  pulumi.set(__self__, "public_access_prevention", public_access_prevention)
482
486
  if pulumi_labels is not None:
@@ -676,6 +680,18 @@ class _BucketState:
676
680
  def project(self, value: Optional[pulumi.Input[str]]):
677
681
  pulumi.set(self, "project", value)
678
682
 
683
+ @property
684
+ @pulumi.getter(name="projectNumber")
685
+ def project_number(self) -> Optional[pulumi.Input[int]]:
686
+ """
687
+ The project number of the project in which the resource belongs.
688
+ """
689
+ return pulumi.get(self, "project_number")
690
+
691
+ @project_number.setter
692
+ def project_number(self, value: Optional[pulumi.Input[int]]):
693
+ pulumi.set(self, "project_number", value)
694
+
679
695
  @property
680
696
  @pulumi.getter(name="publicAccessPrevention")
681
697
  def public_access_prevention(self) -> Optional[pulumi.Input[str]]:
@@ -1202,6 +1218,7 @@ class Bucket(pulumi.CustomResource):
1202
1218
  __props__.__dict__["versioning"] = versioning
1203
1219
  __props__.__dict__["website"] = website
1204
1220
  __props__.__dict__["effective_labels"] = None
1221
+ __props__.__dict__["project_number"] = None
1205
1222
  __props__.__dict__["pulumi_labels"] = None
1206
1223
  __props__.__dict__["self_link"] = None
1207
1224
  __props__.__dict__["url"] = None
@@ -1231,6 +1248,7 @@ class Bucket(pulumi.CustomResource):
1231
1248
  logging: Optional[pulumi.Input[pulumi.InputType['BucketLoggingArgs']]] = None,
1232
1249
  name: Optional[pulumi.Input[str]] = None,
1233
1250
  project: Optional[pulumi.Input[str]] = None,
1251
+ project_number: Optional[pulumi.Input[int]] = None,
1234
1252
  public_access_prevention: Optional[pulumi.Input[str]] = None,
1235
1253
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1236
1254
  requester_pays: Optional[pulumi.Input[bool]] = None,
@@ -1270,6 +1288,7 @@ class Bucket(pulumi.CustomResource):
1270
1288
  :param pulumi.Input[str] name: The name of the bucket.
1271
1289
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
1272
1290
  is not provided, the provider project is used.
1291
+ :param pulumi.Input[int] project_number: The project number of the project in which the resource belongs.
1273
1292
  :param pulumi.Input[str] public_access_prevention: Prevents public access to a bucket. Acceptable values are "inherited" or "enforced". If "inherited", the bucket uses [public access prevention](https://cloud.google.com/storage/docs/public-access-prevention). only if the bucket is subject to the public access prevention organization policy constraint. Defaults to "inherited".
1274
1293
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
1275
1294
  :param pulumi.Input[bool] requester_pays: Enables [Requester Pays](https://cloud.google.com/storage/docs/requester-pays) on a storage bucket.
@@ -1302,6 +1321,7 @@ class Bucket(pulumi.CustomResource):
1302
1321
  __props__.__dict__["logging"] = logging
1303
1322
  __props__.__dict__["name"] = name
1304
1323
  __props__.__dict__["project"] = project
1324
+ __props__.__dict__["project_number"] = project_number
1305
1325
  __props__.__dict__["public_access_prevention"] = public_access_prevention
1306
1326
  __props__.__dict__["pulumi_labels"] = pulumi_labels
1307
1327
  __props__.__dict__["requester_pays"] = requester_pays
@@ -1434,6 +1454,14 @@ class Bucket(pulumi.CustomResource):
1434
1454
  """
1435
1455
  return pulumi.get(self, "project")
1436
1456
 
1457
+ @property
1458
+ @pulumi.getter(name="projectNumber")
1459
+ def project_number(self) -> pulumi.Output[int]:
1460
+ """
1461
+ The project number of the project in which the resource belongs.
1462
+ """
1463
+ return pulumi.get(self, "project_number")
1464
+
1437
1465
  @property
1438
1466
  @pulumi.getter(name="publicAccessPrevention")
1439
1467
  def public_access_prevention(self) -> pulumi.Output[str]:
@@ -22,7 +22,7 @@ class GetBucketResult:
22
22
  """
23
23
  A collection of values returned by getBucket.
24
24
  """
25
- def __init__(__self__, autoclasses=None, cors=None, custom_placement_configs=None, default_event_based_hold=None, effective_labels=None, enable_object_retention=None, encryptions=None, force_destroy=None, id=None, labels=None, lifecycle_rules=None, location=None, loggings=None, name=None, project=None, public_access_prevention=None, pulumi_labels=None, requester_pays=None, retention_policies=None, rpo=None, self_link=None, soft_delete_policies=None, storage_class=None, uniform_bucket_level_access=None, url=None, versionings=None, websites=None):
25
+ def __init__(__self__, autoclasses=None, cors=None, custom_placement_configs=None, default_event_based_hold=None, effective_labels=None, enable_object_retention=None, encryptions=None, force_destroy=None, id=None, labels=None, lifecycle_rules=None, location=None, loggings=None, name=None, project=None, project_number=None, public_access_prevention=None, pulumi_labels=None, requester_pays=None, retention_policies=None, rpo=None, self_link=None, soft_delete_policies=None, storage_class=None, uniform_bucket_level_access=None, url=None, versionings=None, websites=None):
26
26
  if autoclasses and not isinstance(autoclasses, list):
27
27
  raise TypeError("Expected argument 'autoclasses' to be a list")
28
28
  pulumi.set(__self__, "autoclasses", autoclasses)
@@ -68,6 +68,9 @@ class GetBucketResult:
68
68
  if project and not isinstance(project, str):
69
69
  raise TypeError("Expected argument 'project' to be a str")
70
70
  pulumi.set(__self__, "project", project)
71
+ if project_number and not isinstance(project_number, int):
72
+ raise TypeError("Expected argument 'project_number' to be a int")
73
+ pulumi.set(__self__, "project_number", project_number)
71
74
  if public_access_prevention and not isinstance(public_access_prevention, str):
72
75
  raise TypeError("Expected argument 'public_access_prevention' to be a str")
73
76
  pulumi.set(__self__, "public_access_prevention", public_access_prevention)
@@ -180,9 +183,14 @@ class GetBucketResult:
180
183
 
181
184
  @property
182
185
  @pulumi.getter
183
- def project(self) -> str:
186
+ def project(self) -> Optional[str]:
184
187
  return pulumi.get(self, "project")
185
188
 
189
+ @property
190
+ @pulumi.getter(name="projectNumber")
191
+ def project_number(self) -> int:
192
+ return pulumi.get(self, "project_number")
193
+
186
194
  @property
187
195
  @pulumi.getter(name="publicAccessPrevention")
188
196
  def public_access_prevention(self) -> str:
@@ -265,6 +273,7 @@ class AwaitableGetBucketResult(GetBucketResult):
265
273
  loggings=self.loggings,
266
274
  name=self.name,
267
275
  project=self.project,
276
+ project_number=self.project_number,
268
277
  public_access_prevention=self.public_access_prevention,
269
278
  pulumi_labels=self.pulumi_labels,
270
279
  requester_pays=self.requester_pays,
@@ -280,6 +289,7 @@ class AwaitableGetBucketResult(GetBucketResult):
280
289
 
281
290
 
282
291
  def get_bucket(name: Optional[str] = None,
292
+ project: Optional[str] = None,
283
293
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBucketResult:
284
294
  """
285
295
  Gets an existing bucket in Google Cloud Storage service (GCS).
@@ -300,9 +310,11 @@ def get_bucket(name: Optional[str] = None,
300
310
 
301
311
 
302
312
  :param str name: The name of the bucket.
313
+ :param str project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used. If no value is supplied in the configuration or through provider defaults then the data source will use the Compute API to find the project id that corresponds to the project number returned from the Storage API. Supplying a value for `project` doesn't influence retrieving data about the bucket but it can be used to prevent use of the Compute API. If you do provide a `project` value ensure that it is the correct value for that bucket; the data source will not check that the project id and project number match.
303
314
  """
304
315
  __args__ = dict()
305
316
  __args__['name'] = name
317
+ __args__['project'] = project
306
318
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
307
319
  __ret__ = pulumi.runtime.invoke('gcp:storage/getBucket:getBucket', __args__, opts=opts, typ=GetBucketResult).value
308
320
 
@@ -322,6 +334,7 @@ def get_bucket(name: Optional[str] = None,
322
334
  loggings=pulumi.get(__ret__, 'loggings'),
323
335
  name=pulumi.get(__ret__, 'name'),
324
336
  project=pulumi.get(__ret__, 'project'),
337
+ project_number=pulumi.get(__ret__, 'project_number'),
325
338
  public_access_prevention=pulumi.get(__ret__, 'public_access_prevention'),
326
339
  pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
327
340
  requester_pays=pulumi.get(__ret__, 'requester_pays'),
@@ -338,6 +351,7 @@ def get_bucket(name: Optional[str] = None,
338
351
 
339
352
  @_utilities.lift_output_func(get_bucket)
340
353
  def get_bucket_output(name: Optional[pulumi.Input[str]] = None,
354
+ project: Optional[pulumi.Input[Optional[str]]] = None,
341
355
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBucketResult]:
342
356
  """
343
357
  Gets an existing bucket in Google Cloud Storage service (GCS).
@@ -358,5 +372,6 @@ def get_bucket_output(name: Optional[pulumi.Input[str]] = None,
358
372
 
359
373
 
360
374
  :param str name: The name of the bucket.
375
+ :param str project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used. If no value is supplied in the configuration or through provider defaults then the data source will use the Compute API to find the project id that corresponds to the project number returned from the Storage API. Supplying a value for `project` doesn't influence retrieving data about the bucket but it can be used to prevent use of the Compute API. If you do provide a `project` value ensure that it is the correct value for that bucket; the data source will not check that the project id and project number match.
361
376
  """
362
377
  ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 7.18.0a1712683935
3
+ Version: 7.18.0a1712714650
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
@@ -110,7 +110,7 @@ pulumi_gcp/apphub/service_project_attachment.py,sha256=589pKkz1dJnwmN0snHjju4Oe9
110
110
  pulumi_gcp/apphub/workload.py,sha256=7afsE99C7qY6-cnw2QAiLLfSuVGRji3bIkYdhu9KJ7w,53572
111
111
  pulumi_gcp/applicationintegration/__init__.py,sha256=ausSKqpug2Jb8qm9cKAnN9m8qLFm0szr6xjU9Fkx_c0,336
112
112
  pulumi_gcp/applicationintegration/_inputs.py,sha256=tdbt5yVk_SKGFImNuQ5t_Qnbt5sWkQZNc8yzsjmJZXY,5008
113
- pulumi_gcp/applicationintegration/client.py,sha256=a43b3zg85A_WqKnWcssPBMRnv54qbqmPJbUsZc1bF_c,23642
113
+ pulumi_gcp/applicationintegration/client.py,sha256=xupdlqqU5FUhOFflvjsc9n2cb5lqroArONuEZzriKNU,23978
114
114
  pulumi_gcp/applicationintegration/outputs.py,sha256=0K4yCXQyOb4YtzOXzVJv530cdV9ZGs2vuIifHpCgpY4,4964
115
115
  pulumi_gcp/artifactregistry/__init__.py,sha256=23W9EF8nOJfmk0n2SszUDCj8BE-0yYb_ozXI5ZqTVAA,551
116
116
  pulumi_gcp/artifactregistry/_inputs.py,sha256=e9fGGZ91PBe-yd3xlBSRjHg9dXZHkGBkMDENYTbL29Q,39733
@@ -351,7 +351,7 @@ pulumi_gcp/cloudrun/iam_policy.py,sha256=GwENARYx_VFhEnwZ69VrGByVhxlgOYi_klZ8j4H
351
351
  pulumi_gcp/cloudrun/outputs.py,sha256=ED_IxUFk9U1UVZvOnMZUFwGrAaKpcAgnA7aFZYVWBEk,218998
352
352
  pulumi_gcp/cloudrun/service.py,sha256=V6kJVnv1q5KMAB6EC_7uWTaL-5KIofHLk0cUvXYzh_E,53101
353
353
  pulumi_gcp/cloudrunv2/__init__.py,sha256=7dnEvU3VMMpOmrF9q-Efb8BkNNmT3oNa79ZMYxDKb_A,672
354
- pulumi_gcp/cloudrunv2/_inputs.py,sha256=D8coeJ9_nrOWbJ5ZgYMYBARx9sCM9sA2bBOqnF3uLfo,191455
354
+ pulumi_gcp/cloudrunv2/_inputs.py,sha256=M09z5p2H_kSilEaT2swaAV3YvC_1L0B5EU_3mv-9uUE,194081
355
355
  pulumi_gcp/cloudrunv2/get_job.py,sha256=6SW1pewf_O-ZA9zKccm4IQuL8XiPDjc59kPsTMm5qfA,16403
356
356
  pulumi_gcp/cloudrunv2/get_job_iam_policy.py,sha256=jmcmI74k_zAv6VohUsN_C44NqZPui_cJSis5W4JGMbU,6155
357
357
  pulumi_gcp/cloudrunv2/get_service.py,sha256=YTXdi10JSzncjlY3D5AyVECfNYXKvIh5jZrIix-S1zw,19617
@@ -360,7 +360,7 @@ pulumi_gcp/cloudrunv2/job.py,sha256=3_PxXNIuNMdDTc_8oVaDSV5-zPbRhJzZQX-boghegJc,
360
360
  pulumi_gcp/cloudrunv2/job_iam_binding.py,sha256=_znJ-eVYm9cu9P6Nrj4G3ZZTiYncFPqKkFK6bUmTibU,36341
361
361
  pulumi_gcp/cloudrunv2/job_iam_member.py,sha256=uLUWHJ-LngXWoXy9MD4G-eQqzCTYdSMvO8WQriZqk9Q,36045
362
362
  pulumi_gcp/cloudrunv2/job_iam_policy.py,sha256=PwcUVPqcq3Gh1sVJN7kytDG6hNnh7kaAs_7y5Gcc62o,32559
363
- pulumi_gcp/cloudrunv2/outputs.py,sha256=TUONcpjsutQyEEET3WN9OjIrjKw70_6roRaIN_HPWsQ,312705
363
+ pulumi_gcp/cloudrunv2/outputs.py,sha256=TSZeDuEykAPc9ClPHHYq4WADDMxk3kaimfY4oj3RWeE,317038
364
364
  pulumi_gcp/cloudrunv2/service.py,sha256=M-NPztjBMiYVXp-EZOCwVvpeavsOiLfUmj3OqQ0hS_8,127616
365
365
  pulumi_gcp/cloudrunv2/service_iam_binding.py,sha256=CjktsTzNXzRl0siEYa7IEfMPOdvo0ezQNR2l7lG3tCM,36789
366
366
  pulumi_gcp/cloudrunv2/service_iam_member.py,sha256=2z9es0mrMgMtRNKz9vnfDUaY-un-fAJ4uciFwwXJWOQ,36493
@@ -585,24 +585,24 @@ pulumi_gcp/config/__init__.pyi,sha256=NY0oQwd2gHvuI7ZOI7N90wXilygK0aydXxc6jJNazF
585
585
  pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
586
586
  pulumi_gcp/config/vars.py,sha256=A9rJ2Z1JebNqZvPUjTeELutJnQcdbT3fFcH7eSmowSw,23289
587
587
  pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
588
- pulumi_gcp/container/_inputs.py,sha256=e0jJ-JYNLB_t0sGE21onj5ACEEkwrRFKw9b5Qayk5qk,609066
588
+ pulumi_gcp/container/_inputs.py,sha256=2yV9L0rHZXXH9rtdMNhIAZhY7XnkFF4GpwT3WY38syg,610933
589
589
  pulumi_gcp/container/attached_cluster.py,sha256=MPUTP1ZuhZiBSdVCLZgX7dCtKwCVu6lkQF237GQWhbI,75112
590
590
  pulumi_gcp/container/aws_cluster.py,sha256=7T23usYCv3gq9pLhQ_UIf8umnE3H0zOB7Kaj0eNU4FY,72516
591
591
  pulumi_gcp/container/aws_node_pool.py,sha256=lorNP-K146s3_cuj655MrAVGS4PnKPgsgRjoTOgdzl4,81994
592
592
  pulumi_gcp/container/azure_client.py,sha256=AI4KaQaBj3wmzhIcAAJBqLdQiDO7HRtVIh8XMYQgwW4,20156
593
593
  pulumi_gcp/container/azure_cluster.py,sha256=973wUE6Ec77fQBaHi8Rw9hJL0pZU4-mLVAjr_tDKU8w,70387
594
594
  pulumi_gcp/container/azure_node_pool.py,sha256=I6MzfvseAN4mdN5wjZzBPU9di7KHKYCMu5upY8kTFF4,57554
595
- pulumi_gcp/container/cluster.py,sha256=MbdtIs4QThl_4zC38Ze5F49cbbu0SyolCoXZVxam-OQ,282230
595
+ pulumi_gcp/container/cluster.py,sha256=LjDZ8E6VOcpON0nuZ94zZ_AVCqPO9qAdEwvfjPvej2Y,285483
596
596
  pulumi_gcp/container/get_attached_install_manifest.py,sha256=IASrwOgPATdErfGsw3BWezK8JWQWGDLStCEFPfnmxlY,7094
597
597
  pulumi_gcp/container/get_attached_versions.py,sha256=93fcRNlcPnsTohihq8eoTQ5IlER76AvyHDa9GruMjOU,5015
598
598
  pulumi_gcp/container/get_aws_versions.py,sha256=SBeVNPIHtyo_y4tKOYi51zMUq6T8qj5PI00SKq3PDkg,5593
599
599
  pulumi_gcp/container/get_azure_versions.py,sha256=t8adsY0LQ76IogcKx7PxucIYhWjOY6f_tuZ-ETbLGG8,5643
600
- pulumi_gcp/container/get_cluster.py,sha256=fFb_jfaXB5x11KuEu4895iGv3vjF_OEwTb6LgSpt6A8,44942
600
+ pulumi_gcp/container/get_cluster.py,sha256=9gG1t2rAyCr56ueWDgGOsPScyWp13mCrq8fE6D5iebY,45762
601
601
  pulumi_gcp/container/get_engine_versions.py,sha256=in51h90mh4fQw83k2WESnegkUTum-hz44AkXzDa8O-0,13212
602
602
  pulumi_gcp/container/get_registry_image.py,sha256=iPUG2PbgH986IeTefMOIr4FjTDx76pbjg6y87ByGnJU,7132
603
603
  pulumi_gcp/container/get_registry_repository.py,sha256=OQRijqwf_JAnnvB928vs0jVkZqXIzG6zvbv6zyPoXiE,5493
604
604
  pulumi_gcp/container/node_pool.py,sha256=OiUko6ydbrr4XMm_OEi0jRQBdq-8c3dY3yMwrgfstHc,74004
605
- pulumi_gcp/container/outputs.py,sha256=mAVtmZ6CKrGf-TMNoUazBUr0fMJG6pXkjSrOVoFBL5k,827119
605
+ pulumi_gcp/container/outputs.py,sha256=bJTUc5IrCdHGhlr1UlMuanka2tBPnQfkoKUv_hqUtO4,829785
606
606
  pulumi_gcp/container/registry.py,sha256=lO5-rbA9Est83aJsz2F2cSghUyAresv6AyqgMGtTZjQ,13425
607
607
  pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
608
608
  pulumi_gcp/containeranalysis/_inputs.py,sha256=1yTLGmL7agpwp0maJz0rEzueNmb9QOpSEcdah1zfBus,12213
@@ -861,7 +861,7 @@ pulumi_gcp/firebaserules/release.py,sha256=sjJt0ja1sZ4zNxv5IjdI7ATJx7PbU74fhQ2c7
861
861
  pulumi_gcp/firebaserules/ruleset.py,sha256=uEeIHnqDczLp7GONwhGFb36TCXwHhTTiXquQoOy0fPg,15136
862
862
  pulumi_gcp/firestore/__init__.py,sha256=Wchkbc9GSPt9us5HelFU99PgiE-yVU5bzw3DQKtttgg,435
863
863
  pulumi_gcp/firestore/_inputs.py,sha256=ZP_DGV_TkebbKrp-3g2y7MWY0FOztcw_tRveApC371Y,12947
864
- pulumi_gcp/firestore/backup_schedule.py,sha256=1oQZ8_PD0m96sqgaHgamRhyYDLwd7gkrPb_cHErG2_I,26048
864
+ pulumi_gcp/firestore/backup_schedule.py,sha256=PAXJvtx0H6R7tvZVNjWIGGzvLKUGoiL-xqAfy_c0wjA,25378
865
865
  pulumi_gcp/firestore/database.py,sha256=OIrwmmqON-8oCuQXVjD3y6b1JjZM1cf3qdOc5v0muHI,70491
866
866
  pulumi_gcp/firestore/document.py,sha256=Zwoy7jdFwA9s8vmE6O-vJ2y-AlQTddaR2ZSQqmcoka4,28695
867
867
  pulumi_gcp/firestore/field.py,sha256=Udo7jJY-LdIndhf43Mq-RX5v6uRxgKJGo9s3sHH6bDE,29818
@@ -921,7 +921,7 @@ pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py,sha256=iqvG4elXn47TVlVgOuhIKGx8
921
921
  pulumi_gcp/gkeonprem/bare_metal_cluster.py,sha256=roJmCkdmcDNX20Y9iQIGp-28vg8a2Ad_Ev4Wvcorsa4,116180
922
922
  pulumi_gcp/gkeonprem/bare_metal_node_pool.py,sha256=Bq5OZh8mkE7EBuKsALgBkKnXvT9EsvYB-X5YlxmsV0o,56312
923
923
  pulumi_gcp/gkeonprem/outputs.py,sha256=B012almUdleiTglf10diJ2EdU-SeJ1VVKNzPfXbM7vg,271439
924
- pulumi_gcp/gkeonprem/v_mware_cluster.py,sha256=DaDinN4X-cdEVDh38lsI3wNw0byexof-f8Dp6PbLYMY,102155
924
+ pulumi_gcp/gkeonprem/v_mware_cluster.py,sha256=1fSXuKiAhAFuyxyMU6tICvswollPkI6eAaKJMM6nzSQ,104493
925
925
  pulumi_gcp/gkeonprem/v_mware_node_pool.py,sha256=OcPRR6TeZJVIS6-Ox7cdBPU8IJOQZ3DGGLHwBDy2_fE,46798
926
926
  pulumi_gcp/healthcare/__init__.py,sha256=va96glIWoYUrqVJFXE5I-k0g4vXw3qTjwMD7qWY0J9E,1212
927
927
  pulumi_gcp/healthcare/_inputs.py,sha256=kcvkVJwfVtccSlRJpAtv0eVHFIJZ-7oNOum1Z9ik9gE,44045
@@ -1078,7 +1078,7 @@ pulumi_gcp/logging/project_exclusion.py,sha256=flHC10Sd30yUoAwPjVy0D11ZGoD42DMnP
1078
1078
  pulumi_gcp/logging/project_sink.py,sha256=ZUv1bgZEtrZ_w05R47o600AxBUSeoovhEAg3PZDd1LU,40688
1079
1079
  pulumi_gcp/looker/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0sc,338
1080
1080
  pulumi_gcp/looker/_inputs.py,sha256=z6TLEc2nf--awAYieCOx6LrkiBSjrkS9LlScDLAoGHY,22664
1081
- pulumi_gcp/looker/instance.py,sha256=-5nwcSu_IKXNq2FzT3G_7FoEQ6qEPEd4Tn2MiYzhHqg,76922
1081
+ pulumi_gcp/looker/instance.py,sha256=vADGtStaPR6DCxcZPgM00coFWPtdiUK_U1TNi5xco5M,76840
1082
1082
  pulumi_gcp/looker/outputs.py,sha256=W5qtyxXkZAOahmfdnIgogH1gTZE4eclHlghIin4fUMY,21515
1083
1083
  pulumi_gcp/memcache/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0sc,338
1084
1084
  pulumi_gcp/memcache/_inputs.py,sha256=aoplZ7WoVDw-hkZvh45Rbn3cT2LjEh26-szzuEgKR1o,19753
@@ -1265,7 +1265,7 @@ pulumi_gcp/recaptcha/enterprise_key.py,sha256=KtzTh74ApRZaAv9qscVOAZ0CKEi35ZD9rC
1265
1265
  pulumi_gcp/recaptcha/outputs.py,sha256=AT1LWIZuukUTv1KqEVxwP1Yida5pNglC0bVZE0wbhKo,13613
1266
1266
  pulumi_gcp/redis/__init__.py,sha256=ZresoueauXpt2HsRh1dtHTWpomcgsL6Xr61T27YS-Ys,389
1267
1267
  pulumi_gcp/redis/_inputs.py,sha256=qqmre8oRj-xSyW1LRbOIGTjcCnE0ScXv65QORMbuC5Y,35210
1268
- pulumi_gcp/redis/cluster.py,sha256=LYJmP7jB6k8TpJRteUcLsPhOiKsHGWhcvpfEkqPNaJw,42994
1268
+ pulumi_gcp/redis/cluster.py,sha256=daVgKrXgRU3unv1bv9fcYNtCc5SRaz-F5vQ9GiQtAiI,47654
1269
1269
  pulumi_gcp/redis/get_instance.py,sha256=Dtlg-nQrP-A02Cqtmlq4g225OD0hP2iPOvf3oKhraxo,19992
1270
1270
  pulumi_gcp/redis/instance.py,sha256=LhgF55ia9LyDEO4VFYbYWmb2vVVpS_x45DVGoCia0R8,116492
1271
1271
  pulumi_gcp/redis/outputs.py,sha256=KWk_XddwL5jPhcFP0Qhj_0dj0pqKC6dcf91Bu4NSF_w,51908
@@ -1400,7 +1400,7 @@ pulumi_gcp/sql/ssl_cert.py,sha256=GRGBXcfnfNtq0e37dEHnd3gUOV9aL47hVmHfNIE5AVk,22
1400
1400
  pulumi_gcp/sql/user.py,sha256=ar6KdlshFI7xFz5LkwNRVK4W2RQlVfZ5l4cgfvgbi-U,35513
1401
1401
  pulumi_gcp/storage/__init__.py,sha256=2Nx9E_NoRrkJBZtX3y48zqDWj8gVD2WQSKM6LCwOPDI,1143
1402
1402
  pulumi_gcp/storage/_inputs.py,sha256=TZqFBDTzlLVX6NNlUvbNdcay_nU_DpsugTA7nLWnbcE,115982
1403
- pulumi_gcp/storage/bucket.py,sha256=ClHkwSsR17MpfR7QSPZ5SsaQXO_DFdIXiLW5l80ztAI,83941
1403
+ pulumi_gcp/storage/bucket.py,sha256=nZdilvUhVbxPPqMdSEabf_N7-GL8zE6w8MB5oPl38ss,85189
1404
1404
  pulumi_gcp/storage/bucket_access_control.py,sha256=AR5koIKe1JRWxOpGycN3TNU10iiTdJVj65QjHCBqegI,19855
1405
1405
  pulumi_gcp/storage/bucket_acl.py,sha256=o9Nhu-Gz-JQxwpuTaloEYEbaHbeTFlkix2dvkzupRDQ,17244
1406
1406
  pulumi_gcp/storage/bucket_iam_binding.py,sha256=xK56kQuAsEAabT6FY9Xu_nEGsISV-mj-KJilkCbHviI,36287
@@ -1409,7 +1409,7 @@ pulumi_gcp/storage/bucket_iam_policy.py,sha256=Tup3JzDYpcGVq6vyZ-o2yXzk0AsmDYy6n
1409
1409
  pulumi_gcp/storage/bucket_object.py,sha256=AgCYHqN5l-k4qHsqfy-REpT9BWQ9DazC1o89QKpTnO4,61177
1410
1410
  pulumi_gcp/storage/default_object_access_control.py,sha256=5MRNSviZ3qF5pKeDr_bZBnz3FbQ4qtozPGusgxKKW_0,24120
1411
1411
  pulumi_gcp/storage/default_object_acl.py,sha256=9fE8UDgv-baI_rtL6Jyz3mlheqAll4qNZ5BmLHE3iNY,12102
1412
- pulumi_gcp/storage/get_bucket.py,sha256=6s8gkO8jQ-BHxfGYFnowj8ofowgLUW0Ehe_4mslCjrY,15407
1412
+ pulumi_gcp/storage/get_bucket.py,sha256=VGr80DvpdMn_U8-ls3RRgKQIeOHgWVfIuHgvcvkc3sY,17348
1413
1413
  pulumi_gcp/storage/get_bucket_iam_policy.py,sha256=hITg9TcTf7HdqNEogyiH6fKMOZ72EqAjdiLL9s0Pzgs,4176
1414
1414
  pulumi_gcp/storage/get_bucket_object.py,sha256=OzoKSBi9FVLEKw0eEPXEkE-S9rq2nhdiRT3JsNUu2W4,15661
1415
1415
  pulumi_gcp/storage/get_bucket_object_content.py,sha256=AkyQ3WLhpaFexcNGTeMxVqzVIz9EUVNcM6y5zkMVq-E,14504
@@ -1530,7 +1530,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=TyWHa1bvUxE2G6qS
1530
1530
  pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ThXeqkGmcUcMVuZl7dEEtWNN9sJJoQqwupeiHK4ztTY,35859
1531
1531
  pulumi_gcp/workstations/workstation_iam_member.py,sha256=LOBURSVWn3zQetagM4edFqG0EWE8D1XTHjHFcw7-Hhw,35563
1532
1532
  pulumi_gcp/workstations/workstation_iam_policy.py,sha256=hzOeqd9JE1VzAA70Pj2bJH7hsCZWCpdEoJ8RY8Sj1xU,31927
1533
- pulumi_gcp-7.18.0a1712683935.dist-info/METADATA,sha256=qwdHhOvFZKdZ-m7BV0S0dy_cAsNOgpuEngi3tAqOUc8,2662
1534
- pulumi_gcp-7.18.0a1712683935.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1535
- pulumi_gcp-7.18.0a1712683935.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1536
- pulumi_gcp-7.18.0a1712683935.dist-info/RECORD,,
1533
+ pulumi_gcp-7.18.0a1712714650.dist-info/METADATA,sha256=EowTPyWcFWiCYullaaG_7vpf-qx1gqwtfUj9LcbIurU,2662
1534
+ pulumi_gcp-7.18.0a1712714650.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1535
+ pulumi_gcp-7.18.0a1712714650.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
1536
+ pulumi_gcp-7.18.0a1712714650.dist-info/RECORD,,