pulumi-gcp 7.22.0__py3-none-any.whl → 7.22.0a1715306721__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/__init__.py +0 -11
- pulumi_gcp/alloydb/_inputs.py +0 -139
- pulumi_gcp/alloydb/cluster.py +0 -54
- pulumi_gcp/alloydb/outputs.py +0 -145
- pulumi_gcp/applicationintegration/auth_config.py +6 -2
- pulumi_gcp/applicationintegration/client.py +18 -133
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/bigquery/job.py +20 -16
- pulumi_gcp/cloudrunv2/job.py +4 -2
- pulumi_gcp/cloudrunv2/service.py +4 -2
- pulumi_gcp/compute/_inputs.py +0 -4
- pulumi_gcp/compute/outputs.py +0 -4
- pulumi_gcp/compute/router_peer.py +14 -54
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +0 -169
- pulumi_gcp/container/outputs.py +0 -272
- pulumi_gcp/dataflow/flex_template_job.py +21 -21
- pulumi_gcp/dataflow/job.py +7 -21
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +528 -0
- pulumi_gcp/firebaserules/release.py +2 -2
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/redis/cluster.py +2 -69
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/outputs.py +0 -63
- {pulumi_gcp-7.22.0.dist-info → pulumi_gcp-7.22.0a1715306721.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.22.0.dist-info → pulumi_gcp-7.22.0a1715306721.dist-info}/RECORD +29 -34
- pulumi_gcp/privilegedaccessmanager/__init__.py +0 -10
- pulumi_gcp/privilegedaccessmanager/_inputs.py +0 -420
- pulumi_gcp/privilegedaccessmanager/entitlement.py +0 -852
- pulumi_gcp/privilegedaccessmanager/outputs.py +0 -491
- pulumi_gcp/storage/get_buckets.py +0 -138
- {pulumi_gcp-7.22.0.dist-info → pulumi_gcp-7.22.0a1715306721.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.22.0.dist-info → pulumi_gcp-7.22.0a1715306721.dist-info}/top_level.txt +0 -0
pulumi_gcp/provider.py
CHANGED
@@ -140,7 +140,6 @@ class ProviderArgs:
|
|
140
140
|
os_login_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
141
141
|
parallelstore_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
142
142
|
privateca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
143
|
-
privileged_access_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
144
143
|
project: Optional[pulumi.Input[str]] = None,
|
145
144
|
public_ca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
146
145
|
pubsub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -437,8 +436,6 @@ class ProviderArgs:
|
|
437
436
|
pulumi.set(__self__, "parallelstore_custom_endpoint", parallelstore_custom_endpoint)
|
438
437
|
if privateca_custom_endpoint is not None:
|
439
438
|
pulumi.set(__self__, "privateca_custom_endpoint", privateca_custom_endpoint)
|
440
|
-
if privileged_access_manager_custom_endpoint is not None:
|
441
|
-
pulumi.set(__self__, "privileged_access_manager_custom_endpoint", privileged_access_manager_custom_endpoint)
|
442
439
|
if project is None:
|
443
440
|
project = _utilities.get_env('GOOGLE_PROJECT', 'GOOGLE_CLOUD_PROJECT', 'GCLOUD_PROJECT', 'CLOUDSDK_CORE_PROJECT')
|
444
441
|
if project is not None:
|
@@ -1657,15 +1654,6 @@ class ProviderArgs:
|
|
1657
1654
|
def privateca_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
1658
1655
|
pulumi.set(self, "privateca_custom_endpoint", value)
|
1659
1656
|
|
1660
|
-
@property
|
1661
|
-
@pulumi.getter(name="privilegedAccessManagerCustomEndpoint")
|
1662
|
-
def privileged_access_manager_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
|
1663
|
-
return pulumi.get(self, "privileged_access_manager_custom_endpoint")
|
1664
|
-
|
1665
|
-
@privileged_access_manager_custom_endpoint.setter
|
1666
|
-
def privileged_access_manager_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
1667
|
-
pulumi.set(self, "privileged_access_manager_custom_endpoint", value)
|
1668
|
-
|
1669
1657
|
@property
|
1670
1658
|
@pulumi.getter
|
1671
1659
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -2184,7 +2172,6 @@ class Provider(pulumi.ProviderResource):
|
|
2184
2172
|
os_login_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2185
2173
|
parallelstore_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2186
2174
|
privateca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2187
|
-
privileged_access_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2188
2175
|
project: Optional[pulumi.Input[str]] = None,
|
2189
2176
|
public_ca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2190
2177
|
pubsub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2390,7 +2377,6 @@ class Provider(pulumi.ProviderResource):
|
|
2390
2377
|
os_login_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2391
2378
|
parallelstore_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2392
2379
|
privateca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2393
|
-
privileged_access_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2394
2380
|
project: Optional[pulumi.Input[str]] = None,
|
2395
2381
|
public_ca_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2396
2382
|
pubsub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2568,7 +2554,6 @@ class Provider(pulumi.ProviderResource):
|
|
2568
2554
|
__props__.__dict__["os_login_custom_endpoint"] = os_login_custom_endpoint
|
2569
2555
|
__props__.__dict__["parallelstore_custom_endpoint"] = parallelstore_custom_endpoint
|
2570
2556
|
__props__.__dict__["privateca_custom_endpoint"] = privateca_custom_endpoint
|
2571
|
-
__props__.__dict__["privileged_access_manager_custom_endpoint"] = privileged_access_manager_custom_endpoint
|
2572
2557
|
if project is None:
|
2573
2558
|
project = _utilities.get_env('GOOGLE_PROJECT', 'GOOGLE_CLOUD_PROJECT', 'GCLOUD_PROJECT', 'CLOUDSDK_CORE_PROJECT')
|
2574
2559
|
__props__.__dict__["project"] = project
|
@@ -3226,11 +3211,6 @@ class Provider(pulumi.ProviderResource):
|
|
3226
3211
|
def privateca_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
3227
3212
|
return pulumi.get(self, "privateca_custom_endpoint")
|
3228
3213
|
|
3229
|
-
@property
|
3230
|
-
@pulumi.getter(name="privilegedAccessManagerCustomEndpoint")
|
3231
|
-
def privileged_access_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
3232
|
-
return pulumi.get(self, "privileged_access_manager_custom_endpoint")
|
3233
|
-
|
3234
3214
|
@property
|
3235
3215
|
@pulumi.getter
|
3236
3216
|
def project(self) -> pulumi.Output[Optional[str]]:
|
pulumi_gcp/redis/cluster.py
CHANGED
@@ -22,7 +22,6 @@ class ClusterArgs:
|
|
22
22
|
name: Optional[pulumi.Input[str]] = None,
|
23
23
|
node_type: Optional[pulumi.Input[str]] = None,
|
24
24
|
project: Optional[pulumi.Input[str]] = None,
|
25
|
-
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
25
|
region: Optional[pulumi.Input[str]] = None,
|
27
26
|
replica_count: Optional[pulumi.Input[int]] = None,
|
28
27
|
transit_encryption_mode: Optional[pulumi.Input[str]] = None):
|
@@ -40,9 +39,6 @@ class ClusterArgs:
|
|
40
39
|
projects/{projectId}/locations/{locationId}/clusters/{clusterId}
|
41
40
|
:param pulumi.Input[str] node_type: The nodeType for the Redis cluster. If not provided, REDIS_HIGHMEM_MEDIUM will be used as default Possible values:
|
42
41
|
["REDIS_SHARED_CORE_NANO", "REDIS_HIGHMEM_MEDIUM", "REDIS_HIGHMEM_XLARGE", "REDIS_STANDARD_SMALL"]
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] redis_configs: Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
44
|
-
documentation for the list of supported parameters:
|
45
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
46
42
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
47
43
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
48
44
|
:param pulumi.Input[str] transit_encryption_mode: Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
|
@@ -59,8 +55,6 @@ class ClusterArgs:
|
|
59
55
|
pulumi.set(__self__, "node_type", node_type)
|
60
56
|
if project is not None:
|
61
57
|
pulumi.set(__self__, "project", project)
|
62
|
-
if redis_configs is not None:
|
63
|
-
pulumi.set(__self__, "redis_configs", redis_configs)
|
64
58
|
if region is not None:
|
65
59
|
pulumi.set(__self__, "region", region)
|
66
60
|
if replica_count is not None:
|
@@ -144,20 +138,6 @@ class ClusterArgs:
|
|
144
138
|
def project(self, value: Optional[pulumi.Input[str]]):
|
145
139
|
pulumi.set(self, "project", value)
|
146
140
|
|
147
|
-
@property
|
148
|
-
@pulumi.getter(name="redisConfigs")
|
149
|
-
def redis_configs(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
150
|
-
"""
|
151
|
-
Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
152
|
-
documentation for the list of supported parameters:
|
153
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
154
|
-
"""
|
155
|
-
return pulumi.get(self, "redis_configs")
|
156
|
-
|
157
|
-
@redis_configs.setter
|
158
|
-
def redis_configs(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
159
|
-
pulumi.set(self, "redis_configs", value)
|
160
|
-
|
161
141
|
@property
|
162
142
|
@pulumi.getter
|
163
143
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -209,7 +189,6 @@ class _ClusterState:
|
|
209
189
|
project: Optional[pulumi.Input[str]] = None,
|
210
190
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]]] = None,
|
211
191
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]] = None,
|
212
|
-
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
213
192
|
region: Optional[pulumi.Input[str]] = None,
|
214
193
|
replica_count: Optional[pulumi.Input[int]] = None,
|
215
194
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -241,9 +220,6 @@ class _ClusterState:
|
|
241
220
|
Structure is documented below.
|
242
221
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]] psc_connections: Output only. PSC connections for discovery of the cluster topology and accessing the cluster.
|
243
222
|
Structure is documented below.
|
244
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] redis_configs: Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
245
|
-
documentation for the list of supported parameters:
|
246
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
247
223
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
248
224
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
249
225
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -274,8 +250,6 @@ class _ClusterState:
|
|
274
250
|
pulumi.set(__self__, "psc_configs", psc_configs)
|
275
251
|
if psc_connections is not None:
|
276
252
|
pulumi.set(__self__, "psc_connections", psc_connections)
|
277
|
-
if redis_configs is not None:
|
278
|
-
pulumi.set(__self__, "redis_configs", redis_configs)
|
279
253
|
if region is not None:
|
280
254
|
pulumi.set(__self__, "region", region)
|
281
255
|
if replica_count is not None:
|
@@ -411,20 +385,6 @@ class _ClusterState:
|
|
411
385
|
def psc_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]]):
|
412
386
|
pulumi.set(self, "psc_connections", value)
|
413
387
|
|
414
|
-
@property
|
415
|
-
@pulumi.getter(name="redisConfigs")
|
416
|
-
def redis_configs(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
417
|
-
"""
|
418
|
-
Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
419
|
-
documentation for the list of supported parameters:
|
420
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
421
|
-
"""
|
422
|
-
return pulumi.get(self, "redis_configs")
|
423
|
-
|
424
|
-
@redis_configs.setter
|
425
|
-
def redis_configs(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
426
|
-
pulumi.set(self, "redis_configs", value)
|
427
|
-
|
428
388
|
@property
|
429
389
|
@pulumi.getter
|
430
390
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -535,7 +495,6 @@ class Cluster(pulumi.CustomResource):
|
|
535
495
|
node_type: Optional[pulumi.Input[str]] = None,
|
536
496
|
project: Optional[pulumi.Input[str]] = None,
|
537
497
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
538
|
-
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
539
498
|
region: Optional[pulumi.Input[str]] = None,
|
540
499
|
replica_count: Optional[pulumi.Input[int]] = None,
|
541
500
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -571,10 +530,7 @@ class Cluster(pulumi.CustomResource):
|
|
571
530
|
replica_count=1,
|
572
531
|
node_type="REDIS_SHARED_CORE_NANO",
|
573
532
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
574
|
-
authorization_mode="AUTH_MODE_DISABLED"
|
575
|
-
redis_configs={
|
576
|
-
"maxmemory-policy": "volatile-ttl",
|
577
|
-
})
|
533
|
+
authorization_mode="AUTH_MODE_DISABLED")
|
578
534
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
579
535
|
name="mysubnet",
|
580
536
|
ip_cidr_range="10.0.0.248/29",
|
@@ -634,9 +590,6 @@ class Cluster(pulumi.CustomResource):
|
|
634
590
|
network addresses will be designated to the cluster for client access.
|
635
591
|
Currently, only one PscConfig is supported.
|
636
592
|
Structure is documented below.
|
637
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] redis_configs: Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
638
|
-
documentation for the list of supported parameters:
|
639
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
640
593
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
641
594
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
642
595
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -680,10 +633,7 @@ class Cluster(pulumi.CustomResource):
|
|
680
633
|
replica_count=1,
|
681
634
|
node_type="REDIS_SHARED_CORE_NANO",
|
682
635
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
683
|
-
authorization_mode="AUTH_MODE_DISABLED"
|
684
|
-
redis_configs={
|
685
|
-
"maxmemory-policy": "volatile-ttl",
|
686
|
-
})
|
636
|
+
authorization_mode="AUTH_MODE_DISABLED")
|
687
637
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
688
638
|
name="mysubnet",
|
689
639
|
ip_cidr_range="10.0.0.248/29",
|
@@ -750,7 +700,6 @@ class Cluster(pulumi.CustomResource):
|
|
750
700
|
node_type: Optional[pulumi.Input[str]] = None,
|
751
701
|
project: Optional[pulumi.Input[str]] = None,
|
752
702
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
753
|
-
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
754
703
|
region: Optional[pulumi.Input[str]] = None,
|
755
704
|
replica_count: Optional[pulumi.Input[int]] = None,
|
756
705
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -771,7 +720,6 @@ class Cluster(pulumi.CustomResource):
|
|
771
720
|
if psc_configs is None and not opts.urn:
|
772
721
|
raise TypeError("Missing required property 'psc_configs'")
|
773
722
|
__props__.__dict__["psc_configs"] = psc_configs
|
774
|
-
__props__.__dict__["redis_configs"] = redis_configs
|
775
723
|
__props__.__dict__["region"] = region
|
776
724
|
__props__.__dict__["replica_count"] = replica_count
|
777
725
|
if shard_count is None and not opts.urn:
|
@@ -805,7 +753,6 @@ class Cluster(pulumi.CustomResource):
|
|
805
753
|
project: Optional[pulumi.Input[str]] = None,
|
806
754
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
807
755
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConnectionArgs']]]]] = None,
|
808
|
-
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
809
756
|
region: Optional[pulumi.Input[str]] = None,
|
810
757
|
replica_count: Optional[pulumi.Input[int]] = None,
|
811
758
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -842,9 +789,6 @@ class Cluster(pulumi.CustomResource):
|
|
842
789
|
Structure is documented below.
|
843
790
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConnectionArgs']]]] psc_connections: Output only. PSC connections for discovery of the cluster topology and accessing the cluster.
|
844
791
|
Structure is documented below.
|
845
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] redis_configs: Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
846
|
-
documentation for the list of supported parameters:
|
847
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
848
792
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
849
793
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
850
794
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -870,7 +814,6 @@ class Cluster(pulumi.CustomResource):
|
|
870
814
|
__props__.__dict__["project"] = project
|
871
815
|
__props__.__dict__["psc_configs"] = psc_configs
|
872
816
|
__props__.__dict__["psc_connections"] = psc_connections
|
873
|
-
__props__.__dict__["redis_configs"] = redis_configs
|
874
817
|
__props__.__dict__["region"] = region
|
875
818
|
__props__.__dict__["replica_count"] = replica_count
|
876
819
|
__props__.__dict__["shard_count"] = shard_count
|
@@ -963,16 +906,6 @@ class Cluster(pulumi.CustomResource):
|
|
963
906
|
"""
|
964
907
|
return pulumi.get(self, "psc_connections")
|
965
908
|
|
966
|
-
@property
|
967
|
-
@pulumi.getter(name="redisConfigs")
|
968
|
-
def redis_configs(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
969
|
-
"""
|
970
|
-
Configure Redis Cluster behavior using a subset of native Redis configuration parameters. Please check Memorystore
|
971
|
-
documentation for the list of supported parameters:
|
972
|
-
https://cloud.google.com/memorystore/docs/cluster/supported-instance-configurations
|
973
|
-
"""
|
974
|
-
return pulumi.get(self, "redis_configs")
|
975
|
-
|
976
909
|
@property
|
977
910
|
@pulumi.getter
|
978
911
|
def region(self) -> pulumi.Output[str]:
|
pulumi_gcp/storage/__init__.py
CHANGED
@@ -19,7 +19,6 @@ from .get_bucket_iam_policy import *
|
|
19
19
|
from .get_bucket_object import *
|
20
20
|
from .get_bucket_object_content import *
|
21
21
|
from .get_bucket_objects import *
|
22
|
-
from .get_buckets import *
|
23
22
|
from .get_object_signed_url import *
|
24
23
|
from .get_project_service_account import *
|
25
24
|
from .get_transfer_project_service_account import *
|
pulumi_gcp/storage/outputs.py
CHANGED
@@ -72,7 +72,6 @@ __all__ = [
|
|
72
72
|
'GetBucketSoftDeletePolicyResult',
|
73
73
|
'GetBucketVersioningResult',
|
74
74
|
'GetBucketWebsiteResult',
|
75
|
-
'GetBucketsBucketResult',
|
76
75
|
]
|
77
76
|
|
78
77
|
@pulumi.output_type
|
@@ -3224,65 +3223,3 @@ class GetBucketWebsiteResult(dict):
|
|
3224
3223
|
return pulumi.get(self, "not_found_page")
|
3225
3224
|
|
3226
3225
|
|
3227
|
-
@pulumi.output_type
|
3228
|
-
class GetBucketsBucketResult(dict):
|
3229
|
-
def __init__(__self__, *,
|
3230
|
-
labels: Mapping[str, str],
|
3231
|
-
location: str,
|
3232
|
-
name: str,
|
3233
|
-
self_link: str,
|
3234
|
-
storage_class: str):
|
3235
|
-
"""
|
3236
|
-
:param Mapping[str, str] labels: User-provided bucket labels, in key/value pairs.
|
3237
|
-
:param str location: The location of the bucket.
|
3238
|
-
:param str name: The name of the bucket.
|
3239
|
-
:param str self_link: A url reference to the bucket.
|
3240
|
-
:param str storage_class: The [StorageClass](https://cloud.google.com/storage/docs/storage-classes) of the bucket.
|
3241
|
-
"""
|
3242
|
-
pulumi.set(__self__, "labels", labels)
|
3243
|
-
pulumi.set(__self__, "location", location)
|
3244
|
-
pulumi.set(__self__, "name", name)
|
3245
|
-
pulumi.set(__self__, "self_link", self_link)
|
3246
|
-
pulumi.set(__self__, "storage_class", storage_class)
|
3247
|
-
|
3248
|
-
@property
|
3249
|
-
@pulumi.getter
|
3250
|
-
def labels(self) -> Mapping[str, str]:
|
3251
|
-
"""
|
3252
|
-
User-provided bucket labels, in key/value pairs.
|
3253
|
-
"""
|
3254
|
-
return pulumi.get(self, "labels")
|
3255
|
-
|
3256
|
-
@property
|
3257
|
-
@pulumi.getter
|
3258
|
-
def location(self) -> str:
|
3259
|
-
"""
|
3260
|
-
The location of the bucket.
|
3261
|
-
"""
|
3262
|
-
return pulumi.get(self, "location")
|
3263
|
-
|
3264
|
-
@property
|
3265
|
-
@pulumi.getter
|
3266
|
-
def name(self) -> str:
|
3267
|
-
"""
|
3268
|
-
The name of the bucket.
|
3269
|
-
"""
|
3270
|
-
return pulumi.get(self, "name")
|
3271
|
-
|
3272
|
-
@property
|
3273
|
-
@pulumi.getter(name="selfLink")
|
3274
|
-
def self_link(self) -> str:
|
3275
|
-
"""
|
3276
|
-
A url reference to the bucket.
|
3277
|
-
"""
|
3278
|
-
return pulumi.get(self, "self_link")
|
3279
|
-
|
3280
|
-
@property
|
3281
|
-
@pulumi.getter(name="storageClass")
|
3282
|
-
def storage_class(self) -> str:
|
3283
|
-
"""
|
3284
|
-
The [StorageClass](https://cloud.google.com/storage/docs/storage-classes) of the bucket.
|
3285
|
-
"""
|
3286
|
-
return pulumi.get(self, "storage_class")
|
3287
|
-
|
3288
|
-
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=aPao9M3MAJSRCIM3xchK7i6LCAddewa4kDEwUuYXqWc,187068
|
2
2
|
pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
|
3
3
|
pulumi_gcp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
-
pulumi_gcp/provider.py,sha256=
|
4
|
+
pulumi_gcp/provider.py,sha256=6I6FMsy5YZ9Z6BNnHm4hxN8wZJX6yz4HMrEuySrfeDg,185574
|
5
5
|
pulumi_gcp/pulumi-plugin.json,sha256=hqqvCNOjkQUnsCresqHpje3VJwwA09jwaivXfqGtCDg,40
|
6
6
|
pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
|
@@ -34,13 +34,13 @@ pulumi_gcp/activedirectory/domain.py,sha256=5sjdMNDYLsKSdRE_M0xu8U1C8OjfUt4KxSB9
|
|
34
34
|
pulumi_gcp/activedirectory/domain_trust.py,sha256=OOnC62uvErLwTmbyspmIcis3ZS3-uUqBWuPe9ijnYuE,30058
|
35
35
|
pulumi_gcp/activedirectory/peering.py,sha256=qY5n3usHKzppLo1b95KkTiBK-qFSJ2mBlDUqNcguZo8,29364
|
36
36
|
pulumi_gcp/alloydb/__init__.py,sha256=RdYPS9a0WxII51GxWIAndFO9sAYVghO8mRQymYi35UM,476
|
37
|
-
pulumi_gcp/alloydb/_inputs.py,sha256=
|
37
|
+
pulumi_gcp/alloydb/_inputs.py,sha256=7BVAWy1KOdMJoi_-0II9BydjRhcBBmcHemNaiTlHk6w,54409
|
38
38
|
pulumi_gcp/alloydb/backup.py,sha256=7i9-jypwFYTqMesrTQDstqGtn90aeJneYPjt2ah-wHc,64705
|
39
|
-
pulumi_gcp/alloydb/cluster.py,sha256=
|
39
|
+
pulumi_gcp/alloydb/cluster.py,sha256=0w8ZPcwRPgF84C86rMHjqfQyWlvYE_r41bGiVwxhcOc,101239
|
40
40
|
pulumi_gcp/alloydb/get_locations.py,sha256=fUhzBPFCEeaFkrmZ9-QGlY0krDQHWB-k3iyaux6p1p4,3658
|
41
41
|
pulumi_gcp/alloydb/get_supported_database_flags.py,sha256=SMH2Hl5vYDZBbH7_ZOIZkn_M-3zntdeG9nwOpy0o3sc,4802
|
42
42
|
pulumi_gcp/alloydb/instance.py,sha256=ZbzSDnMPxt-bWeD1ChZNWyqqiUY2MY7bEdJBW7x6zh4,73031
|
43
|
-
pulumi_gcp/alloydb/outputs.py,sha256=
|
43
|
+
pulumi_gcp/alloydb/outputs.py,sha256=5BoQ80hAFnvY8M2G30Ob5pPZ_nzi1p7HXe12v90mfXc,70437
|
44
44
|
pulumi_gcp/alloydb/user.py,sha256=6KrYTsMJEYsHNmUzdi005y_zYXMSrLfx-ukt_p4-6jo,23645
|
45
45
|
pulumi_gcp/apigateway/__init__.py,sha256=IQVCF8c98QUZ78PG1Qk8q13MVH9eQ0314cGxvy642Bk,801
|
46
46
|
pulumi_gcp/apigateway/_inputs.py,sha256=p4bk2mql-sZPIsiZBYB4QK9CAWEr09HWPiRt58XKcJo,18414
|
@@ -110,8 +110,8 @@ pulumi_gcp/apphub/service_project_attachment.py,sha256=X6geUZPBGFtJYcE-43bHU0wPh
|
|
110
110
|
pulumi_gcp/apphub/workload.py,sha256=z3SBxvHeetZWajix2mRXUSdeN8nXAAynfCP7XxW5Sk0,53260
|
111
111
|
pulumi_gcp/applicationintegration/__init__.py,sha256=KDCzpcN3yObILwX2b1lgCPUkee4cmhTjc_wsgNoLGD8,363
|
112
112
|
pulumi_gcp/applicationintegration/_inputs.py,sha256=P_XO0DP4IJmvq9SJiSr6npDKhRZmMUUA7OF-wcugA-Y,40508
|
113
|
-
pulumi_gcp/applicationintegration/auth_config.py,sha256=
|
114
|
-
pulumi_gcp/applicationintegration/client.py,sha256=
|
113
|
+
pulumi_gcp/applicationintegration/auth_config.py,sha256=2SCJsw6d0zlZ5bfvaux-h8JykMCdRFSLXaOk3n9xw-E,47764
|
114
|
+
pulumi_gcp/applicationintegration/client.py,sha256=63hxK0zBZEQTNENMTNgmGQtDuUhy-9LEJgHkOvluNo8,23666
|
115
115
|
pulumi_gcp/applicationintegration/outputs.py,sha256=0d0VW7p8cm1TbjTquJDjGjHE4gdnZPiyj0fvvu8wy44,40906
|
116
116
|
pulumi_gcp/artifactregistry/__init__.py,sha256=23W9EF8nOJfmk0n2SszUDCj8BE-0yYb_ozXI5ZqTVAA,551
|
117
117
|
pulumi_gcp/artifactregistry/_inputs.py,sha256=xVwCabZE5j_xO-bm_B3WnqspP7miw7Vq0QEQrU7Dg7U,47941
|
@@ -157,7 +157,7 @@ pulumi_gcp/bigquery/connection_iam_binding.py,sha256=oP22gzPb40UlwnEZPBqut8TI3bf
|
|
157
157
|
pulumi_gcp/bigquery/connection_iam_member.py,sha256=cIS9YPUe4F7X6JVeYBMlSvmtXDg9edDYAhReDz-_YZY,43425
|
158
158
|
pulumi_gcp/bigquery/connection_iam_policy.py,sha256=HREVzxdEQQ3_BWPHXqYULEf9P16jOdniEDJjLr9VeJY,30194
|
159
159
|
pulumi_gcp/bigquery/data_transfer_config.py,sha256=q_NL4T2EpgWdmee_YE4fFAMpXXiRXSMx1r8ap_pGOf8,59750
|
160
|
-
pulumi_gcp/bigquery/dataset.py,sha256=
|
160
|
+
pulumi_gcp/bigquery/dataset.py,sha256=07YjXky3xVlgTBLE1xXjDg7RuDyORjggy8lL3ECJ3LA,93461
|
161
161
|
pulumi_gcp/bigquery/dataset_access.py,sha256=UaDlpZ9gB9BuVdtKhzfund9AO4GYMZcXQCNOxoOJ1aU,47183
|
162
162
|
pulumi_gcp/bigquery/dataset_iam_binding.py,sha256=hplH1HMmja8v84fQVxJMttf2IGsBY_c4PpRLlghXJ4I,34878
|
163
163
|
pulumi_gcp/bigquery/dataset_iam_member.py,sha256=9-jzlcXWEklaCaQU8Rl4IMOtbmTTS69LPKOWsb-Nm98,34490
|
@@ -170,7 +170,7 @@ pulumi_gcp/bigquery/get_table_iam_policy.py,sha256=VcFAThxG0E6kJUgfBEPIUb30gsBKf
|
|
170
170
|
pulumi_gcp/bigquery/iam_binding.py,sha256=vVAK57NEd1_NoP_wpbAF-acVqQHEip08wPVEBUqxTI0,47581
|
171
171
|
pulumi_gcp/bigquery/iam_member.py,sha256=2t0_BijZCROsTyF3smRuW5GAsmxOK3AomxZTmEGx1x8,47181
|
172
172
|
pulumi_gcp/bigquery/iam_policy.py,sha256=s9nL8X2ajOSzV-s7u-5r-Vfu01EpRc13uGDaPXNeors,32762
|
173
|
-
pulumi_gcp/bigquery/job.py,sha256=
|
173
|
+
pulumi_gcp/bigquery/job.py,sha256=IeVceZvf6q3SO0LWBTDcjwZHutT0ElXrQ9oNzf28PwE,60088
|
174
174
|
pulumi_gcp/bigquery/outputs.py,sha256=U_05wUlpxtghAXKPVWBnCx1RV9rLuA-kfQif6DybMt8,260035
|
175
175
|
pulumi_gcp/bigquery/reservation.py,sha256=vK3Mhtjfm5bESj2NmTNPJshu9M7a4JZmTnfMoEo3jF8,33777
|
176
176
|
pulumi_gcp/bigquery/reservation_assignment.py,sha256=lTZU6jaYH8DqpofuM3BNAuJfQxDuxg1gIKSJo4TJMFQ,19799
|
@@ -357,12 +357,12 @@ pulumi_gcp/cloudrunv2/get_job.py,sha256=dIG9RjB-cxHfLPMcZ4pPxLjBUoh7tEHKhEO5JdEU
|
|
357
357
|
pulumi_gcp/cloudrunv2/get_job_iam_policy.py,sha256=9qEx--9CBptFyGfMFwnpkw4A846oFBxU7vmn_q1fFPo,6015
|
358
358
|
pulumi_gcp/cloudrunv2/get_service.py,sha256=GCjZcobSlUUgh8dKIpu1mfwscqjU4IE359f98kIV3ys,19477
|
359
359
|
pulumi_gcp/cloudrunv2/get_service_iam_policy.py,sha256=7V0shO0Ib083eqPFUhRnDzYOg2Na9R6rTnw3Xr01mGo,6139
|
360
|
-
pulumi_gcp/cloudrunv2/job.py,sha256=
|
360
|
+
pulumi_gcp/cloudrunv2/job.py,sha256=7LswzNYRzfH22AGHcXqaML5VBR1plXxSoMR62WxGtAM,92590
|
361
361
|
pulumi_gcp/cloudrunv2/job_iam_binding.py,sha256=0jbRulYQPSfsBJ0FzgTVvNy-PJOOFAToVk4V_C0B7rQ,38556
|
362
362
|
pulumi_gcp/cloudrunv2/job_iam_member.py,sha256=epOQ_cF8M7D23HxKbuZzj2KMOIC6leY52GeGNABghZg,38160
|
363
363
|
pulumi_gcp/cloudrunv2/job_iam_policy.py,sha256=AkHC8aiYnGXx3VbyMsHtmkisHXux6_7vYPP41Hls1js,25034
|
364
364
|
pulumi_gcp/cloudrunv2/outputs.py,sha256=RIfoTAtklYiVyGJMmHIWVa-Q7ZPCk-ewCoYdWerb3lE,316337
|
365
|
-
pulumi_gcp/cloudrunv2/service.py,sha256=
|
365
|
+
pulumi_gcp/cloudrunv2/service.py,sha256=_cJu2tXz9f5dmOmBxLZnxHZboAxGhw_YpyoFwMhyb8c,123796
|
366
366
|
pulumi_gcp/cloudrunv2/service_iam_binding.py,sha256=smy6fI9J_CM5ESJeLKQNDxyrO5oTC3-q8s1hXb_uXN4,39052
|
367
367
|
pulumi_gcp/cloudrunv2/service_iam_member.py,sha256=6RDVuxD7nNDnZlmIkKGWiPLB8yrR0iwJZECj6zNPVc4,38656
|
368
368
|
pulumi_gcp/cloudrunv2/service_iam_policy.py,sha256=ug0xkAE7emol2isiO_Kyu1r8q9XjFpaMN8JjQqUWENU,25462
|
@@ -386,7 +386,7 @@ pulumi_gcp/composer/get_image_versions.py,sha256=INMRwQiuCMb_B9CxdnvOCDz1Q47P2HW
|
|
386
386
|
pulumi_gcp/composer/outputs.py,sha256=IozJ_7QofQoogKX8NTktyLlfqppWqZ2aFmuodre1UAM,176480
|
387
387
|
pulumi_gcp/composer/user_workloads_secret.py,sha256=Lxw9rZ7eN5p7-FBJpygfVs457o7Yost_YxQe9TVBUog,17268
|
388
388
|
pulumi_gcp/compute/__init__.py,sha256=U8KHJyoaKEnTdgV8xAk4a2fAUf6Ol0FYGtLLDyPq9ig,7270
|
389
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
389
|
+
pulumi_gcp/compute/_inputs.py,sha256=Vy0_3yA_vnJxF5IhdPZW9WajHwPkN1PEkh7R77I_45k,1805570
|
390
390
|
pulumi_gcp/compute/address.py,sha256=4Q5PUz8nqxdNGb1OB33droaQLvyROO2wkfCnRc-GgrA,69609
|
391
391
|
pulumi_gcp/compute/attached_disk.py,sha256=lwmvfIaNwCrdHeO6mlDOV10k7BwsFdAV-1nKGscMwy0,28091
|
392
392
|
pulumi_gcp/compute/autoscaler.py,sha256=aR3dVzwCvtrHmu2ZDuIdLt3C5Wud3DmY2DTknRPFHgM,33140
|
@@ -513,7 +513,7 @@ pulumi_gcp/compute/node_template.py,sha256=VIZ_KQhSms9qfQbXptNyyO3aE5BkDFutEF2pS
|
|
513
513
|
pulumi_gcp/compute/organization_security_policy.py,sha256=WnK0cQq-YFe7S-QFwbyH9turB3SnFOjeVxpL2Cx7Hlw,19124
|
514
514
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=SDW0jUsqx77VAUmO36GMwtGVdVdGq3VB_Ea6UNdv-hY,16575
|
515
515
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=T1jCY7e6zDtF0fOVdTIGUqA0UjXrXWP2xuqHC1PrT4A,35414
|
516
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
516
|
+
pulumi_gcp/compute/outputs.py,sha256=5MowrbHqCo2lKl7JSS3OQRcF_OHe_ugPrXfIVbneVbs,2232000
|
517
517
|
pulumi_gcp/compute/packet_mirroring.py,sha256=KpHug1OqS-bUu8jIudCZ4pyEGC10mAnaIJtka_Q9CdQ,34897
|
518
518
|
pulumi_gcp/compute/per_instance_config.py,sha256=3047DIbni35ArkAXvim-HvjKJln_1mzyIAXOMyNjgnU,38507
|
519
519
|
pulumi_gcp/compute/project_default_network_tier.py,sha256=OuSb7cbTTKj2Iy111b33AtdbGEFDd8n2sDBz0w5C--I,11101
|
@@ -555,7 +555,7 @@ pulumi_gcp/compute/route.py,sha256=IW4rx6ZeexZA4J2bcMGcYlc9frYxzZ-YWGLtnDmRnV0,6
|
|
555
555
|
pulumi_gcp/compute/router.py,sha256=R2Ajo6YvHB18n-nC-dC2FqWXpJXHY6mEAQiI1DccjzU,28553
|
556
556
|
pulumi_gcp/compute/router_interface.py,sha256=KDAUW-7RZKuXxDR1BXg_9k5HdCqTOpCBpifqv_ysfWU,39949
|
557
557
|
pulumi_gcp/compute/router_nat.py,sha256=IKQ8J0hHnSKYDgjGXa5wFmwd3VORdknV0zP_UvOtduU,89916
|
558
|
-
pulumi_gcp/compute/router_peer.py,sha256=
|
558
|
+
pulumi_gcp/compute/router_peer.py,sha256=U5fU97HOky6j4D822EIE6fpSeOEPCdhGWZs87adoIuQ,85866
|
559
559
|
pulumi_gcp/compute/router_status.py,sha256=0FbcA7IB7xfqtY2vEfqO8Lg4zpZB6Cp7aYTD9f8ACD0,7485
|
560
560
|
pulumi_gcp/compute/security_policy.py,sha256=2DV5carEZnTcca7ZGjh2MH6MPIvH9Qs0jS8HHMXCrdw,44082
|
561
561
|
pulumi_gcp/compute/security_policy_rule.py,sha256=lWA-bAtEtzTzDQ16Babq4XdctdUXHZy2GaJ5kCUbo5g,42353
|
@@ -584,11 +584,11 @@ pulumi_gcp/compute/url_map.py,sha256=Xz5FZP-m68bjUpmCxURWs3zl5yYp4PuFtdkeQkepBPY
|
|
584
584
|
pulumi_gcp/compute/vpn_gateway.py,sha256=hDlrIR3WJTzrFeBkB1zVjlaJVHdXo8hfwcSsJazd8CQ,25692
|
585
585
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=qT-Di6fr2z-9RVB7g2yFwaedKZuBQoHktdVxMVSgv5U,70514
|
586
586
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
587
|
-
pulumi_gcp/config/__init__.pyi,sha256=
|
587
|
+
pulumi_gcp/config/__init__.pyi,sha256=vuNp5RlZfHazG0EROdtEyd86akuDP3LkiZwbXXYKhv4,7395
|
588
588
|
pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
|
589
|
-
pulumi_gcp/config/vars.py,sha256=
|
589
|
+
pulumi_gcp/config/vars.py,sha256=eIcwllOVVdCUzKfMq4j0pj0Qr_y_S7UfDjtnrKDZFD0,23427
|
590
590
|
pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
|
591
|
-
pulumi_gcp/container/_inputs.py,sha256=
|
591
|
+
pulumi_gcp/container/_inputs.py,sha256=vHgNWaPppe8OZsJNIDG0TAGm5AXfM8EjJuKoqQro5Jo,608990
|
592
592
|
pulumi_gcp/container/attached_cluster.py,sha256=e1fsTpAkFAo7gUZIrUb5qQSpYyLQocld1Ree5qxJBuk,70840
|
593
593
|
pulumi_gcp/container/aws_cluster.py,sha256=yWJcTBm6vEc0wAB8d1pbq_-jtYIlrF0_Jm89cxb7Np4,71042
|
594
594
|
pulumi_gcp/container/aws_node_pool.py,sha256=r9qLIusTAcjDrK4glafTTsCycwG0O2W-TG-uvMyoV4s,80849
|
@@ -605,7 +605,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=mTgdiSsdq7VpWmqwKBfTw0pd2GYVZ
|
|
605
605
|
pulumi_gcp/container/get_registry_image.py,sha256=BK2v8NjiPMfRdXiuhJauP4H0otPr9xYzZJmDJNyidtQ,6992
|
606
606
|
pulumi_gcp/container/get_registry_repository.py,sha256=8j5cl1J9lQtItliF6Cjayatzqclp7-9PDwEX1bo8-uM,5353
|
607
607
|
pulumi_gcp/container/node_pool.py,sha256=C_lZMLL1rRGIQO4tKamhh8pLq6ZR9ih-FvxkjG3mUig,73692
|
608
|
-
pulumi_gcp/container/outputs.py,sha256=
|
608
|
+
pulumi_gcp/container/outputs.py,sha256=irhN5FiH88ec8LUdsW-bCK0pq2a-k1qtjJlhq_Oxb-4,828836
|
609
609
|
pulumi_gcp/container/registry.py,sha256=UoKQZ7gwQI6GyL9amL5yxt9g0PIep9qky5Kodd8Z8X0,13113
|
610
610
|
pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
|
611
611
|
pulumi_gcp/containeranalysis/_inputs.py,sha256=1yTLGmL7agpwp0maJz0rEzueNmb9QOpSEcdah1zfBus,12213
|
@@ -648,8 +648,8 @@ pulumi_gcp/datacatalog/taxonomy_iam_member.py,sha256=uD6b8XRc165KGf0-ucxoOXiYavd
|
|
648
648
|
pulumi_gcp/datacatalog/taxonomy_iam_policy.py,sha256=P2DRij67Onh2xWVvXQSdmIXdjTx0FTsOYXtErzB1yic,23886
|
649
649
|
pulumi_gcp/dataflow/__init__.py,sha256=qS8pqb0y81sac2hdiA-ho_6vCzHWikL_04SBITos24I,390
|
650
650
|
pulumi_gcp/dataflow/_inputs.py,sha256=9iNp5uv7PEvSYaUjJ-N6fzn1HH-z16_hD2kzuy5r10Y,55942
|
651
|
-
pulumi_gcp/dataflow/flex_template_job.py,sha256=
|
652
|
-
pulumi_gcp/dataflow/job.py,sha256=
|
651
|
+
pulumi_gcp/dataflow/flex_template_job.py,sha256=tQHubXHiTMaEvHVuBQvnD0FSvqC2ka26ym50og6cC3s,80514
|
652
|
+
pulumi_gcp/dataflow/job.py,sha256=Cm4pctA-0YK4TY_Hh0K2_NuruYC58YszX08tJxudZWI,74291
|
653
653
|
pulumi_gcp/dataflow/outputs.py,sha256=DVSc_fgMZ5AAIU4BrrksgcIcTFpV3o0dFeE22BaQo_I,52474
|
654
654
|
pulumi_gcp/dataflow/pipeline.py,sha256=MvW7bEkaY9hZuGw4nr-VW7nBofyPCN6Y47vhx-8iM5g,53536
|
655
655
|
pulumi_gcp/dataform/__init__.py,sha256=QlLR9uAkPukJBNrELJVXvQGYJrPffZZfwB5w_I0GnJU,576
|
@@ -813,7 +813,7 @@ pulumi_gcp/essentialcontacts/_inputs.py,sha256=IfhJxhkScqlhG8ONGhAD9SYYQESNUf15b
|
|
813
813
|
pulumi_gcp/essentialcontacts/contact.py,sha256=EO1sdY1_0gcPVUuMCM36WkTCQE8eyHe7srnjsbI5J1c,18532
|
814
814
|
pulumi_gcp/essentialcontacts/document_ai_processor.py,sha256=XgyGM3SDkGGxYNa3ET9LkZGX1ERw6yi7y1LJbIBIU94,19755
|
815
815
|
pulumi_gcp/essentialcontacts/document_ai_processor_default_version.py,sha256=S-pUJ1THvV6U0LXF1RJqZ0QLp_6qm9sT3MupwJ2s3y0,11371
|
816
|
-
pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py,sha256=
|
816
|
+
pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py,sha256=akdCxkva6mm_FAidzBa4T_Lb__qcBfXhSLX2v1J4X50,46780
|
817
817
|
pulumi_gcp/essentialcontacts/document_ai_warehouse_location.py,sha256=d76TVgzkxrDQD1LUDv8dzQryoePC5WQIENEeJkT77iU,23686
|
818
818
|
pulumi_gcp/essentialcontacts/outputs.py,sha256=s8qAkBJztcLlBNbokDY_MolEnAyrD2HgCeL6Ycc1ahk,39048
|
819
819
|
pulumi_gcp/eventarc/__init__.py,sha256=RvqhNf1i9c9eRJpcF6S1JUehv5uPrkFHKTQSqCdVGCk,397
|
@@ -861,7 +861,7 @@ pulumi_gcp/firebase/web_app.py,sha256=kMJfM5h7Wpr1Fcxyyq_GsWslLV8z4qrzD38sYXpXRy
|
|
861
861
|
pulumi_gcp/firebaserules/__init__.py,sha256=q2a9jWrQJ3dcW9mfz4oKXVCatjOzz-9j6QVpv8AftZU,360
|
862
862
|
pulumi_gcp/firebaserules/_inputs.py,sha256=FH-l1Vgtt5R-lVBMEPN2Hh6L9gVHjQ2Uo-8oquKYSo0,4530
|
863
863
|
pulumi_gcp/firebaserules/outputs.py,sha256=UEBs0kf-7rMmRT855ckom9BNjSq5bSvsIVUw-Cjay4Y,3442
|
864
|
-
pulumi_gcp/firebaserules/release.py,sha256=
|
864
|
+
pulumi_gcp/firebaserules/release.py,sha256=676CdKcOBmEPYjHDqdcUG2qvUnaeCXllxTXExPp7M_s,19584
|
865
865
|
pulumi_gcp/firebaserules/ruleset.py,sha256=b8Iq7dfBEgtKNYkrt0LxFmeQGXn2EaDqTali-8BK1yA,15232
|
866
866
|
pulumi_gcp/firestore/__init__.py,sha256=Wchkbc9GSPt9us5HelFU99PgiE-yVU5bzw3DQKtttgg,435
|
867
867
|
pulumi_gcp/firestore/_inputs.py,sha256=tPXfYJBcMqrN0t2Y1GW8bWTaSFcIMf3sr6pQ_IVdJkg,15862
|
@@ -1224,10 +1224,6 @@ pulumi_gcp/oslogin/__init__.py,sha256=thj8ibhcxN1o0V4KwdePIdIhj8gSqILiwFI_YUNPV2
|
|
1224
1224
|
pulumi_gcp/oslogin/ssh_public_key.py,sha256=D6ymjiIIAojFujuLxMO9b2LME8JZ-J1zyXoipMr9GKk,15078
|
1225
1225
|
pulumi_gcp/parallelstore/__init__.py,sha256=v3vMyw1cX_icjI-eRktYMatDKbs_HbdjtMa-9V7mzCE,293
|
1226
1226
|
pulumi_gcp/parallelstore/instance.py,sha256=KeQUMro6Pf4wPtacS8S-Y3h3qoGPr35oCoeGJlumdyo,53584
|
1227
|
-
pulumi_gcp/privilegedaccessmanager/__init__.py,sha256=GcsK-XKqvEgYKQrQsD044pO7s3GxLD7Gy6VmCGma1NA,341
|
1228
|
-
pulumi_gcp/privilegedaccessmanager/_inputs.py,sha256=_yWPBupVgufTaMqzW5FM5HEaUecllz7vv0nuEcb5jsU,20316
|
1229
|
-
pulumi_gcp/privilegedaccessmanager/entitlement.py,sha256=PxCTvxibc122WY1wCw16Bu3huzGuFtqHSrEYgg05tA8,48114
|
1230
|
-
pulumi_gcp/privilegedaccessmanager/outputs.py,sha256=13MffcNK83AfxaQmfZU-aWVO570Wr_dxleOu_zS7jto,21743
|
1231
1227
|
pulumi_gcp/projects/__init__.py,sha256=aOtO430jqofonG851ped1QS5IUhvZ1ZF3rgZOHRQi38,848
|
1232
1228
|
pulumi_gcp/projects/_inputs.py,sha256=BNIrSi7qLjI5yLKOC8QygDFtyrC3RRSJnp5vYiDxCAA,30598
|
1233
1229
|
pulumi_gcp/projects/access_approval_settings.py,sha256=DIvOKf6IOGPrGwqc9yuvWzshFk8ptOFQxvVCvldbdD4,36239
|
@@ -1277,7 +1273,7 @@ pulumi_gcp/recaptcha/enterprise_key.py,sha256=XXWvEpeKiUEFe4JtCyGMoGQLe0EYrnG7sB
|
|
1277
1273
|
pulumi_gcp/recaptcha/outputs.py,sha256=AT1LWIZuukUTv1KqEVxwP1Yida5pNglC0bVZE0wbhKo,13613
|
1278
1274
|
pulumi_gcp/redis/__init__.py,sha256=ZresoueauXpt2HsRh1dtHTWpomcgsL6Xr61T27YS-Ys,389
|
1279
1275
|
pulumi_gcp/redis/_inputs.py,sha256=nfOOKGgzIbnH8czLQnQnSYUrEx02ais1LInSe1Bgor8,34752
|
1280
|
-
pulumi_gcp/redis/cluster.py,sha256=
|
1276
|
+
pulumi_gcp/redis/cluster.py,sha256=w24Qqbu9Npyrwzmr4bDjolyeDwex76FS58gHGC4VUkk,46135
|
1281
1277
|
pulumi_gcp/redis/get_instance.py,sha256=Dtlg-nQrP-A02Cqtmlq4g225OD0hP2iPOvf3oKhraxo,19992
|
1282
1278
|
pulumi_gcp/redis/instance.py,sha256=2KMlUxO4ium7eSPSavLIj7S_sSATLOIvQEi8djVACYQ,115020
|
1283
1279
|
pulumi_gcp/redis/outputs.py,sha256=psZ-L8kvwUB0H37j_zv9-ys8ylc2mYB2_Jjd0QRBPP4,51450
|
@@ -1410,7 +1406,7 @@ pulumi_gcp/sql/outputs.py,sha256=A4MTas1y0LYvT1k2uSCpcnSm1NPBR0TfxeBmywMNFXU,222
|
|
1410
1406
|
pulumi_gcp/sql/source_representation_instance.py,sha256=-8ouZtYx4QW7dxuCa7rDZdVjAHZqkIxMOKJZkm_HAJQ,38408
|
1411
1407
|
pulumi_gcp/sql/ssl_cert.py,sha256=SCrcQHcs8hImL6hER3a-iZMcxjROlu4G4SW54_yfYQU,21868
|
1412
1408
|
pulumi_gcp/sql/user.py,sha256=kISJj7ARtyiIzweK9Q15nnbxecki1tr2UHprFG17DEc,35045
|
1413
|
-
pulumi_gcp/storage/__init__.py,sha256=
|
1409
|
+
pulumi_gcp/storage/__init__.py,sha256=rweb18Fm-Grz-mUtk4q0JWCaEVy9CAddwZyuUMAQEQQ,1177
|
1414
1410
|
pulumi_gcp/storage/_inputs.py,sha256=7LT1rYVp5JqeEzRpXcr16M-149eKJuVbV57yeprm2g4,115250
|
1415
1411
|
pulumi_gcp/storage/bucket.py,sha256=BOF_Hr3xOouiQ3NDXeJvIrYnWHqbbHrcyjdVZLCY0_k,83881
|
1416
1412
|
pulumi_gcp/storage/bucket_access_control.py,sha256=cVhJUnGjm4Ruhlcb74wBRULXIoD8C57GK5Bu8zmmnrw,19699
|
@@ -1426,7 +1422,6 @@ pulumi_gcp/storage/get_bucket_iam_policy.py,sha256=s6uFzQ87Z27SBE0-ZNazg1542LXID
|
|
1426
1422
|
pulumi_gcp/storage/get_bucket_object.py,sha256=40HlaeaDISvkbPYFdMdZZlDvY_m96_h37lNnBvcBA-I,15521
|
1427
1423
|
pulumi_gcp/storage/get_bucket_object_content.py,sha256=e8Rt71AIungtQL1Ylyb561uAjTWynZbrtGebAf2pIWA,14364
|
1428
1424
|
pulumi_gcp/storage/get_bucket_objects.py,sha256=_BW25EKsV4VsN9yr88YGWRsMoE0Pk82BunyYbiW2Apc,5661
|
1429
|
-
pulumi_gcp/storage/get_buckets.py,sha256=MORKnye-xSnKCYBmkP0zp7-q6sFGfH15w-sR26L5qKE,4519
|
1430
1425
|
pulumi_gcp/storage/get_object_signed_url.py,sha256=cy789AOFa5L5833bNueKganILIHU5bM65ljxeM7vb28,13719
|
1431
1426
|
pulumi_gcp/storage/get_project_service_account.py,sha256=OU0dV4OYHOkN8ld1o5wyF_11jLZDw_RT7YTX9xHcSFg,12755
|
1432
1427
|
pulumi_gcp/storage/get_transfer_project_service_account.py,sha256=Pf-7WU0B-s6a9p9NOwCTHyB7YC4uANznJDav8aATMJI,5078
|
@@ -1436,7 +1431,7 @@ pulumi_gcp/storage/insights_report_config.py,sha256=3fHsSrbJ3GSVp4gw2FdzY_T2IkVi
|
|
1436
1431
|
pulumi_gcp/storage/notification.py,sha256=IH73VXyi0_9aueV8-WYA5fmS8KWuStq-T_ap2wGgCGM,29840
|
1437
1432
|
pulumi_gcp/storage/object_access_control.py,sha256=y6Gwzz97vhN33qo8ex5xGNHzJiEeXELAnu60oduVqYQ,24075
|
1438
1433
|
pulumi_gcp/storage/object_acl.py,sha256=1mMyUHDm41LdhfEk0rv7HqO8pOty8mWvndffwWNXItU,16694
|
1439
|
-
pulumi_gcp/storage/outputs.py,sha256=
|
1434
|
+
pulumi_gcp/storage/outputs.py,sha256=l5ehJwgyQz5VZehUrf4aBF31ifkBOx_ZAPwZVkwiDXg,143062
|
1440
1435
|
pulumi_gcp/storage/transfer_agent_pool.py,sha256=gLGD5VqJ3btrqKPgQq_JpFSyfENJLssTttJkEI6PdsE,21431
|
1441
1436
|
pulumi_gcp/storage/transfer_job.py,sha256=Y4xmN-p4f0t3hL8d18JxyJkzoJe4YdAjtVogm3qTphg,41572
|
1442
1437
|
pulumi_gcp/tags/__init__.py,sha256=73ySnVD68pkwP5R7Mt1eWSGxBu_HYv7XHBbqLaGG3yU,829
|
@@ -1546,7 +1541,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KnqAQNX01bqynD7N
|
|
1546
1541
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ovQjU8TBCo9xjSArziSIyzV_HyIf0Ke4IaDLd4CnV2Q,35844
|
1547
1542
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=3zBaMJQnUB4QQygrFBk8HsuKtvQIwOPManWiphBVRCQ,35448
|
1548
1543
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=u5aW7Jd-oDY0SKcuAHn_O-sN7NIRvwS9Jz6slzHWlXo,22172
|
1549
|
-
pulumi_gcp-7.22.
|
1550
|
-
pulumi_gcp-7.22.
|
1551
|
-
pulumi_gcp-7.22.
|
1552
|
-
pulumi_gcp-7.22.
|
1544
|
+
pulumi_gcp-7.22.0a1715306721.dist-info/METADATA,sha256=SAvJj6NhX1sdNh90afNOck3BfJu7-qa0d8znReMSlXQ,2662
|
1545
|
+
pulumi_gcp-7.22.0a1715306721.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1546
|
+
pulumi_gcp-7.22.0a1715306721.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1547
|
+
pulumi_gcp-7.22.0a1715306721.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
from .. import _utilities
|
6
|
-
import typing
|
7
|
-
# Export this package's modules as members:
|
8
|
-
from .entitlement import *
|
9
|
-
from ._inputs import *
|
10
|
-
from . import outputs
|