pulumi-gcp 7.21.2__py3-none-any.whl → 7.22.0__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 +11 -0
- pulumi_gcp/alloydb/_inputs.py +139 -0
- pulumi_gcp/alloydb/cluster.py +54 -0
- pulumi_gcp/alloydb/outputs.py +145 -0
- pulumi_gcp/applicationintegration/auth_config.py +2 -6
- pulumi_gcp/applicationintegration/client.py +133 -18
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/bigquery/job.py +16 -20
- pulumi_gcp/cloudrunv2/job.py +2 -4
- pulumi_gcp/cloudrunv2/service.py +2 -4
- pulumi_gcp/compute/_inputs.py +4 -0
- pulumi_gcp/compute/outputs.py +4 -0
- pulumi_gcp/compute/router_peer.py +54 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +169 -0
- pulumi_gcp/container/outputs.py +272 -0
- pulumi_gcp/dataflow/flex_template_job.py +21 -21
- pulumi_gcp/dataflow/job.py +21 -7
- pulumi_gcp/essentialcontacts/document_ai_warehouse_document_schema.py +0 -528
- pulumi_gcp/firebaserules/release.py +2 -2
- pulumi_gcp/privilegedaccessmanager/__init__.py +10 -0
- pulumi_gcp/privilegedaccessmanager/_inputs.py +420 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +852 -0
- pulumi_gcp/privilegedaccessmanager/outputs.py +491 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/redis/cluster.py +69 -2
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/get_buckets.py +138 -0
- pulumi_gcp/storage/outputs.py +63 -0
- {pulumi_gcp-7.21.2.dist-info → pulumi_gcp-7.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.2.dist-info → pulumi_gcp-7.22.0.dist-info}/RECORD +34 -29
- {pulumi_gcp-7.21.2.dist-info → pulumi_gcp-7.22.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.2.dist-info → pulumi_gcp-7.22.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/cluster.py
CHANGED
@@ -22,6 +22,7 @@ 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,
|
25
26
|
region: Optional[pulumi.Input[str]] = None,
|
26
27
|
replica_count: Optional[pulumi.Input[int]] = None,
|
27
28
|
transit_encryption_mode: Optional[pulumi.Input[str]] = None):
|
@@ -39,6 +40,9 @@ class ClusterArgs:
|
|
39
40
|
projects/{projectId}/locations/{locationId}/clusters/{clusterId}
|
40
41
|
: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:
|
41
42
|
["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
|
42
46
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
43
47
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
44
48
|
: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.
|
@@ -55,6 +59,8 @@ class ClusterArgs:
|
|
55
59
|
pulumi.set(__self__, "node_type", node_type)
|
56
60
|
if project is not None:
|
57
61
|
pulumi.set(__self__, "project", project)
|
62
|
+
if redis_configs is not None:
|
63
|
+
pulumi.set(__self__, "redis_configs", redis_configs)
|
58
64
|
if region is not None:
|
59
65
|
pulumi.set(__self__, "region", region)
|
60
66
|
if replica_count is not None:
|
@@ -138,6 +144,20 @@ class ClusterArgs:
|
|
138
144
|
def project(self, value: Optional[pulumi.Input[str]]):
|
139
145
|
pulumi.set(self, "project", value)
|
140
146
|
|
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
|
+
|
141
161
|
@property
|
142
162
|
@pulumi.getter
|
143
163
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -189,6 +209,7 @@ class _ClusterState:
|
|
189
209
|
project: Optional[pulumi.Input[str]] = None,
|
190
210
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConfigArgs']]]] = None,
|
191
211
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]] = None,
|
212
|
+
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
192
213
|
region: Optional[pulumi.Input[str]] = None,
|
193
214
|
replica_count: Optional[pulumi.Input[int]] = None,
|
194
215
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -220,6 +241,9 @@ class _ClusterState:
|
|
220
241
|
Structure is documented below.
|
221
242
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]] psc_connections: Output only. PSC connections for discovery of the cluster topology and accessing the cluster.
|
222
243
|
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
|
223
247
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
224
248
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
225
249
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -250,6 +274,8 @@ class _ClusterState:
|
|
250
274
|
pulumi.set(__self__, "psc_configs", psc_configs)
|
251
275
|
if psc_connections is not None:
|
252
276
|
pulumi.set(__self__, "psc_connections", psc_connections)
|
277
|
+
if redis_configs is not None:
|
278
|
+
pulumi.set(__self__, "redis_configs", redis_configs)
|
253
279
|
if region is not None:
|
254
280
|
pulumi.set(__self__, "region", region)
|
255
281
|
if replica_count is not None:
|
@@ -385,6 +411,20 @@ class _ClusterState:
|
|
385
411
|
def psc_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterPscConnectionArgs']]]]):
|
386
412
|
pulumi.set(self, "psc_connections", value)
|
387
413
|
|
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
|
+
|
388
428
|
@property
|
389
429
|
@pulumi.getter
|
390
430
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -495,6 +535,7 @@ class Cluster(pulumi.CustomResource):
|
|
495
535
|
node_type: Optional[pulumi.Input[str]] = None,
|
496
536
|
project: Optional[pulumi.Input[str]] = None,
|
497
537
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
538
|
+
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
498
539
|
region: Optional[pulumi.Input[str]] = None,
|
499
540
|
replica_count: Optional[pulumi.Input[int]] = None,
|
500
541
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -530,7 +571,10 @@ class Cluster(pulumi.CustomResource):
|
|
530
571
|
replica_count=1,
|
531
572
|
node_type="REDIS_SHARED_CORE_NANO",
|
532
573
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
533
|
-
authorization_mode="AUTH_MODE_DISABLED"
|
574
|
+
authorization_mode="AUTH_MODE_DISABLED",
|
575
|
+
redis_configs={
|
576
|
+
"maxmemory-policy": "volatile-ttl",
|
577
|
+
})
|
534
578
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
535
579
|
name="mysubnet",
|
536
580
|
ip_cidr_range="10.0.0.248/29",
|
@@ -590,6 +634,9 @@ class Cluster(pulumi.CustomResource):
|
|
590
634
|
network addresses will be designated to the cluster for client access.
|
591
635
|
Currently, only one PscConfig is supported.
|
592
636
|
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
|
593
640
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
594
641
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
595
642
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -633,7 +680,10 @@ class Cluster(pulumi.CustomResource):
|
|
633
680
|
replica_count=1,
|
634
681
|
node_type="REDIS_SHARED_CORE_NANO",
|
635
682
|
transit_encryption_mode="TRANSIT_ENCRYPTION_MODE_DISABLED",
|
636
|
-
authorization_mode="AUTH_MODE_DISABLED"
|
683
|
+
authorization_mode="AUTH_MODE_DISABLED",
|
684
|
+
redis_configs={
|
685
|
+
"maxmemory-policy": "volatile-ttl",
|
686
|
+
})
|
637
687
|
producer_subnet = gcp.compute.Subnetwork("producer_subnet",
|
638
688
|
name="mysubnet",
|
639
689
|
ip_cidr_range="10.0.0.248/29",
|
@@ -700,6 +750,7 @@ class Cluster(pulumi.CustomResource):
|
|
700
750
|
node_type: Optional[pulumi.Input[str]] = None,
|
701
751
|
project: Optional[pulumi.Input[str]] = None,
|
702
752
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
753
|
+
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
703
754
|
region: Optional[pulumi.Input[str]] = None,
|
704
755
|
replica_count: Optional[pulumi.Input[int]] = None,
|
705
756
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -720,6 +771,7 @@ class Cluster(pulumi.CustomResource):
|
|
720
771
|
if psc_configs is None and not opts.urn:
|
721
772
|
raise TypeError("Missing required property 'psc_configs'")
|
722
773
|
__props__.__dict__["psc_configs"] = psc_configs
|
774
|
+
__props__.__dict__["redis_configs"] = redis_configs
|
723
775
|
__props__.__dict__["region"] = region
|
724
776
|
__props__.__dict__["replica_count"] = replica_count
|
725
777
|
if shard_count is None and not opts.urn:
|
@@ -753,6 +805,7 @@ class Cluster(pulumi.CustomResource):
|
|
753
805
|
project: Optional[pulumi.Input[str]] = None,
|
754
806
|
psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConfigArgs']]]]] = None,
|
755
807
|
psc_connections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClusterPscConnectionArgs']]]]] = None,
|
808
|
+
redis_configs: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
756
809
|
region: Optional[pulumi.Input[str]] = None,
|
757
810
|
replica_count: Optional[pulumi.Input[int]] = None,
|
758
811
|
shard_count: Optional[pulumi.Input[int]] = None,
|
@@ -789,6 +842,9 @@ class Cluster(pulumi.CustomResource):
|
|
789
842
|
Structure is documented below.
|
790
843
|
: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.
|
791
844
|
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
|
792
848
|
:param pulumi.Input[str] region: The name of the region of the Redis cluster.
|
793
849
|
:param pulumi.Input[int] replica_count: Optional. The number of replica nodes per shard.
|
794
850
|
:param pulumi.Input[int] shard_count: Required. Number of shards for the Redis cluster.
|
@@ -814,6 +870,7 @@ class Cluster(pulumi.CustomResource):
|
|
814
870
|
__props__.__dict__["project"] = project
|
815
871
|
__props__.__dict__["psc_configs"] = psc_configs
|
816
872
|
__props__.__dict__["psc_connections"] = psc_connections
|
873
|
+
__props__.__dict__["redis_configs"] = redis_configs
|
817
874
|
__props__.__dict__["region"] = region
|
818
875
|
__props__.__dict__["replica_count"] = replica_count
|
819
876
|
__props__.__dict__["shard_count"] = shard_count
|
@@ -906,6 +963,16 @@ class Cluster(pulumi.CustomResource):
|
|
906
963
|
"""
|
907
964
|
return pulumi.get(self, "psc_connections")
|
908
965
|
|
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
|
+
|
909
976
|
@property
|
910
977
|
@pulumi.getter
|
911
978
|
def region(self) -> pulumi.Output[str]:
|
pulumi_gcp/storage/__init__.py
CHANGED
@@ -19,6 +19,7 @@ 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 *
|
22
23
|
from .get_object_signed_url import *
|
23
24
|
from .get_project_service_account import *
|
24
25
|
from .get_transfer_project_service_account import *
|
@@ -0,0 +1,138 @@
|
|
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
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
from . import outputs
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
'GetBucketsResult',
|
15
|
+
'AwaitableGetBucketsResult',
|
16
|
+
'get_buckets',
|
17
|
+
'get_buckets_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetBucketsResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getBuckets.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, buckets=None, id=None, prefix=None, project=None):
|
26
|
+
if buckets and not isinstance(buckets, list):
|
27
|
+
raise TypeError("Expected argument 'buckets' to be a list")
|
28
|
+
pulumi.set(__self__, "buckets", buckets)
|
29
|
+
if id and not isinstance(id, str):
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
31
|
+
pulumi.set(__self__, "id", id)
|
32
|
+
if prefix and not isinstance(prefix, str):
|
33
|
+
raise TypeError("Expected argument 'prefix' to be a str")
|
34
|
+
pulumi.set(__self__, "prefix", prefix)
|
35
|
+
if project and not isinstance(project, str):
|
36
|
+
raise TypeError("Expected argument 'project' to be a str")
|
37
|
+
pulumi.set(__self__, "project", project)
|
38
|
+
|
39
|
+
@property
|
40
|
+
@pulumi.getter
|
41
|
+
def buckets(self) -> Sequence['outputs.GetBucketsBucketResult']:
|
42
|
+
"""
|
43
|
+
A list of all retrieved GCS buckets. Structure is defined below.
|
44
|
+
"""
|
45
|
+
return pulumi.get(self, "buckets")
|
46
|
+
|
47
|
+
@property
|
48
|
+
@pulumi.getter
|
49
|
+
def id(self) -> str:
|
50
|
+
"""
|
51
|
+
The provider-assigned unique ID for this managed resource.
|
52
|
+
"""
|
53
|
+
return pulumi.get(self, "id")
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter
|
57
|
+
def prefix(self) -> Optional[str]:
|
58
|
+
return pulumi.get(self, "prefix")
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def project(self) -> Optional[str]:
|
63
|
+
return pulumi.get(self, "project")
|
64
|
+
|
65
|
+
|
66
|
+
class AwaitableGetBucketsResult(GetBucketsResult):
|
67
|
+
# pylint: disable=using-constant-test
|
68
|
+
def __await__(self):
|
69
|
+
if False:
|
70
|
+
yield self
|
71
|
+
return GetBucketsResult(
|
72
|
+
buckets=self.buckets,
|
73
|
+
id=self.id,
|
74
|
+
prefix=self.prefix,
|
75
|
+
project=self.project)
|
76
|
+
|
77
|
+
|
78
|
+
def get_buckets(prefix: Optional[str] = None,
|
79
|
+
project: Optional[str] = None,
|
80
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBucketsResult:
|
81
|
+
"""
|
82
|
+
Gets a list of existing GCS buckets.
|
83
|
+
See [the official documentation](https://cloud.google.com/storage/docs/introduction)
|
84
|
+
and [API](https://cloud.google.com/storage/docs/json_api/v1/buckets/list).
|
85
|
+
|
86
|
+
## Example Usage
|
87
|
+
|
88
|
+
Example GCS buckets.
|
89
|
+
|
90
|
+
```python
|
91
|
+
import pulumi
|
92
|
+
import pulumi_gcp as gcp
|
93
|
+
|
94
|
+
example = gcp.storage.get_buckets(project="example-project")
|
95
|
+
```
|
96
|
+
|
97
|
+
|
98
|
+
:param str prefix: Filter results to buckets whose names begin with this prefix.
|
99
|
+
:param str project: The ID of the project. If it is not provided, the provider project is used.
|
100
|
+
"""
|
101
|
+
__args__ = dict()
|
102
|
+
__args__['prefix'] = prefix
|
103
|
+
__args__['project'] = project
|
104
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
105
|
+
__ret__ = pulumi.runtime.invoke('gcp:storage/getBuckets:getBuckets', __args__, opts=opts, typ=GetBucketsResult).value
|
106
|
+
|
107
|
+
return AwaitableGetBucketsResult(
|
108
|
+
buckets=pulumi.get(__ret__, 'buckets'),
|
109
|
+
id=pulumi.get(__ret__, 'id'),
|
110
|
+
prefix=pulumi.get(__ret__, 'prefix'),
|
111
|
+
project=pulumi.get(__ret__, 'project'))
|
112
|
+
|
113
|
+
|
114
|
+
@_utilities.lift_output_func(get_buckets)
|
115
|
+
def get_buckets_output(prefix: Optional[pulumi.Input[Optional[str]]] = None,
|
116
|
+
project: Optional[pulumi.Input[Optional[str]]] = None,
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBucketsResult]:
|
118
|
+
"""
|
119
|
+
Gets a list of existing GCS buckets.
|
120
|
+
See [the official documentation](https://cloud.google.com/storage/docs/introduction)
|
121
|
+
and [API](https://cloud.google.com/storage/docs/json_api/v1/buckets/list).
|
122
|
+
|
123
|
+
## Example Usage
|
124
|
+
|
125
|
+
Example GCS buckets.
|
126
|
+
|
127
|
+
```python
|
128
|
+
import pulumi
|
129
|
+
import pulumi_gcp as gcp
|
130
|
+
|
131
|
+
example = gcp.storage.get_buckets(project="example-project")
|
132
|
+
```
|
133
|
+
|
134
|
+
|
135
|
+
:param str prefix: Filter results to buckets whose names begin with this prefix.
|
136
|
+
:param str project: The ID of the project. If it is not provided, the provider project is used.
|
137
|
+
"""
|
138
|
+
...
|
pulumi_gcp/storage/outputs.py
CHANGED
@@ -72,6 +72,7 @@ __all__ = [
|
|
72
72
|
'GetBucketSoftDeletePolicyResult',
|
73
73
|
'GetBucketVersioningResult',
|
74
74
|
'GetBucketWebsiteResult',
|
75
|
+
'GetBucketsBucketResult',
|
75
76
|
]
|
76
77
|
|
77
78
|
@pulumi.output_type
|
@@ -3223,3 +3224,65 @@ class GetBucketWebsiteResult(dict):
|
|
3223
3224
|
return pulumi.get(self, "not_found_page")
|
3224
3225
|
|
3225
3226
|
|
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=kzZy8-6E6c_f4V_gl_1mhaaTfoQUfDvWFcU3GrtaG0Q,187499
|
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=KfC-j52x7Y2MGwN095tb6LyrJBQyaU2YAA4AC5aEdCU,186885
|
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=AH73pJNlFF81yppeXk6W9uydOkbnbEA2AtONHiV_QK4,60190
|
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=hS0NVyBuluxdy3fcKTVC7X1nicighVlQ9qmisdWFtvg,104670
|
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=dG2F6tIXFOci9zpY9UWhFXQO6j6s2LconM8K8sj2WOI,76195
|
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=GfFsk6WbNooV4hYfdFc7wQTGa_xq57CH-hRnMIlM3b8,47674
|
114
|
+
pulumi_gcp/applicationintegration/client.py,sha256=8IyvPBQ0X7Cefg7HaSadLqs_PiRrCDeqN13E3Ytb0ho,33391
|
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=d64DOao1g62eRw5hqewJ5KJo2aB3jIuNVgPzH9loztQ,93451
|
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=2g2PTE9YdiyGMjWxaDWWsHIUJtZ_slY_XtF3UpttdeU,59892
|
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=0Rtxxzp-7uHyrLILjHUdGHAHvsMqzAXUW8wDch8r4N4,92494
|
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=RSTdpYW5yYHxx4Ebip1WJBiaT6W3lykTqi0tCE0mgZA,123708
|
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=OoZNUpD8V17S7Jpp37yYQ9V9JtX1CSa4Cb5436Yiuj0,1805788
|
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=vXa5pv4YiC0yi9B8zzgxNrlvWaf3Jpj3mRnULpxj1YY,2232218
|
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=LUNffo2T4dJ5qqu_o--paNr1Y0v5o3dWaOddKOXSGow,86654
|
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=WOGxK3945Bs4tviUFKJ6TY4Ak8x1yarfYm_eTqU2MLM,7449
|
588
588
|
pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
|
589
|
-
pulumi_gcp/config/vars.py,sha256=
|
589
|
+
pulumi_gcp/config/vars.py,sha256=KF6KTmxkHAONIKZSJjpL7dOdvBcuSG8uNfDGTFqSsmI,23587
|
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=fno2BbpNLLY_PljavR00MYSin7_Kdy444R5sFGz1uM8,618374
|
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=aWeV4rvzsJEljLJzqmde-CD5l5o_iN3LZO5hDLlJUzE,841609
|
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=HdfBlVPsXfwGJekATLw1TCCqQAvfur_O5pWqNnGRdCY,80094
|
652
|
+
pulumi_gcp/dataflow/job.py,sha256=2LT7_wK0GqaSUCyAmzwWnkxTSfX9Nk1wk_lZXbpCmQY,75579
|
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=IHWffdLsTMnLIacZ7SITcbfe6T54EPvlOtuSaRabj4M,21882
|
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=VkzwoCdQbKO6YEv4qod5Sb6R21stxdqEmFmtujo4b9A,19602
|
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,6 +1224,10 @@ 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
|
1227
1231
|
pulumi_gcp/projects/__init__.py,sha256=aOtO430jqofonG851ped1QS5IUhvZ1ZF3rgZOHRQi38,848
|
1228
1232
|
pulumi_gcp/projects/_inputs.py,sha256=BNIrSi7qLjI5yLKOC8QygDFtyrC3RRSJnp5vYiDxCAA,30598
|
1229
1233
|
pulumi_gcp/projects/access_approval_settings.py,sha256=DIvOKf6IOGPrGwqc9yuvWzshFk8ptOFQxvVCvldbdD4,36239
|
@@ -1273,7 +1277,7 @@ pulumi_gcp/recaptcha/enterprise_key.py,sha256=XXWvEpeKiUEFe4JtCyGMoGQLe0EYrnG7sB
|
|
1273
1277
|
pulumi_gcp/recaptcha/outputs.py,sha256=AT1LWIZuukUTv1KqEVxwP1Yida5pNglC0bVZE0wbhKo,13613
|
1274
1278
|
pulumi_gcp/redis/__init__.py,sha256=ZresoueauXpt2HsRh1dtHTWpomcgsL6Xr61T27YS-Ys,389
|
1275
1279
|
pulumi_gcp/redis/_inputs.py,sha256=nfOOKGgzIbnH8czLQnQnSYUrEx02ais1LInSe1Bgor8,34752
|
1276
|
-
pulumi_gcp/redis/cluster.py,sha256=
|
1280
|
+
pulumi_gcp/redis/cluster.py,sha256=qnlajxZGp_H0uvmW43RGqQf5MmfDDHTDJDG_guigmBQ,50356
|
1277
1281
|
pulumi_gcp/redis/get_instance.py,sha256=Dtlg-nQrP-A02Cqtmlq4g225OD0hP2iPOvf3oKhraxo,19992
|
1278
1282
|
pulumi_gcp/redis/instance.py,sha256=2KMlUxO4ium7eSPSavLIj7S_sSATLOIvQEi8djVACYQ,115020
|
1279
1283
|
pulumi_gcp/redis/outputs.py,sha256=psZ-L8kvwUB0H37j_zv9-ys8ylc2mYB2_Jjd0QRBPP4,51450
|
@@ -1406,7 +1410,7 @@ pulumi_gcp/sql/outputs.py,sha256=A4MTas1y0LYvT1k2uSCpcnSm1NPBR0TfxeBmywMNFXU,222
|
|
1406
1410
|
pulumi_gcp/sql/source_representation_instance.py,sha256=-8ouZtYx4QW7dxuCa7rDZdVjAHZqkIxMOKJZkm_HAJQ,38408
|
1407
1411
|
pulumi_gcp/sql/ssl_cert.py,sha256=SCrcQHcs8hImL6hER3a-iZMcxjROlu4G4SW54_yfYQU,21868
|
1408
1412
|
pulumi_gcp/sql/user.py,sha256=kISJj7ARtyiIzweK9Q15nnbxecki1tr2UHprFG17DEc,35045
|
1409
|
-
pulumi_gcp/storage/__init__.py,sha256=
|
1413
|
+
pulumi_gcp/storage/__init__.py,sha256=Gm60lMdHQYev7PP_yyZemd54wvj5UqVPAM2YKZyQXsk,1204
|
1410
1414
|
pulumi_gcp/storage/_inputs.py,sha256=7LT1rYVp5JqeEzRpXcr16M-149eKJuVbV57yeprm2g4,115250
|
1411
1415
|
pulumi_gcp/storage/bucket.py,sha256=BOF_Hr3xOouiQ3NDXeJvIrYnWHqbbHrcyjdVZLCY0_k,83881
|
1412
1416
|
pulumi_gcp/storage/bucket_access_control.py,sha256=cVhJUnGjm4Ruhlcb74wBRULXIoD8C57GK5Bu8zmmnrw,19699
|
@@ -1422,6 +1426,7 @@ pulumi_gcp/storage/get_bucket_iam_policy.py,sha256=s6uFzQ87Z27SBE0-ZNazg1542LXID
|
|
1422
1426
|
pulumi_gcp/storage/get_bucket_object.py,sha256=40HlaeaDISvkbPYFdMdZZlDvY_m96_h37lNnBvcBA-I,15521
|
1423
1427
|
pulumi_gcp/storage/get_bucket_object_content.py,sha256=e8Rt71AIungtQL1Ylyb561uAjTWynZbrtGebAf2pIWA,14364
|
1424
1428
|
pulumi_gcp/storage/get_bucket_objects.py,sha256=_BW25EKsV4VsN9yr88YGWRsMoE0Pk82BunyYbiW2Apc,5661
|
1429
|
+
pulumi_gcp/storage/get_buckets.py,sha256=MORKnye-xSnKCYBmkP0zp7-q6sFGfH15w-sR26L5qKE,4519
|
1425
1430
|
pulumi_gcp/storage/get_object_signed_url.py,sha256=cy789AOFa5L5833bNueKganILIHU5bM65ljxeM7vb28,13719
|
1426
1431
|
pulumi_gcp/storage/get_project_service_account.py,sha256=OU0dV4OYHOkN8ld1o5wyF_11jLZDw_RT7YTX9xHcSFg,12755
|
1427
1432
|
pulumi_gcp/storage/get_transfer_project_service_account.py,sha256=Pf-7WU0B-s6a9p9NOwCTHyB7YC4uANznJDav8aATMJI,5078
|
@@ -1431,7 +1436,7 @@ pulumi_gcp/storage/insights_report_config.py,sha256=3fHsSrbJ3GSVp4gw2FdzY_T2IkVi
|
|
1431
1436
|
pulumi_gcp/storage/notification.py,sha256=IH73VXyi0_9aueV8-WYA5fmS8KWuStq-T_ap2wGgCGM,29840
|
1432
1437
|
pulumi_gcp/storage/object_access_control.py,sha256=y6Gwzz97vhN33qo8ex5xGNHzJiEeXELAnu60oduVqYQ,24075
|
1433
1438
|
pulumi_gcp/storage/object_acl.py,sha256=1mMyUHDm41LdhfEk0rv7HqO8pOty8mWvndffwWNXItU,16694
|
1434
|
-
pulumi_gcp/storage/outputs.py,sha256=
|
1439
|
+
pulumi_gcp/storage/outputs.py,sha256=p2JAEMflTLIJeNUAGkp7xe4aYwCYskua2146otbCAfE,144992
|
1435
1440
|
pulumi_gcp/storage/transfer_agent_pool.py,sha256=gLGD5VqJ3btrqKPgQq_JpFSyfENJLssTttJkEI6PdsE,21431
|
1436
1441
|
pulumi_gcp/storage/transfer_job.py,sha256=Y4xmN-p4f0t3hL8d18JxyJkzoJe4YdAjtVogm3qTphg,41572
|
1437
1442
|
pulumi_gcp/tags/__init__.py,sha256=73ySnVD68pkwP5R7Mt1eWSGxBu_HYv7XHBbqLaGG3yU,829
|
@@ -1541,7 +1546,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KnqAQNX01bqynD7N
|
|
1541
1546
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ovQjU8TBCo9xjSArziSIyzV_HyIf0Ke4IaDLd4CnV2Q,35844
|
1542
1547
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=3zBaMJQnUB4QQygrFBk8HsuKtvQIwOPManWiphBVRCQ,35448
|
1543
1548
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=u5aW7Jd-oDY0SKcuAHn_O-sN7NIRvwS9Jz6slzHWlXo,22172
|
1544
|
-
pulumi_gcp-7.
|
1545
|
-
pulumi_gcp-7.
|
1546
|
-
pulumi_gcp-7.
|
1547
|
-
pulumi_gcp-7.
|
1549
|
+
pulumi_gcp-7.22.0.dist-info/METADATA,sha256=xO5uU344nTt1GJSVSv5se0ooJidgAQyFSPqfG0uEaag,2651
|
1550
|
+
pulumi_gcp-7.22.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1551
|
+
pulumi_gcp-7.22.0.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1552
|
+
pulumi_gcp-7.22.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|