pulumi-gcp 7.18.0__py3-none-any.whl → 7.18.0a1712687150__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.
- pulumi_gcp/applicationintegration/client.py +14 -22
- pulumi_gcp/cloudrunv2/_inputs.py +0 -73
- pulumi_gcp/cloudrunv2/outputs.py +0 -126
- pulumi_gcp/container/_inputs.py +1 -17
- pulumi_gcp/container/cluster.py +0 -47
- pulumi_gcp/container/get_cluster.py +1 -11
- pulumi_gcp/container/outputs.py +2 -27
- pulumi_gcp/firestore/backup_schedule.py +9 -9
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -49
- pulumi_gcp/looker/instance.py +30 -20
- pulumi_gcp/redis/cluster.py +0 -91
- pulumi_gcp/storage/bucket.py +0 -28
- pulumi_gcp/storage/get_bucket.py +2 -17
- {pulumi_gcp-7.18.0.dist-info → pulumi_gcp-7.18.0a1712687150.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.18.0.dist-info → pulumi_gcp-7.18.0a1712687150.dist-info}/RECORD +17 -17
- {pulumi_gcp-7.18.0.dist-info → pulumi_gcp-7.18.0a1712687150.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.18.0.dist-info → pulumi_gcp-7.18.0a1712687150.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/cluster.py
CHANGED
@@ -20,7 +20,6 @@ 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,
|
24
23
|
project: Optional[pulumi.Input[str]] = None,
|
25
24
|
region: Optional[pulumi.Input[str]] = None,
|
26
25
|
replica_count: Optional[pulumi.Input[int]] = None,
|
@@ -37,9 +36,6 @@ class ClusterArgs:
|
|
37
36
|
Possible values are: `AUTH_MODE_UNSPECIFIED`, `AUTH_MODE_IAM_AUTH`, `AUTH_MODE_DISABLED`.
|
38
37
|
:param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
|
39
38
|
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`.
|
43
39
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
44
40
|
If it is not provided, the provider project is used.
|
45
41
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
@@ -55,8 +51,6 @@ class ClusterArgs:
|
|
55
51
|
pulumi.set(__self__, "authorization_mode", authorization_mode)
|
56
52
|
if name is not None:
|
57
53
|
pulumi.set(__self__, "name", name)
|
58
|
-
if node_type is not None:
|
59
|
-
pulumi.set(__self__, "node_type", node_type)
|
60
54
|
if project is not None:
|
61
55
|
pulumi.set(__self__, "project", project)
|
62
56
|
if region is not None:
|
@@ -120,20 +114,6 @@ class ClusterArgs:
|
|
120
114
|
def name(self, value: Optional[pulumi.Input[str]]):
|
121
115
|
pulumi.set(self, "name", value)
|
122
116
|
|
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
|
-
|
137
117
|
@property
|
138
118
|
@pulumi.getter
|
139
119
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -194,8 +174,6 @@ class _ClusterState:
|
|
194
174
|
create_time: Optional[pulumi.Input[str]] = None,
|
195
175
|
discovery_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterDiscoveryEndpointArgs']]]] = None,
|
196
176
|
name: Optional[pulumi.Input[str]] = None,
|
197
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
198
|
-
precise_size_gb: Optional[pulumi.Input[float]] = None,
|
199
177
|
project: Optional[pulumi.Input[str]] = None,
|
200
178
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]]] = None,
|
201
179
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]] = None,
|
@@ -221,10 +199,6 @@ class _ClusterState:
|
|
221
199
|
Structure is documented below.
|
222
200
|
:param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
|
223
201
|
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.
|
228
202
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
229
203
|
If it is not provided, the provider project is used.
|
230
204
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]] psc_configs: Required. Each PscConfig configures the consumer network where two
|
@@ -254,10 +228,6 @@ class _ClusterState:
|
|
254
228
|
pulumi.set(__self__, "discovery_endpoints", discovery_endpoints)
|
255
229
|
if name is not None:
|
256
230
|
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)
|
261
231
|
if project is not None:
|
262
232
|
pulumi.set(__self__, "project", project)
|
263
233
|
if psc_configs is not None:
|
@@ -337,32 +307,6 @@ class _ClusterState:
|
|
337
307
|
def name(self, value: Optional[pulumi.Input[str]]):
|
338
308
|
pulumi.set(self, "name", value)
|
339
309
|
|
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
|
-
|
366
310
|
@property
|
367
311
|
@pulumi.getter
|
368
312
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -512,7 +456,6 @@ class Cluster(pulumi.CustomResource):
|
|
512
456
|
opts: Optional[pulumi.ResourceOptions] = None,
|
513
457
|
authorization_mode: Optional[pulumi.Input[str]] = None,
|
514
458
|
name: Optional[pulumi.Input[str]] = None,
|
515
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
516
459
|
project: Optional[pulumi.Input[str]] = None,
|
517
460
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
518
461
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -549,7 +492,6 @@ class Cluster(pulumi.CustomResource):
|
|
549
492
|
)],
|
550
493
|
region="us-central1",
|
551
494
|
replica_count=1,
|
552
|
-
node_type="REDIS_SHARED_CORE_NANO",
|
553
495
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
554
496
|
authorization_mode="AUTH_MODE_DISABLED")
|
555
497
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
@@ -606,9 +548,6 @@ class Cluster(pulumi.CustomResource):
|
|
606
548
|
Possible values are: `AUTH_MODE_UNSPECIFIED`, `AUTH_MODE_IAM_AUTH`, `AUTH_MODE_DISABLED`.
|
607
549
|
:param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
|
608
550
|
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`.
|
612
551
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
613
552
|
If it is not provided, the provider project is used.
|
614
553
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]] psc_configs: Required. Each PscConfig configures the consumer network where two
|
@@ -658,7 +597,6 @@ class Cluster(pulumi.CustomResource):
|
|
658
597
|
)],
|
659
598
|
region="us-central1",
|
660
599
|
replica_count=1,
|
661
|
-
node_type="REDIS_SHARED_CORE_NANO",
|
662
600
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
663
601
|
authorization_mode="AUTH_MODE_DISABLED")
|
664
602
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
@@ -725,7 +663,6 @@ class Cluster(pulumi.CustomResource):
|
|
725
663
|
opts: Optional[pulumi.ResourceOptions] = None,
|
726
664
|
authorization_mode: Optional[pulumi.Input[str]] = None,
|
727
665
|
name: Optional[pulumi.Input[str]] = None,
|
728
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
729
666
|
project: Optional[pulumi.Input[str]] = None,
|
730
667
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
731
668
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -743,7 +680,6 @@ class Cluster(pulumi.CustomResource):
|
|
743
680
|
|
744
681
|
__props__.__dict__["authorization_mode"] = authorization_mode
|
745
682
|
__props__.__dict__["name"] = name
|
746
|
-
__props__.__dict__["node_type"] = node_type
|
747
683
|
__props__.__dict__["project"] = project
|
748
684
|
if psc_configs is None and not opts.urn:
|
749
685
|
raise TypeError("Missing required property 'psc_configs'")
|
@@ -756,7 +692,6 @@ class Cluster(pulumi.CustomResource):
|
|
756
692
|
__props__.__dict__["transit_encryption_mode"] = transit_encryption_mode
|
757
693
|
__props__.__dict__["create_time"] = None
|
758
694
|
__props__.__dict__["discovery_endpoints"] = None
|
759
|
-
__props__.__dict__["precise_size_gb"] = None
|
760
695
|
__props__.__dict__["psc_connections"] = None
|
761
696
|
__props__.__dict__["size_gb"] = None
|
762
697
|
__props__.__dict__["state"] = None
|
@@ -776,8 +711,6 @@ class Cluster(pulumi.CustomResource):
|
|
776
711
|
create_time: Optional[pulumi.Input[str]] = None,
|
777
712
|
discovery_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterDiscoveryEndpointArgs']]]]] = None,
|
778
713
|
name: Optional[pulumi.Input[str]] = None,
|
779
|
-
node_type: Optional[pulumi.Input[str]] = None,
|
780
|
-
precise_size_gb: Optional[pulumi.Input[float]] = None,
|
781
714
|
project: Optional[pulumi.Input[str]] = None,
|
782
715
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
783
716
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConnectionArgs']]]]] = None,
|
@@ -808,10 +741,6 @@ class Cluster(pulumi.CustomResource):
|
|
808
741
|
Structure is documented below.
|
809
742
|
:param pulumi.Input[str] name: Unique name of the resource in this scope including project and location using the form:
|
810
743
|
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.
|
815
744
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
816
745
|
If it is not provided, the provider project is used.
|
817
746
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]] psc_configs: Required. Each PscConfig configures the consumer network where two
|
@@ -841,8 +770,6 @@ class Cluster(pulumi.CustomResource):
|
|
841
770
|
__props__.__dict__["create_time"] = create_time
|
842
771
|
__props__.__dict__["discovery_endpoints"] = discovery_endpoints
|
843
772
|
__props__.__dict__["name"] = name
|
844
|
-
__props__.__dict__["node_type"] = node_type
|
845
|
-
__props__.__dict__["precise_size_gb"] = precise_size_gb
|
846
773
|
__props__.__dict__["project"] = project
|
847
774
|
__props__.__dict__["psc_configs"] = psc_configs
|
848
775
|
__props__.__dict__["psc_connections"] = psc_connections
|
@@ -896,24 +823,6 @@ class Cluster(pulumi.CustomResource):
|
|
896
823
|
"""
|
897
824
|
return pulumi.get(self, "name")
|
898
825
|
|
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
|
-
|
917
826
|
@property
|
918
827
|
@pulumi.getter
|
919
828
|
def project(self) -> pulumi.Output[str]:
|
pulumi_gcp/storage/bucket.py
CHANGED
@@ -401,7 +401,6 @@ 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,
|
405
404
|
public_access_prevention: Optional[pulumi.Input[str]] = None,
|
406
405
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
407
406
|
requester_pays: Optional[pulumi.Input[bool]] = None,
|
@@ -436,7 +435,6 @@ class _BucketState:
|
|
436
435
|
:param pulumi.Input[str] name: The name of the bucket.
|
437
436
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
438
437
|
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.
|
440
438
|
: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".
|
441
439
|
: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.
|
442
440
|
:param pulumi.Input[bool] requester_pays: Enables [Requester Pays](https://cloud.google.com/storage/docs/requester-pays) on a storage bucket.
|
@@ -479,8 +477,6 @@ class _BucketState:
|
|
479
477
|
pulumi.set(__self__, "name", name)
|
480
478
|
if project is not None:
|
481
479
|
pulumi.set(__self__, "project", project)
|
482
|
-
if project_number is not None:
|
483
|
-
pulumi.set(__self__, "project_number", project_number)
|
484
480
|
if public_access_prevention is not None:
|
485
481
|
pulumi.set(__self__, "public_access_prevention", public_access_prevention)
|
486
482
|
if pulumi_labels is not None:
|
@@ -680,18 +676,6 @@ class _BucketState:
|
|
680
676
|
def project(self, value: Optional[pulumi.Input[str]]):
|
681
677
|
pulumi.set(self, "project", value)
|
682
678
|
|
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
|
-
|
695
679
|
@property
|
696
680
|
@pulumi.getter(name="publicAccessPrevention")
|
697
681
|
def public_access_prevention(self) -> Optional[pulumi.Input[str]]:
|
@@ -1218,7 +1202,6 @@ class Bucket(pulumi.CustomResource):
|
|
1218
1202
|
__props__.__dict__["versioning"] = versioning
|
1219
1203
|
__props__.__dict__["website"] = website
|
1220
1204
|
__props__.__dict__["effective_labels"] = None
|
1221
|
-
__props__.__dict__["project_number"] = None
|
1222
1205
|
__props__.__dict__["pulumi_labels"] = None
|
1223
1206
|
__props__.__dict__["self_link"] = None
|
1224
1207
|
__props__.__dict__["url"] = None
|
@@ -1248,7 +1231,6 @@ class Bucket(pulumi.CustomResource):
|
|
1248
1231
|
logging: Optional[pulumi.Input[pulumi.InputType['BucketLoggingArgs']]] = None,
|
1249
1232
|
name: Optional[pulumi.Input[str]] = None,
|
1250
1233
|
project: Optional[pulumi.Input[str]] = None,
|
1251
|
-
project_number: Optional[pulumi.Input[int]] = None,
|
1252
1234
|
public_access_prevention: Optional[pulumi.Input[str]] = None,
|
1253
1235
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1254
1236
|
requester_pays: Optional[pulumi.Input[bool]] = None,
|
@@ -1288,7 +1270,6 @@ class Bucket(pulumi.CustomResource):
|
|
1288
1270
|
:param pulumi.Input[str] name: The name of the bucket.
|
1289
1271
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1290
1272
|
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.
|
1292
1273
|
: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".
|
1293
1274
|
: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.
|
1294
1275
|
:param pulumi.Input[bool] requester_pays: Enables [Requester Pays](https://cloud.google.com/storage/docs/requester-pays) on a storage bucket.
|
@@ -1321,7 +1302,6 @@ class Bucket(pulumi.CustomResource):
|
|
1321
1302
|
__props__.__dict__["logging"] = logging
|
1322
1303
|
__props__.__dict__["name"] = name
|
1323
1304
|
__props__.__dict__["project"] = project
|
1324
|
-
__props__.__dict__["project_number"] = project_number
|
1325
1305
|
__props__.__dict__["public_access_prevention"] = public_access_prevention
|
1326
1306
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
1327
1307
|
__props__.__dict__["requester_pays"] = requester_pays
|
@@ -1454,14 +1434,6 @@ class Bucket(pulumi.CustomResource):
|
|
1454
1434
|
"""
|
1455
1435
|
return pulumi.get(self, "project")
|
1456
1436
|
|
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
|
-
|
1465
1437
|
@property
|
1466
1438
|
@pulumi.getter(name="publicAccessPrevention")
|
1467
1439
|
def public_access_prevention(self) -> pulumi.Output[str]:
|
pulumi_gcp/storage/get_bucket.py
CHANGED
@@ -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,
|
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):
|
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,9 +68,6 @@ 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)
|
74
71
|
if public_access_prevention and not isinstance(public_access_prevention, str):
|
75
72
|
raise TypeError("Expected argument 'public_access_prevention' to be a str")
|
76
73
|
pulumi.set(__self__, "public_access_prevention", public_access_prevention)
|
@@ -183,14 +180,9 @@ class GetBucketResult:
|
|
183
180
|
|
184
181
|
@property
|
185
182
|
@pulumi.getter
|
186
|
-
def project(self) ->
|
183
|
+
def project(self) -> str:
|
187
184
|
return pulumi.get(self, "project")
|
188
185
|
|
189
|
-
@property
|
190
|
-
@pulumi.getter(name="projectNumber")
|
191
|
-
def project_number(self) -> int:
|
192
|
-
return pulumi.get(self, "project_number")
|
193
|
-
|
194
186
|
@property
|
195
187
|
@pulumi.getter(name="publicAccessPrevention")
|
196
188
|
def public_access_prevention(self) -> str:
|
@@ -273,7 +265,6 @@ class AwaitableGetBucketResult(GetBucketResult):
|
|
273
265
|
loggings=self.loggings,
|
274
266
|
name=self.name,
|
275
267
|
project=self.project,
|
276
|
-
project_number=self.project_number,
|
277
268
|
public_access_prevention=self.public_access_prevention,
|
278
269
|
pulumi_labels=self.pulumi_labels,
|
279
270
|
requester_pays=self.requester_pays,
|
@@ -289,7 +280,6 @@ class AwaitableGetBucketResult(GetBucketResult):
|
|
289
280
|
|
290
281
|
|
291
282
|
def get_bucket(name: Optional[str] = None,
|
292
|
-
project: Optional[str] = None,
|
293
283
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBucketResult:
|
294
284
|
"""
|
295
285
|
Gets an existing bucket in Google Cloud Storage service (GCS).
|
@@ -310,11 +300,9 @@ def get_bucket(name: Optional[str] = None,
|
|
310
300
|
|
311
301
|
|
312
302
|
: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.
|
314
303
|
"""
|
315
304
|
__args__ = dict()
|
316
305
|
__args__['name'] = name
|
317
|
-
__args__['project'] = project
|
318
306
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
319
307
|
__ret__ = pulumi.runtime.invoke('gcp:storage/getBucket:getBucket', __args__, opts=opts, typ=GetBucketResult).value
|
320
308
|
|
@@ -334,7 +322,6 @@ def get_bucket(name: Optional[str] = None,
|
|
334
322
|
loggings=pulumi.get(__ret__, 'loggings'),
|
335
323
|
name=pulumi.get(__ret__, 'name'),
|
336
324
|
project=pulumi.get(__ret__, 'project'),
|
337
|
-
project_number=pulumi.get(__ret__, 'project_number'),
|
338
325
|
public_access_prevention=pulumi.get(__ret__, 'public_access_prevention'),
|
339
326
|
pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
|
340
327
|
requester_pays=pulumi.get(__ret__, 'requester_pays'),
|
@@ -351,7 +338,6 @@ def get_bucket(name: Optional[str] = None,
|
|
351
338
|
|
352
339
|
@_utilities.lift_output_func(get_bucket)
|
353
340
|
def get_bucket_output(name: Optional[pulumi.Input[str]] = None,
|
354
|
-
project: Optional[pulumi.Input[Optional[str]]] = None,
|
355
341
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBucketResult]:
|
356
342
|
"""
|
357
343
|
Gets an existing bucket in Google Cloud Storage service (GCS).
|
@@ -372,6 +358,5 @@ def get_bucket_output(name: Optional[pulumi.Input[str]] = None,
|
|
372
358
|
|
373
359
|
|
374
360
|
: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.
|
376
361
|
"""
|
377
362
|
...
|
@@ -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=
|
113
|
+
pulumi_gcp/applicationintegration/client.py,sha256=a43b3zg85A_WqKnWcssPBMRnv54qbqmPJbUsZc1bF_c,23642
|
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=
|
354
|
+
pulumi_gcp/cloudrunv2/_inputs.py,sha256=D8coeJ9_nrOWbJ5ZgYMYBARx9sCM9sA2bBOqnF3uLfo,191455
|
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=
|
363
|
+
pulumi_gcp/cloudrunv2/outputs.py,sha256=TUONcpjsutQyEEET3WN9OjIrjKw70_6roRaIN_HPWsQ,312705
|
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=
|
588
|
+
pulumi_gcp/container/_inputs.py,sha256=e0jJ-JYNLB_t0sGE21onj5ACEEkwrRFKw9b5Qayk5qk,609066
|
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=
|
595
|
+
pulumi_gcp/container/cluster.py,sha256=MbdtIs4QThl_4zC38Ze5F49cbbu0SyolCoXZVxam-OQ,282230
|
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=
|
600
|
+
pulumi_gcp/container/get_cluster.py,sha256=fFb_jfaXB5x11KuEu4895iGv3vjF_OEwTb6LgSpt6A8,44942
|
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=
|
605
|
+
pulumi_gcp/container/outputs.py,sha256=mAVtmZ6CKrGf-TMNoUazBUr0fMJG6pXkjSrOVoFBL5k,827119
|
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=
|
864
|
+
pulumi_gcp/firestore/backup_schedule.py,sha256=1oQZ8_PD0m96sqgaHgamRhyYDLwd7gkrPb_cHErG2_I,26048
|
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=
|
924
|
+
pulumi_gcp/gkeonprem/v_mware_cluster.py,sha256=DaDinN4X-cdEVDh38lsI3wNw0byexof-f8Dp6PbLYMY,102155
|
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
|
1081
|
+
pulumi_gcp/looker/instance.py,sha256=-5nwcSu_IKXNq2FzT3G_7FoEQ6qEPEd4Tn2MiYzhHqg,76922
|
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=
|
1268
|
+
pulumi_gcp/redis/cluster.py,sha256=LYJmP7jB6k8TpJRteUcLsPhOiKsHGWhcvpfEkqPNaJw,42994
|
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=
|
1403
|
+
pulumi_gcp/storage/bucket.py,sha256=ClHkwSsR17MpfR7QSPZ5SsaQXO_DFdIXiLW5l80ztAI,83941
|
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=
|
1412
|
+
pulumi_gcp/storage/get_bucket.py,sha256=6s8gkO8jQ-BHxfGYFnowj8ofowgLUW0Ehe_4mslCjrY,15407
|
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.
|
1534
|
-
pulumi_gcp-7.18.
|
1535
|
-
pulumi_gcp-7.18.
|
1536
|
-
pulumi_gcp-7.18.
|
1533
|
+
pulumi_gcp-7.18.0a1712687150.dist-info/METADATA,sha256=swbD9fdbyh7fTpc47_htsRJrq7ZSXHF5Y92yswMWWmk,2662
|
1534
|
+
pulumi_gcp-7.18.0a1712687150.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1535
|
+
pulumi_gcp-7.18.0a1712687150.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1536
|
+
pulumi_gcp-7.18.0a1712687150.dist-info/RECORD,,
|
File without changes
|
File without changes
|