pulumi-gcp 7.19.0a1713292926__py3-none-any.whl → 7.19.0a1713444144__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/accesscontextmanager/access_policy.py +4 -4
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/compute/_inputs.py +24 -0
- pulumi_gcp/compute/get_router_nat.py +11 -1
- pulumi_gcp/compute/instance_settings.py +16 -0
- pulumi_gcp/compute/outputs.py +41 -0
- pulumi_gcp/compute/router_interface.py +47 -0
- pulumi_gcp/compute/router_nat.py +68 -0
- pulumi_gcp/compute/router_peer.py +141 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +48 -7
- pulumi_gcp/container/outputs.py +67 -8
- pulumi_gcp/datastore/data_store_index.py +14 -0
- pulumi_gcp/dns/_inputs.py +22 -22
- pulumi_gcp/dns/outputs.py +22 -22
- pulumi_gcp/firestore/_inputs.py +80 -11
- pulumi_gcp/firestore/document.py +0 -4
- pulumi_gcp/firestore/index.py +116 -42
- pulumi_gcp/firestore/outputs.py +70 -11
- pulumi_gcp/gkebackup/_inputs.py +358 -3
- pulumi_gcp/gkebackup/backup_plan.py +294 -0
- pulumi_gcp/gkebackup/outputs.py +353 -3
- pulumi_gcp/networksecurity/firewall_endpoint.py +2 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +61 -0
- pulumi_gcp/parallelstore/__init__.py +8 -0
- pulumi_gcp/parallelstore/instance.py +1128 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/sql/_inputs.py +16 -0
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/tags/__init__.py +2 -0
- pulumi_gcp/tags/get_tag_keys.py +101 -0
- pulumi_gcp/tags/get_tag_values.py +101 -0
- pulumi_gcp/tags/outputs.py +200 -0
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/private_cloud.py +101 -7
- {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/RECORD +41 -37
- {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/top_level.txt +0 -0
@@ -22,7 +22,7 @@ class GetPrivateCloudResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getPrivateCloud.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, description=None, hcxes=None, id=None, location=None, management_clusters=None, name=None, network_configs=None, nsxes=None, project=None, state=None, type=None, uid=None, vcenters=None):
|
25
|
+
def __init__(__self__, description=None, hcxes=None, id=None, location=None, management_clusters=None, name=None, network_configs=None, nsxes=None, preferred_zone=None, project=None, secondary_zone=None, state=None, type=None, uid=None, vcenters=None):
|
26
26
|
if description and not isinstance(description, str):
|
27
27
|
raise TypeError("Expected argument 'description' to be a str")
|
28
28
|
pulumi.set(__self__, "description", description)
|
@@ -47,9 +47,15 @@ class GetPrivateCloudResult:
|
|
47
47
|
if nsxes and not isinstance(nsxes, list):
|
48
48
|
raise TypeError("Expected argument 'nsxes' to be a list")
|
49
49
|
pulumi.set(__self__, "nsxes", nsxes)
|
50
|
+
if preferred_zone and not isinstance(preferred_zone, str):
|
51
|
+
raise TypeError("Expected argument 'preferred_zone' to be a str")
|
52
|
+
pulumi.set(__self__, "preferred_zone", preferred_zone)
|
50
53
|
if project and not isinstance(project, str):
|
51
54
|
raise TypeError("Expected argument 'project' to be a str")
|
52
55
|
pulumi.set(__self__, "project", project)
|
56
|
+
if secondary_zone and not isinstance(secondary_zone, str):
|
57
|
+
raise TypeError("Expected argument 'secondary_zone' to be a str")
|
58
|
+
pulumi.set(__self__, "secondary_zone", secondary_zone)
|
53
59
|
if state and not isinstance(state, str):
|
54
60
|
raise TypeError("Expected argument 'state' to be a str")
|
55
61
|
pulumi.set(__self__, "state", state)
|
@@ -106,11 +112,21 @@ class GetPrivateCloudResult:
|
|
106
112
|
def nsxes(self) -> Sequence['outputs.GetPrivateCloudNsxResult']:
|
107
113
|
return pulumi.get(self, "nsxes")
|
108
114
|
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="preferredZone")
|
117
|
+
def preferred_zone(self) -> str:
|
118
|
+
return pulumi.get(self, "preferred_zone")
|
119
|
+
|
109
120
|
@property
|
110
121
|
@pulumi.getter
|
111
122
|
def project(self) -> Optional[str]:
|
112
123
|
return pulumi.get(self, "project")
|
113
124
|
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="secondaryZone")
|
127
|
+
def secondary_zone(self) -> str:
|
128
|
+
return pulumi.get(self, "secondary_zone")
|
129
|
+
|
114
130
|
@property
|
115
131
|
@pulumi.getter
|
116
132
|
def state(self) -> str:
|
@@ -146,7 +162,9 @@ class AwaitableGetPrivateCloudResult(GetPrivateCloudResult):
|
|
146
162
|
name=self.name,
|
147
163
|
network_configs=self.network_configs,
|
148
164
|
nsxes=self.nsxes,
|
165
|
+
preferred_zone=self.preferred_zone,
|
149
166
|
project=self.project,
|
167
|
+
secondary_zone=self.secondary_zone,
|
150
168
|
state=self.state,
|
151
169
|
type=self.type,
|
152
170
|
uid=self.uid,
|
@@ -199,7 +217,9 @@ def get_private_cloud(location: Optional[str] = None,
|
|
199
217
|
name=pulumi.get(__ret__, 'name'),
|
200
218
|
network_configs=pulumi.get(__ret__, 'network_configs'),
|
201
219
|
nsxes=pulumi.get(__ret__, 'nsxes'),
|
220
|
+
preferred_zone=pulumi.get(__ret__, 'preferred_zone'),
|
202
221
|
project=pulumi.get(__ret__, 'project'),
|
222
|
+
secondary_zone=pulumi.get(__ret__, 'secondary_zone'),
|
203
223
|
state=pulumi.get(__ret__, 'state'),
|
204
224
|
type=pulumi.get(__ret__, 'type'),
|
205
225
|
uid=pulumi.get(__ret__, 'uid'),
|
@@ -21,7 +21,9 @@ class PrivateCloudArgs:
|
|
21
21
|
network_config: pulumi.Input['PrivateCloudNetworkConfigArgs'],
|
22
22
|
description: Optional[pulumi.Input[str]] = None,
|
23
23
|
name: Optional[pulumi.Input[str]] = None,
|
24
|
+
preferred_zone: Optional[pulumi.Input[str]] = None,
|
24
25
|
project: Optional[pulumi.Input[str]] = None,
|
26
|
+
secondary_zone: Optional[pulumi.Input[str]] = None,
|
25
27
|
type: Optional[pulumi.Input[str]] = None):
|
26
28
|
"""
|
27
29
|
The set of arguments for constructing a PrivateCloud resource.
|
@@ -32,10 +34,12 @@ class PrivateCloudArgs:
|
|
32
34
|
Structure is documented below.
|
33
35
|
:param pulumi.Input[str] description: User-provided description for this private cloud.
|
34
36
|
:param pulumi.Input[str] name: The ID of the PrivateCloud.
|
37
|
+
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
35
38
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
36
39
|
If it is not provided, the provider project is used.
|
40
|
+
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
37
41
|
:param pulumi.Input[str] type: Initial type of the private cloud.
|
38
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
42
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
39
43
|
"""
|
40
44
|
pulumi.set(__self__, "location", location)
|
41
45
|
pulumi.set(__self__, "management_cluster", management_cluster)
|
@@ -44,8 +48,12 @@ class PrivateCloudArgs:
|
|
44
48
|
pulumi.set(__self__, "description", description)
|
45
49
|
if name is not None:
|
46
50
|
pulumi.set(__self__, "name", name)
|
51
|
+
if preferred_zone is not None:
|
52
|
+
pulumi.set(__self__, "preferred_zone", preferred_zone)
|
47
53
|
if project is not None:
|
48
54
|
pulumi.set(__self__, "project", project)
|
55
|
+
if secondary_zone is not None:
|
56
|
+
pulumi.set(__self__, "secondary_zone", secondary_zone)
|
49
57
|
if type is not None:
|
50
58
|
pulumi.set(__self__, "type", type)
|
51
59
|
|
@@ -111,6 +119,18 @@ class PrivateCloudArgs:
|
|
111
119
|
def name(self, value: Optional[pulumi.Input[str]]):
|
112
120
|
pulumi.set(self, "name", value)
|
113
121
|
|
122
|
+
@property
|
123
|
+
@pulumi.getter(name="preferredZone")
|
124
|
+
def preferred_zone(self) -> Optional[pulumi.Input[str]]:
|
125
|
+
"""
|
126
|
+
The preferred single failure domain within a region.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "preferred_zone")
|
129
|
+
|
130
|
+
@preferred_zone.setter
|
131
|
+
def preferred_zone(self, value: Optional[pulumi.Input[str]]):
|
132
|
+
pulumi.set(self, "preferred_zone", value)
|
133
|
+
|
114
134
|
@property
|
115
135
|
@pulumi.getter
|
116
136
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -124,12 +144,24 @@ class PrivateCloudArgs:
|
|
124
144
|
def project(self, value: Optional[pulumi.Input[str]]):
|
125
145
|
pulumi.set(self, "project", value)
|
126
146
|
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="secondaryZone")
|
149
|
+
def secondary_zone(self) -> Optional[pulumi.Input[str]]:
|
150
|
+
"""
|
151
|
+
The secondary single failure domain within a region.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "secondary_zone")
|
154
|
+
|
155
|
+
@secondary_zone.setter
|
156
|
+
def secondary_zone(self, value: Optional[pulumi.Input[str]]):
|
157
|
+
pulumi.set(self, "secondary_zone", value)
|
158
|
+
|
127
159
|
@property
|
128
160
|
@pulumi.getter
|
129
161
|
def type(self) -> Optional[pulumi.Input[str]]:
|
130
162
|
"""
|
131
163
|
Initial type of the private cloud.
|
132
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
164
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
133
165
|
"""
|
134
166
|
return pulumi.get(self, "type")
|
135
167
|
|
@@ -148,7 +180,9 @@ class _PrivateCloudState:
|
|
148
180
|
name: Optional[pulumi.Input[str]] = None,
|
149
181
|
network_config: Optional[pulumi.Input['PrivateCloudNetworkConfigArgs']] = None,
|
150
182
|
nsxes: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]]] = None,
|
183
|
+
preferred_zone: Optional[pulumi.Input[str]] = None,
|
151
184
|
project: Optional[pulumi.Input[str]] = None,
|
185
|
+
secondary_zone: Optional[pulumi.Input[str]] = None,
|
152
186
|
state: Optional[pulumi.Input[str]] = None,
|
153
187
|
type: Optional[pulumi.Input[str]] = None,
|
154
188
|
uid: Optional[pulumi.Input[str]] = None,
|
@@ -166,12 +200,14 @@ class _PrivateCloudState:
|
|
166
200
|
Structure is documented below.
|
167
201
|
:param pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]] nsxes: Details about a NSX Manager appliance.
|
168
202
|
Structure is documented below.
|
203
|
+
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
169
204
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
170
205
|
If it is not provided, the provider project is used.
|
206
|
+
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
171
207
|
:param pulumi.Input[str] state: State of the appliance.
|
172
208
|
Possible values are: `ACTIVE`, `CREATING`.
|
173
209
|
:param pulumi.Input[str] type: Initial type of the private cloud.
|
174
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
210
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
175
211
|
:param pulumi.Input[str] uid: System-generated unique identifier for the resource.
|
176
212
|
:param pulumi.Input[Sequence[pulumi.Input['PrivateCloudVcenterArgs']]] vcenters: Details about a vCenter Server management appliance.
|
177
213
|
Structure is documented below.
|
@@ -190,8 +226,12 @@ class _PrivateCloudState:
|
|
190
226
|
pulumi.set(__self__, "network_config", network_config)
|
191
227
|
if nsxes is not None:
|
192
228
|
pulumi.set(__self__, "nsxes", nsxes)
|
229
|
+
if preferred_zone is not None:
|
230
|
+
pulumi.set(__self__, "preferred_zone", preferred_zone)
|
193
231
|
if project is not None:
|
194
232
|
pulumi.set(__self__, "project", project)
|
233
|
+
if secondary_zone is not None:
|
234
|
+
pulumi.set(__self__, "secondary_zone", secondary_zone)
|
195
235
|
if state is not None:
|
196
236
|
pulumi.set(__self__, "state", state)
|
197
237
|
if type is not None:
|
@@ -289,6 +329,18 @@ class _PrivateCloudState:
|
|
289
329
|
def nsxes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]]]):
|
290
330
|
pulumi.set(self, "nsxes", value)
|
291
331
|
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="preferredZone")
|
334
|
+
def preferred_zone(self) -> Optional[pulumi.Input[str]]:
|
335
|
+
"""
|
336
|
+
The preferred single failure domain within a region.
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "preferred_zone")
|
339
|
+
|
340
|
+
@preferred_zone.setter
|
341
|
+
def preferred_zone(self, value: Optional[pulumi.Input[str]]):
|
342
|
+
pulumi.set(self, "preferred_zone", value)
|
343
|
+
|
292
344
|
@property
|
293
345
|
@pulumi.getter
|
294
346
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -302,6 +354,18 @@ class _PrivateCloudState:
|
|
302
354
|
def project(self, value: Optional[pulumi.Input[str]]):
|
303
355
|
pulumi.set(self, "project", value)
|
304
356
|
|
357
|
+
@property
|
358
|
+
@pulumi.getter(name="secondaryZone")
|
359
|
+
def secondary_zone(self) -> Optional[pulumi.Input[str]]:
|
360
|
+
"""
|
361
|
+
The secondary single failure domain within a region.
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "secondary_zone")
|
364
|
+
|
365
|
+
@secondary_zone.setter
|
366
|
+
def secondary_zone(self, value: Optional[pulumi.Input[str]]):
|
367
|
+
pulumi.set(self, "secondary_zone", value)
|
368
|
+
|
305
369
|
@property
|
306
370
|
@pulumi.getter
|
307
371
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -320,7 +384,7 @@ class _PrivateCloudState:
|
|
320
384
|
def type(self) -> Optional[pulumi.Input[str]]:
|
321
385
|
"""
|
322
386
|
Initial type of the private cloud.
|
323
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
387
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
324
388
|
"""
|
325
389
|
return pulumi.get(self, "type")
|
326
390
|
|
@@ -364,7 +428,9 @@ class PrivateCloud(pulumi.CustomResource):
|
|
364
428
|
management_cluster: Optional[pulumi.Input[pulumi.InputType['PrivateCloudManagementClusterArgs']]] = None,
|
365
429
|
name: Optional[pulumi.Input[str]] = None,
|
366
430
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
431
|
+
preferred_zone: Optional[pulumi.Input[str]] = None,
|
367
432
|
project: Optional[pulumi.Input[str]] = None,
|
433
|
+
secondary_zone: Optional[pulumi.Input[str]] = None,
|
368
434
|
type: Optional[pulumi.Input[str]] = None,
|
369
435
|
__props__=None):
|
370
436
|
"""
|
@@ -470,10 +536,12 @@ class PrivateCloud(pulumi.CustomResource):
|
|
470
536
|
:param pulumi.Input[str] name: The ID of the PrivateCloud.
|
471
537
|
:param pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']] network_config: Network configuration in the consumer project with which the peering has to be done.
|
472
538
|
Structure is documented below.
|
539
|
+
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
473
540
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
474
541
|
If it is not provided, the provider project is used.
|
542
|
+
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
475
543
|
:param pulumi.Input[str] type: Initial type of the private cloud.
|
476
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
544
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
477
545
|
"""
|
478
546
|
...
|
479
547
|
@overload
|
@@ -595,7 +663,9 @@ class PrivateCloud(pulumi.CustomResource):
|
|
595
663
|
management_cluster: Optional[pulumi.Input[pulumi.InputType['PrivateCloudManagementClusterArgs']]] = None,
|
596
664
|
name: Optional[pulumi.Input[str]] = None,
|
597
665
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
666
|
+
preferred_zone: Optional[pulumi.Input[str]] = None,
|
598
667
|
project: Optional[pulumi.Input[str]] = None,
|
668
|
+
secondary_zone: Optional[pulumi.Input[str]] = None,
|
599
669
|
type: Optional[pulumi.Input[str]] = None,
|
600
670
|
__props__=None):
|
601
671
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -617,7 +687,9 @@ class PrivateCloud(pulumi.CustomResource):
|
|
617
687
|
if network_config is None and not opts.urn:
|
618
688
|
raise TypeError("Missing required property 'network_config'")
|
619
689
|
__props__.__dict__["network_config"] = network_config
|
690
|
+
__props__.__dict__["preferred_zone"] = preferred_zone
|
620
691
|
__props__.__dict__["project"] = project
|
692
|
+
__props__.__dict__["secondary_zone"] = secondary_zone
|
621
693
|
__props__.__dict__["type"] = type
|
622
694
|
__props__.__dict__["hcxes"] = None
|
623
695
|
__props__.__dict__["nsxes"] = None
|
@@ -641,7 +713,9 @@ class PrivateCloud(pulumi.CustomResource):
|
|
641
713
|
name: Optional[pulumi.Input[str]] = None,
|
642
714
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
643
715
|
nsxes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateCloudNsxArgs']]]]] = None,
|
716
|
+
preferred_zone: Optional[pulumi.Input[str]] = None,
|
644
717
|
project: Optional[pulumi.Input[str]] = None,
|
718
|
+
secondary_zone: Optional[pulumi.Input[str]] = None,
|
645
719
|
state: Optional[pulumi.Input[str]] = None,
|
646
720
|
type: Optional[pulumi.Input[str]] = None,
|
647
721
|
uid: Optional[pulumi.Input[str]] = None,
|
@@ -664,12 +738,14 @@ class PrivateCloud(pulumi.CustomResource):
|
|
664
738
|
Structure is documented below.
|
665
739
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateCloudNsxArgs']]]] nsxes: Details about a NSX Manager appliance.
|
666
740
|
Structure is documented below.
|
741
|
+
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
667
742
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
668
743
|
If it is not provided, the provider project is used.
|
744
|
+
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
669
745
|
:param pulumi.Input[str] state: State of the appliance.
|
670
746
|
Possible values are: `ACTIVE`, `CREATING`.
|
671
747
|
:param pulumi.Input[str] type: Initial type of the private cloud.
|
672
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
748
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
673
749
|
:param pulumi.Input[str] uid: System-generated unique identifier for the resource.
|
674
750
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateCloudVcenterArgs']]]] vcenters: Details about a vCenter Server management appliance.
|
675
751
|
Structure is documented below.
|
@@ -685,7 +761,9 @@ class PrivateCloud(pulumi.CustomResource):
|
|
685
761
|
__props__.__dict__["name"] = name
|
686
762
|
__props__.__dict__["network_config"] = network_config
|
687
763
|
__props__.__dict__["nsxes"] = nsxes
|
764
|
+
__props__.__dict__["preferred_zone"] = preferred_zone
|
688
765
|
__props__.__dict__["project"] = project
|
766
|
+
__props__.__dict__["secondary_zone"] = secondary_zone
|
689
767
|
__props__.__dict__["state"] = state
|
690
768
|
__props__.__dict__["type"] = type
|
691
769
|
__props__.__dict__["uid"] = uid
|
@@ -752,6 +830,14 @@ class PrivateCloud(pulumi.CustomResource):
|
|
752
830
|
"""
|
753
831
|
return pulumi.get(self, "nsxes")
|
754
832
|
|
833
|
+
@property
|
834
|
+
@pulumi.getter(name="preferredZone")
|
835
|
+
def preferred_zone(self) -> pulumi.Output[Optional[str]]:
|
836
|
+
"""
|
837
|
+
The preferred single failure domain within a region.
|
838
|
+
"""
|
839
|
+
return pulumi.get(self, "preferred_zone")
|
840
|
+
|
755
841
|
@property
|
756
842
|
@pulumi.getter
|
757
843
|
def project(self) -> pulumi.Output[str]:
|
@@ -761,6 +847,14 @@ class PrivateCloud(pulumi.CustomResource):
|
|
761
847
|
"""
|
762
848
|
return pulumi.get(self, "project")
|
763
849
|
|
850
|
+
@property
|
851
|
+
@pulumi.getter(name="secondaryZone")
|
852
|
+
def secondary_zone(self) -> pulumi.Output[Optional[str]]:
|
853
|
+
"""
|
854
|
+
The secondary single failure domain within a region.
|
855
|
+
"""
|
856
|
+
return pulumi.get(self, "secondary_zone")
|
857
|
+
|
764
858
|
@property
|
765
859
|
@pulumi.getter
|
766
860
|
def state(self) -> pulumi.Output[str]:
|
@@ -775,7 +869,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
775
869
|
def type(self) -> pulumi.Output[Optional[str]]:
|
776
870
|
"""
|
777
871
|
Initial type of the private cloud.
|
778
|
-
Possible values are: `STANDARD`, `TIME_LIMITED`.
|
872
|
+
Possible values are: `STANDARD`, `TIME_LIMITED`, `STRETCHED`.
|
779
873
|
"""
|
780
874
|
return pulumi.get(self, "type")
|
781
875
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=Y1RIzw4QiZomFedswbNQQSzvPIP3NNUmw34puD10QYw,185876
|
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=j-GKkI_1cr3wrQrz8dzZpuP_CPPd1fy1lE_xVoNyi2Y,185367
|
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
|
@@ -13,7 +13,7 @@ pulumi_gcp/accesscontextmanager/_inputs.py,sha256=5v0AwE_2hMmNzOb0XYVjmUczvvDiOV
|
|
13
13
|
pulumi_gcp/accesscontextmanager/access_level.py,sha256=i35UCOgry9lUTvx14T9J7o2zXiOrxS_F9-8UIRCVhU8,24420
|
14
14
|
pulumi_gcp/accesscontextmanager/access_level_condition.py,sha256=J16A74OiDtxpb7dkyVAmPQrDVmOGaiYicLGBIjZ8nvI,43577
|
15
15
|
pulumi_gcp/accesscontextmanager/access_levels.py,sha256=cts8FeAUaTlikKK_hbc5Xd9q9scDGxZzFG4R9Bx6s_U,17664
|
16
|
-
pulumi_gcp/accesscontextmanager/access_policy.py,sha256=
|
16
|
+
pulumi_gcp/accesscontextmanager/access_policy.py,sha256=drqlA1M2lRyEgXMbOEiR_1yo-h5ZC6yoGtBub-fRHKc,18460
|
17
17
|
pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py,sha256=jwpR6d_DEwiro01zXfB6GebHD9FtwkL2cMwBdWb6BzY,34756
|
18
18
|
pulumi_gcp/accesscontextmanager/access_policy_iam_member.py,sha256=dDgYjJLV4YKxU1zJT-D0EqvY4URGpbs6L-Ii3rTrvbQ,34360
|
19
19
|
pulumi_gcp/accesscontextmanager/access_policy_iam_policy.py,sha256=BtDmHdPl82Nf2EKO-bij5_zi8KyVLFLKC_j5XbLia3U,21011
|
@@ -84,7 +84,7 @@ pulumi_gcp/apigee/organization.py,sha256=hJ4wns2rsbbBJUXJo_2VG20anjZITP-rIWvgwbt
|
|
84
84
|
pulumi_gcp/apigee/outputs.py,sha256=9C8PLOINCUdWnz5D_qbm8nEiEpGm9F6_xOi_zHpMd2g,58816
|
85
85
|
pulumi_gcp/apigee/sharedflow.py,sha256=-BDP62RmxMZiosIVI-Ym95qmKEOqlTwDewoq-JHa7GU,20085
|
86
86
|
pulumi_gcp/apigee/sharedflow_deployment.py,sha256=dZaFWjUoAE7FE5oaL0rcE69gdRjxzDwl87eZBqL5Y_0,17426
|
87
|
-
pulumi_gcp/apigee/sync_authorization.py,sha256=
|
87
|
+
pulumi_gcp/apigee/sync_authorization.py,sha256=JJbHU0DG2CK-nyvjWAB-yI-C71bmYewrd9Gi8-zeCDk,18595
|
88
88
|
pulumi_gcp/apigee/target_server.py,sha256=gIsgnnaVCEF-L6DrmGAp--0Nn5w4S9l80tK5BZ96ofA,30684
|
89
89
|
pulumi_gcp/appengine/__init__.py,sha256=P_FPThoe2TlxctUhwmwRUky0yfsbuDYv3JsUcTFaKck,637
|
90
90
|
pulumi_gcp/appengine/_inputs.py,sha256=KgaFUFl_O2L2F2YRmCgi69Vq5P-k8GSyiEhvXVLOliM,130694
|
@@ -384,7 +384,7 @@ pulumi_gcp/composer/get_environment.py,sha256=BJs-TlJTTc3NNK_0LIJ4jWpzXniiXkkc2M
|
|
384
384
|
pulumi_gcp/composer/get_image_versions.py,sha256=W1YAhaxP8VzUErawRKBRaxyapDU9_leTzC_g8xrRpdk,5392
|
385
385
|
pulumi_gcp/composer/outputs.py,sha256=IozJ_7QofQoogKX8NTktyLlfqppWqZ2aFmuodre1UAM,176480
|
386
386
|
pulumi_gcp/compute/__init__.py,sha256=oHSVfNhs8UowhprprXLeo7znUy_MWGwW0jjECivgMDQ,7234
|
387
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
387
|
+
pulumi_gcp/compute/_inputs.py,sha256=r6456EwSYyWGpiTrZsEMGVVH1w2EM3-zEWIlvkF4LEE,1799451
|
388
388
|
pulumi_gcp/compute/address.py,sha256=DqEYS-PclIMEy6zsXC4GWOAY_BXGG-TZ1hiEBXtMnp4,70389
|
389
389
|
pulumi_gcp/compute/attached_disk.py,sha256=05Zo202gS4PPhZiPkNhQZtUpCP2WxYpxNqqifcDG-as,28247
|
390
390
|
pulumi_gcp/compute/autoscaler.py,sha256=2aP81AopUtM8oBV7MGCj1PbTRWbhWybqCZWFYE0wQwc,34542
|
@@ -455,7 +455,7 @@ pulumi_gcp/compute/get_regions.py,sha256=56otqQmJGTb-GridXKx2YDeJSDsTMeji8VqSVKF
|
|
455
455
|
pulumi_gcp/compute/get_reservation.py,sha256=VFSWuPF3rG3tAyoDM1ck0z4ZbuQ0aV_UjM0auiJoVZ0,8828
|
456
456
|
pulumi_gcp/compute/get_resource_policy.py,sha256=Bz0VR2jUxZiYTm5iAuCVYm_maYWLQPrBCc_yJVE5ZvU,8774
|
457
457
|
pulumi_gcp/compute/get_router.py,sha256=-V--THi71BmAt7vdaSyvPgNzfxQZfuMsedudzYbb6CE,7682
|
458
|
-
pulumi_gcp/compute/get_router_nat.py,sha256=
|
458
|
+
pulumi_gcp/compute/get_router_nat.py,sha256=pH7EnRudcfavpcALSbQB4pYEGWp9iTcImIhzBuJKsfE,15757
|
459
459
|
pulumi_gcp/compute/get_router_status.py,sha256=-aPhfz84PwfDZuLYC_7pWGhChN8_WHMGDtHHzDPza5M,7305
|
460
460
|
pulumi_gcp/compute/get_snapshot.py,sha256=c9Y0MpcIgfRfOLo3jfD-bMHaMwkbOA_xWonuAVf83cQ,14878
|
461
461
|
pulumi_gcp/compute/get_snapshot_iam_policy.py,sha256=FU_hOIK18_GMG498QaO4hVC9MdjA_yhiE7Q_VQ10blU,5405
|
@@ -486,7 +486,7 @@ pulumi_gcp/compute/instance_group_named_port.py,sha256=KsFj0i91261WDE8B_RiMWhcCk
|
|
486
486
|
pulumi_gcp/compute/instance_iam_binding.py,sha256=aT_1tyu8SPOn7xCYC1zDlmuI24nvJiQYpwBs0dDZ6CQ,53338
|
487
487
|
pulumi_gcp/compute/instance_iam_member.py,sha256=ez01ZaPqhJ1TZ9L76t-yC6uaw4vaF1nsmeUN8OKb6KU,52938
|
488
488
|
pulumi_gcp/compute/instance_iam_policy.py,sha256=1aVKObXXw1nP5OV0Sx2uODtCnjO7hS8hDc_jNzLJZvM,38358
|
489
|
-
pulumi_gcp/compute/instance_settings.py,sha256=
|
489
|
+
pulumi_gcp/compute/instance_settings.py,sha256=p4AC1Sq_dIGrbGCLHMceIwYDRGeupehQNnLyb3GuN0Y,15931
|
490
490
|
pulumi_gcp/compute/instance_template.py,sha256=LtyQ7udY9wx5O4c8Gj5YJalLx2q89zCpLCPe5EVHCPs,118623
|
491
491
|
pulumi_gcp/compute/interconnect_attachment.py,sha256=PQ7N15UD2XyqK1-upAjfps-jUELnvTSYRL5rJqlcpkY,95315
|
492
492
|
pulumi_gcp/compute/machine_image.py,sha256=IH0-gDXFB8Sb6Y3bNiD2k3sL_UXJnGySnJRpi6ybD6A,29516
|
@@ -511,7 +511,7 @@ pulumi_gcp/compute/node_template.py,sha256=Lcbk4HRlhHDy4ZPhLHQHBpp7ySupPXII74GgN
|
|
511
511
|
pulumi_gcp/compute/organization_security_policy.py,sha256=MuDAg5_lQiP_T_Qf4qdd3YjF4rcr0VM3dW-eFQu8Lxk,19280
|
512
512
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=UURa7YwbhCUSiwtoc7mMH8qIdE9XZateJekInSnAEzQ,16731
|
513
513
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=W7FH3w9ntFMx86OTOykABmcQ10OOwXsB-LYnIVXvYKk,35927
|
514
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
514
|
+
pulumi_gcp/compute/outputs.py,sha256=baaCo_vJsT2nVg7sBrajWFgTbSdlwViGnJQVLtl-05o,2224152
|
515
515
|
pulumi_gcp/compute/packet_mirroring.py,sha256=_B5zpXg_cJ0eL2nPLfnSkhith6zvqh_-B81d-9mlhgU,36619
|
516
516
|
pulumi_gcp/compute/per_instance_config.py,sha256=YheH5ZjNNu_jQHBN20_kKXhqInwhwBBRYPKa5zIylig,38663
|
517
517
|
pulumi_gcp/compute/project_default_network_tier.py,sha256=5wYauqcTGrTsEwjdmWZu5Cx4XDRuTAHGsmtQW4xvtlQ,11257
|
@@ -551,9 +551,9 @@ pulumi_gcp/compute/reservation.py,sha256=Fmmyfdmj2lkoPxQqh9mnq3QLTPAWFCqxBgngc-2
|
|
551
551
|
pulumi_gcp/compute/resource_policy.py,sha256=1XlNLQR3Nxyb7k0jKFAzjNDaZTNy-wt_PzQxZznsQdI,44175
|
552
552
|
pulumi_gcp/compute/route.py,sha256=LS0IwXaYD_N-gl9MdXPHJBavPxcbcyqcghcy-4Xd1Qo,63533
|
553
553
|
pulumi_gcp/compute/router.py,sha256=8Nnl-wDpoh3chDDZ4C9L1ySi27qdjvJQOvWLoZNk65k,28865
|
554
|
-
pulumi_gcp/compute/router_interface.py,sha256=
|
555
|
-
pulumi_gcp/compute/router_nat.py,sha256=
|
556
|
-
pulumi_gcp/compute/router_peer.py,sha256=
|
554
|
+
pulumi_gcp/compute/router_interface.py,sha256=OrtdjlLKWmalNoca7dkMM5s38HwiiDb8PeF3grDbK84,40105
|
555
|
+
pulumi_gcp/compute/router_nat.py,sha256=MjUNoTTT7pwy9iwmiOpymw5Lgg_yrUt52In1MEiiqzw,90540
|
556
|
+
pulumi_gcp/compute/router_peer.py,sha256=pbmCOqzsvOaTtIn6uKApj9pPHSqUkjVFugtIx5G_Hvs,86490
|
557
557
|
pulumi_gcp/compute/router_status.py,sha256=RDatUYHTIe2cAeGvg1r1LejDuvx7U9Ffq7Dl38kkfTU,7625
|
558
558
|
pulumi_gcp/compute/security_policy.py,sha256=OhSHRQ6y6WY4HsYkWuqLcJ2eQMMinNOzd4jUmSs3CXo,44706
|
559
559
|
pulumi_gcp/compute/security_scan_config.py,sha256=j8yJzPyXN-9eYsgJD4uj9cMgV7__cF8cZXLpPBo_gY8,36734
|
@@ -581,11 +581,11 @@ pulumi_gcp/compute/url_map.py,sha256=KUfPlZCs2Pl4heJe_KxEWSW3lFynB_AKNmG-SscbtHM
|
|
581
581
|
pulumi_gcp/compute/vpn_gateway.py,sha256=8ya63AMq3J9lF9wSdzckT18JUyu4Yg3_ewvhDteDEco,25848
|
582
582
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=t4gWzmk180wpio0iJxoTPH5ww00kISdSqpfAJTC0eXo,70670
|
583
583
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
584
|
-
pulumi_gcp/config/__init__.pyi,sha256=
|
584
|
+
pulumi_gcp/config/__init__.pyi,sha256=vuNp5RlZfHazG0EROdtEyd86akuDP3LkiZwbXXYKhv4,7395
|
585
585
|
pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
|
586
|
-
pulumi_gcp/config/vars.py,sha256=
|
586
|
+
pulumi_gcp/config/vars.py,sha256=eIcwllOVVdCUzKfMq4j0pj0Qr_y_S7UfDjtnrKDZFD0,23427
|
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=RNh09G49Cx05x5YGXL33HJ6BumARLGRPuC08LiN9qwo,612864
|
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
|
@@ -602,7 +602,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=in51h90mh4fQw83k2WESnegkUTum-
|
|
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=WqeYgseMZq7dv2xFukhtHCw-_aD7UytFGRmdrZTr2-Q,832610
|
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
|
@@ -731,7 +731,7 @@ pulumi_gcp/dataproc/outputs.py,sha256=2DiyHPpM1T7xKCHlUlqMkKHurkOZToWKGxooQ605yP
|
|
731
731
|
pulumi_gcp/dataproc/workflow_template.py,sha256=GUOXICW_xqnTu-MKPDEHSHqZzyId5oSO_4j6WTIYIrY,50152
|
732
732
|
pulumi_gcp/datastore/__init__.py,sha256=xavoW_--DyiX4VnpwCCr6VflCuvOLj8AreJ2ZbrJIF8,346
|
733
733
|
pulumi_gcp/datastore/_inputs.py,sha256=41bwKSAhrKSmDSec3CYsMoYkcdeMIhiNvqPi-bHXcZU,1580
|
734
|
-
pulumi_gcp/datastore/data_store_index.py,sha256=
|
734
|
+
pulumi_gcp/datastore/data_store_index.py,sha256=yOlAw8nLJLVhDGrt5vP7LhC5vnTUzF2ZTyiMVtgwda0,19167
|
735
735
|
pulumi_gcp/datastore/outputs.py,sha256=xhb9FCLxLRnlFJ5-8B6dYOJS8sMZXGvafwHn73TwTfM,1272
|
736
736
|
pulumi_gcp/datastream/__init__.py,sha256=UyhlkfT22kM-Z5iH02El9IUA7W3_-4jqQDMyPs31i-8,434
|
737
737
|
pulumi_gcp/datastream/_inputs.py,sha256=vZZwrp_lThPvsVg1KVm6WerdbHs27_CJFMRG4D8szhI,155999
|
@@ -768,7 +768,7 @@ pulumi_gcp/discoveryengine/data_store.py,sha256=H2_fc65470PHJ_l3BKL89t4GL04CrCy4
|
|
768
768
|
pulumi_gcp/discoveryengine/outputs.py,sha256=kxq1RFBmpKU4cn3nfPAWVpdvED1zM6fsoHx3mhXjjM0,11781
|
769
769
|
pulumi_gcp/discoveryengine/search_engine.py,sha256=Ac43bLL_powG8Zz3de7sA23C9GUdJojc18ENfqhTGqo,36280
|
770
770
|
pulumi_gcp/dns/__init__.py,sha256=ab8wmKnXkDvmMb7X3WwoVTvxilHhbzmO8IbqcXVdsjU,749
|
771
|
-
pulumi_gcp/dns/_inputs.py,sha256=
|
771
|
+
pulumi_gcp/dns/_inputs.py,sha256=k3qfKQ_-XG4zDT6aBfbl82Gul5ekptZTS3TnvYjJtBw,77271
|
772
772
|
pulumi_gcp/dns/dns_managed_zone_iam_binding.py,sha256=RkROhUyGXUbjbAza0yRjVMDFAJ55lafE_7iMD0cLNsc,37780
|
773
773
|
pulumi_gcp/dns/dns_managed_zone_iam_member.py,sha256=XiSG2UfIOpA_oQsd_v0pq0JdnbKjB_bRFn2BqMtMpfk,37384
|
774
774
|
pulumi_gcp/dns/dns_managed_zone_iam_policy.py,sha256=NhUsp5uWlOr26u6njN_BDWanrT6vQrE8fuWecZHDUtU,24120
|
@@ -778,7 +778,7 @@ pulumi_gcp/dns/get_managed_zone_iam_policy.py,sha256=dTDGg9BAiGtM4Gy1bB1Gd49FvGJ
|
|
778
778
|
pulumi_gcp/dns/get_managed_zones.py,sha256=99CMErWxsCEGFr9DMaIB3jMKi84zdW4rcOXHcvZ6koc,4624
|
779
779
|
pulumi_gcp/dns/get_record_set.py,sha256=cOgWbHqXlvh4KCvDx0DhxsgcXh8Ll5tOBWcDivtEm3M,5849
|
780
780
|
pulumi_gcp/dns/managed_zone.py,sha256=452RQCwSx68N3u98Y9hDvXIhjZWzsFb748pbX0v_r-U,74535
|
781
|
-
pulumi_gcp/dns/outputs.py,sha256=
|
781
|
+
pulumi_gcp/dns/outputs.py,sha256=RilnHgUlDeiGLVxEFfv46qh8FJtSzUYcARZ_WlNlz8M,94135
|
782
782
|
pulumi_gcp/dns/policy.py,sha256=bh9kM3k_D597LGL0pcvK6QcFu2ycB3C7kuEcedYyEeY,29186
|
783
783
|
pulumi_gcp/dns/record_set.py,sha256=UaViDrWScWf5YsFg_uJBK1CJiKYFREM6k2aFrwdY6ws,38088
|
784
784
|
pulumi_gcp/dns/response_policy.py,sha256=7gI-5oi5c8duPNopw02elBERRUinGJDOM2N5pmvVGt0,24977
|
@@ -860,13 +860,13 @@ pulumi_gcp/firebaserules/outputs.py,sha256=UEBs0kf-7rMmRT855ckom9BNjSq5bSvsIVUw-
|
|
860
860
|
pulumi_gcp/firebaserules/release.py,sha256=sjJt0ja1sZ4zNxv5IjdI7ATJx7PbU74fhQ2c7qCgBA4,19896
|
861
861
|
pulumi_gcp/firebaserules/ruleset.py,sha256=uEeIHnqDczLp7GONwhGFb36TCXwHhTTiXquQoOy0fPg,15136
|
862
862
|
pulumi_gcp/firestore/__init__.py,sha256=Wchkbc9GSPt9us5HelFU99PgiE-yVU5bzw3DQKtttgg,435
|
863
|
-
pulumi_gcp/firestore/_inputs.py,sha256=
|
863
|
+
pulumi_gcp/firestore/_inputs.py,sha256=tPXfYJBcMqrN0t2Y1GW8bWTaSFcIMf3sr6pQ_IVdJkg,15862
|
864
864
|
pulumi_gcp/firestore/backup_schedule.py,sha256=PAXJvtx0H6R7tvZVNjWIGGzvLKUGoiL-xqAfy_c0wjA,25378
|
865
865
|
pulumi_gcp/firestore/database.py,sha256=OIrwmmqON-8oCuQXVjD3y6b1JjZM1cf3qdOc5v0muHI,70491
|
866
|
-
pulumi_gcp/firestore/document.py,sha256=
|
866
|
+
pulumi_gcp/firestore/document.py,sha256=3vLAp8Sv-Q6aEFO554qaT2vWzu18L8Lw1S_LMT3Uc3Y,28429
|
867
867
|
pulumi_gcp/firestore/field.py,sha256=Udo7jJY-LdIndhf43Mq-RX5v6uRxgKJGo9s3sHH6bDE,29818
|
868
|
-
pulumi_gcp/firestore/index.py,sha256=
|
869
|
-
pulumi_gcp/firestore/outputs.py,sha256=
|
868
|
+
pulumi_gcp/firestore/index.py,sha256=JehsPY-SddOkghHuvOJZDrUBkIst2i-dSJaCbJurHDo,31642
|
869
|
+
pulumi_gcp/firestore/outputs.py,sha256=5LYCSnzjOB9jy5LHpJIM7UUXqwoHmXZ4BBKT-YWJzzo,15311
|
870
870
|
pulumi_gcp/folder/__init__.py,sha256=wLVz30d4tKDtVPp4BsH10obSXoVPu1gK7SMra3jJf88,569
|
871
871
|
pulumi_gcp/folder/_inputs.py,sha256=B6VFPMW7b7INnDQKjCx5dchEe_1sSokrW2iYGzFSLV0,16936
|
872
872
|
pulumi_gcp/folder/access_approval_settings.py,sha256=o9VqTRmxJnVaR7ZhiqWaq2DeJF1K37CK5sUNJ1JOTKk,34240
|
@@ -879,14 +879,14 @@ pulumi_gcp/folder/iam_policy.py,sha256=-zcksx7RNT469ilZ_CL4VJEre8FAS6Rz4yOS6y3hE
|
|
879
879
|
pulumi_gcp/folder/organization_policy.py,sha256=rnZECY8ym98stBkg3UulLTsU0fD9KEjAh5EiErGdDdg,33790
|
880
880
|
pulumi_gcp/folder/outputs.py,sha256=jGVhr68-_cEc9bgHTtlv7O64B0dEnocJ1osRuzFgwGk,20796
|
881
881
|
pulumi_gcp/gkebackup/__init__.py,sha256=uJwHrnL9CdtFjemmtE7ixWd1_TBPPzQmNdaCM5-gY8g,687
|
882
|
-
pulumi_gcp/gkebackup/_inputs.py,sha256=
|
883
|
-
pulumi_gcp/gkebackup/backup_plan.py,sha256=
|
882
|
+
pulumi_gcp/gkebackup/_inputs.py,sha256=14hFha47_1H-uHD88HmlBKZxoZVmqTpv1RDeLWTaQko,78164
|
883
|
+
pulumi_gcp/gkebackup/backup_plan.py,sha256=APS8SCS6bLghwE3AWLjmGURytf-HcLfKeCzftRMzNU8,71261
|
884
884
|
pulumi_gcp/gkebackup/backup_plan_iam_binding.py,sha256=7BuFIVFC288xqsb7PQlxD48vQBgLeUN3fGCXnPxCUIk,40236
|
885
885
|
pulumi_gcp/gkebackup/backup_plan_iam_member.py,sha256=xQPf1Z36JNuzrWVWDgyMEPj7IN8vM2ACBA0IQ4uf0Dc,39840
|
886
886
|
pulumi_gcp/gkebackup/backup_plan_iam_policy.py,sha256=cozgSuu6G2bSUyVZPGrD2D89yrkLbIQy_uV8PGhCA8Y,26602
|
887
887
|
pulumi_gcp/gkebackup/get_backup_plan_iam_policy.py,sha256=sLQ-gpYQOTwURrEoRBX33yZmn5kc92-kumhBdu4zXDI,6371
|
888
888
|
pulumi_gcp/gkebackup/get_restore_plan_iam_policy.py,sha256=ChpStaoS4OBJ8E84gCxxTeoVhOCjyarLIhAeXFV9GSI,6408
|
889
|
-
pulumi_gcp/gkebackup/outputs.py,sha256=
|
889
|
+
pulumi_gcp/gkebackup/outputs.py,sha256=YP43tBLXyft2SjAwhO56f9YQUWu7k_6VY7lpRVOfBL0,75868
|
890
890
|
pulumi_gcp/gkebackup/restore_plan.py,sha256=V62ax1p4MaliFbJ0UgcFH8CirCJeIhpnQemguo4pg0A,64096
|
891
891
|
pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=oREbs9sdnxpRxgU6leNkWCwb7F0FUVy8i2BCqQtt0AQ,48278
|
892
892
|
pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=unRMGm7fyirLnffLyDYvfoRA8eAxrywx94G8t3PaGfk,47982
|
@@ -1143,8 +1143,8 @@ pulumi_gcp/networksecurity/address_group_iam_member.py,sha256=pJ2yLhX-mvKRfK_ErQ
|
|
1143
1143
|
pulumi_gcp/networksecurity/address_group_iam_policy.py,sha256=T0YUjlxdl5PysR3MxmBICmt2xqGNOjsQaXQruZ2IuaI,20794
|
1144
1144
|
pulumi_gcp/networksecurity/authorization_policy.py,sha256=pz6uEmXmVWiaL_-zB4_ifAnvGd0wlWBI__jcdXI_0xE,34723
|
1145
1145
|
pulumi_gcp/networksecurity/client_tls_policy.py,sha256=GnEu_WAxe4z2J4xrZ6U-pXRZStIlxNur42WmwqPVhSs,37375
|
1146
|
-
pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=
|
1147
|
-
pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=
|
1146
|
+
pulumi_gcp/networksecurity/firewall_endpoint.py,sha256=MtExu9Di4m1ZaSFX02TBA-tJmYbTqQVJroHTNXEmmNk,29465
|
1147
|
+
pulumi_gcp/networksecurity/firewall_endpoint_association.py,sha256=6_Suol5Cvm4ILNU8fshjKFzF_9iuQe6qRpsyw-_oTis,35741
|
1148
1148
|
pulumi_gcp/networksecurity/gateway_security_policy.py,sha256=G9sTnq0IPutG9xKEZL3ReHaZFtfBdgzKnInWuqLKy68,32492
|
1149
1149
|
pulumi_gcp/networksecurity/gateway_security_policy_rule.py,sha256=DxK5llr9ByFTrumyx6T__V_Gm2IhcMAuJqzS89HoyK8,41806
|
1150
1150
|
pulumi_gcp/networksecurity/get_address_group_iam_policy.py,sha256=Rkdc_5P3MWBloXzVSs_67bU5WywYxAJ4bQguTC0sg1o,5877
|
@@ -1217,6 +1217,8 @@ pulumi_gcp/osconfig/outputs.py,sha256=J3ofBhfRjjTBO9VO1cg684r9Xyqy-ta0JRqV58MjiA
|
|
1217
1217
|
pulumi_gcp/osconfig/patch_deployment.py,sha256=fwnT7l_9ML8B2jl7HzlJWshLU6UsDrgfArmb5rnR2NY,57529
|
1218
1218
|
pulumi_gcp/oslogin/__init__.py,sha256=thj8ibhcxN1o0V4KwdePIdIhj8gSqILiwFI_YUNPV2k,299
|
1219
1219
|
pulumi_gcp/oslogin/ssh_public_key.py,sha256=C4PtTDPJzzVV6qcfbXi9UKiI9KcIgvOuy-1Tnkv9w9A,15234
|
1220
|
+
pulumi_gcp/parallelstore/__init__.py,sha256=v3vMyw1cX_icjI-eRktYMatDKbs_HbdjtMa-9V7mzCE,293
|
1221
|
+
pulumi_gcp/parallelstore/instance.py,sha256=L_6VQdKjbF01_m6thzl-jsiQWG8bhcR4Uvbh-ALQDzY,53740
|
1220
1222
|
pulumi_gcp/projects/__init__.py,sha256=LerNIui75Ij2EQssR9MdNqA7qW5binBw7BCIOKquMS8,815
|
1221
1223
|
pulumi_gcp/projects/_inputs.py,sha256=BNIrSi7qLjI5yLKOC8QygDFtyrC3RRSJnp5vYiDxCAA,30598
|
1222
1224
|
pulumi_gcp/projects/access_approval_settings.py,sha256=RE2DF4REHu1nmDEgjee-2OC0LYUE3B6h4BpuusHscIY,37731
|
@@ -1383,7 +1385,7 @@ pulumi_gcp/spanner/instance_iam_member.py,sha256=hcuUS3KfNsJvjie80hyuF3meyVQlKNj
|
|
1383
1385
|
pulumi_gcp/spanner/instance_iam_policy.py,sha256=9HvlrBDPGM_RoTTR_YWaSCU64XRf3ijnKyFYSGe4zow,20360
|
1384
1386
|
pulumi_gcp/spanner/outputs.py,sha256=7d0o75pIWmvqNGu5TyxCKx98raHXEAqEslUyQDuKcck,22660
|
1385
1387
|
pulumi_gcp/sql/__init__.py,sha256=UHbVKyhTPB_q4AM4C2dX93ElSmcDStMjfEvLXZlHv-k,734
|
1386
|
-
pulumi_gcp/sql/_inputs.py,sha256=
|
1388
|
+
pulumi_gcp/sql/_inputs.py,sha256=WoFqRB8UmqmaIx33lxSsnb3NtYPeTxrFw5PbG7oxkx8,98040
|
1387
1389
|
pulumi_gcp/sql/database.py,sha256=gIG_7VOhQjdCDL8M1V04vGkuichYOW6Qred4zVIhPq0,29766
|
1388
1390
|
pulumi_gcp/sql/database_instance.py,sha256=c3xdGmhx7rzAsCCcXsIczo57YGWytXlYmKqVSar00YE,84646
|
1389
1391
|
pulumi_gcp/sql/get_backup_run.py,sha256=_om1peuobuHW7vnalTvGbqezA5diS7cvwxn6z97rKwA,7471
|
@@ -1394,7 +1396,7 @@ pulumi_gcp/sql/get_database_instance_latest_recovery_time.py,sha256=SILutkcmAqPF
|
|
1394
1396
|
pulumi_gcp/sql/get_database_instances.py,sha256=k3XBrQFn1Hx41dQ7eUU0EX8_uXYXbe0xMnlDUVE1xKU,8526
|
1395
1397
|
pulumi_gcp/sql/get_databases.py,sha256=mLeZSvcA2esJruO2157BH2iDDKv8Qvg4uyMu19ajbJU,4578
|
1396
1398
|
pulumi_gcp/sql/get_tiers.py,sha256=C5rDeBTiQ8nC1lUygilQq6HAdfyUo_3wxyjIGbmk9Jo,4301
|
1397
|
-
pulumi_gcp/sql/outputs.py,sha256=
|
1399
|
+
pulumi_gcp/sql/outputs.py,sha256=RhX5QDj_2W7Ft206_EYFpKyfEws4F3myxRKx1ks7zns,225229
|
1398
1400
|
pulumi_gcp/sql/source_representation_instance.py,sha256=JMF0CFd5LG0h3V_UPMuwQcUvE2Md_JchKzVbqTZR8cM,38720
|
1399
1401
|
pulumi_gcp/sql/ssl_cert.py,sha256=GRGBXcfnfNtq0e37dEHnd3gUOV9aL47hVmHfNIE5AVk,22024
|
1400
1402
|
pulumi_gcp/sql/user.py,sha256=ar6KdlshFI7xFz5LkwNRVK4W2RQlVfZ5l4cgfvgbi-U,35513
|
@@ -1425,14 +1427,16 @@ pulumi_gcp/storage/object_acl.py,sha256=pABNhIbKDEWmX-lzMzkBmNjPyLN_lFVhONl3pNVD
|
|
1425
1427
|
pulumi_gcp/storage/outputs.py,sha256=DRhAZAkbpvoilFF9smtHbdfGzMfl6bjGDS5i8B3p6XE,141676
|
1426
1428
|
pulumi_gcp/storage/transfer_agent_pool.py,sha256=reLiITmhs9_AeMQPRKZBvSDBAwZRplrjB-7FbazHq5U,21587
|
1427
1429
|
pulumi_gcp/storage/transfer_job.py,sha256=2xPjOkqn4mhOfNWnfmrtvIWJz3rBFjtvIAXRk5qKwoo,41728
|
1428
|
-
pulumi_gcp/tags/__init__.py,sha256=
|
1430
|
+
pulumi_gcp/tags/__init__.py,sha256=73ySnVD68pkwP5R7Mt1eWSGxBu_HYv7XHBbqLaGG3yU,829
|
1429
1431
|
pulumi_gcp/tags/_inputs.py,sha256=kM8HC8i2y6OlNk7SyQQ2tdNzcU1m1t776zL0crZ7nR8,5272
|
1430
1432
|
pulumi_gcp/tags/get_tag_key.py,sha256=VCVBxqRbtRoQ2uSFkXvxpK_m6GQmG_GYnUuXqkefH0k,6233
|
1431
1433
|
pulumi_gcp/tags/get_tag_key_iam_policy.py,sha256=U11wvOYk6vk6hnXoUfIf3ttYuHTO7neY8aU3s_Ilb1s,4199
|
1434
|
+
pulumi_gcp/tags/get_tag_keys.py,sha256=utBH89iSpAbzMjbySFeBaW1-SzqPkUvCiWImOYde50E,3256
|
1432
1435
|
pulumi_gcp/tags/get_tag_value.py,sha256=AwzntPRquqHaH0k1PEwXNfOrBLpWHskW69_v_GNw3EQ,6066
|
1433
1436
|
pulumi_gcp/tags/get_tag_value_iam_policy.py,sha256=JQDJkyrCufwvFieJALIQiGHqY7WrpW23DnNAlaNk4cE,4295
|
1437
|
+
pulumi_gcp/tags/get_tag_values.py,sha256=C3yd9TiymRObxR9phtg5yuQSSmylbjEsH9S7GST-g7Q,3165
|
1434
1438
|
pulumi_gcp/tags/location_tag_binding.py,sha256=zA0VrZiSL8TKu0uttGtngSlBzHHA2rThV3MRmE17L6E,17485
|
1435
|
-
pulumi_gcp/tags/outputs.py,sha256=
|
1439
|
+
pulumi_gcp/tags/outputs.py,sha256=bW98RrElHkXUKxN8Rt_0gIf-hp3PUTYfqQVZX0BtfAE,12172
|
1436
1440
|
pulumi_gcp/tags/tag_binding.py,sha256=zEGq2uEFFRsKI0hjrAPrxDPhd37jAdEjbT3Npy2bb44,13501
|
1437
1441
|
pulumi_gcp/tags/tag_key.py,sha256=JV7LUH9c89zaMrtb2QbJYvA-qJPcdKpMM5xnmg8_sCg,27531
|
1438
1442
|
pulumi_gcp/tags/tag_key_iam_binding.py,sha256=Lf-Iwvr1ePkB6XGIHTP391s1mZZMm3U2NAbX_Bjb94Q,32599
|
@@ -1492,14 +1496,14 @@ pulumi_gcp/vmwareengine/get_network.py,sha256=EtTdDpW9xDNH9cK9dqI48y8xIYDU-YLSTN
|
|
1492
1496
|
pulumi_gcp/vmwareengine/get_network_peering.py,sha256=tTGqYuekeSWYFJxtGKyIfqjtSuSkBUhDfQg_9EDNfGI,11383
|
1493
1497
|
pulumi_gcp/vmwareengine/get_network_policy.py,sha256=PGbQI0KfWqDfoD7BHq536GGv7ONi58LmxnFGLdEEE3k,9281
|
1494
1498
|
pulumi_gcp/vmwareengine/get_nsx_credentials.py,sha256=wLv2o_lJnfXdEjIoSNQQd6_SWZ6uOvHogR84IcctNsg,4626
|
1495
|
-
pulumi_gcp/vmwareengine/get_private_cloud.py,sha256=
|
1499
|
+
pulumi_gcp/vmwareengine/get_private_cloud.py,sha256=GxqPVnT7HL6-iESY6zgVakPEzDoTvrWoJ4son8ZOJc0,9801
|
1496
1500
|
pulumi_gcp/vmwareengine/get_subnet.py,sha256=L0TiyfV3NMQ47R1KHT6TnH8BLJbcnxf68voncCgYpKw,9743
|
1497
1501
|
pulumi_gcp/vmwareengine/get_vcenter_credentials.py,sha256=o0lti6ufyPkSmbGBmKDucGbgaJqzjXpXy-y-UmZK9C4,4754
|
1498
1502
|
pulumi_gcp/vmwareengine/network.py,sha256=XzgYLAVeyKgftSxiVwrIszC0rLVe9YcQEi7bqfQljhQ,22941
|
1499
1503
|
pulumi_gcp/vmwareengine/network_peering.py,sha256=eAgV9Tl6lpUiz2a3KY3SUTkhU5eDR3T_6MBuQZVidNo,46870
|
1500
1504
|
pulumi_gcp/vmwareengine/network_policy.py,sha256=72zHdzLJOsKg-lx8pgqAKd_JVHm6pDAsD6iTa9ob0Gg,40363
|
1501
1505
|
pulumi_gcp/vmwareengine/outputs.py,sha256=HGhjovBOefNSK4BkLuW9y7DPPg0tP-TGwX7WbKkGEgM,50143
|
1502
|
-
pulumi_gcp/vmwareengine/private_cloud.py,sha256=
|
1506
|
+
pulumi_gcp/vmwareengine/private_cloud.py,sha256=dr3da6dpIx6j7yk6Ar1kiS5R4CuOaskeV0jvupDOsp8,37872
|
1503
1507
|
pulumi_gcp/vmwareengine/subnet.py,sha256=SZvwwQJ8bGfJHl-8peAlF-KKG2SHZbESsHVHnbLGZ3Q,29772
|
1504
1508
|
pulumi_gcp/vpcaccess/__init__.py,sha256=jJr9gxIqUsUWWesAqiYgHCU2aDlXvh7deDVD9kM2Qng,368
|
1505
1509
|
pulumi_gcp/vpcaccess/_inputs.py,sha256=on2mdTWvXTBAQibtU3apCiVfxC_biyAhC0ePLiFQoaI,2243
|
@@ -1530,7 +1534,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KnqAQNX01bqynD7N
|
|
1530
1534
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=ovQjU8TBCo9xjSArziSIyzV_HyIf0Ke4IaDLd4CnV2Q,35844
|
1531
1535
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=3zBaMJQnUB4QQygrFBk8HsuKtvQIwOPManWiphBVRCQ,35448
|
1532
1536
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=u5aW7Jd-oDY0SKcuAHn_O-sN7NIRvwS9Jz6slzHWlXo,22172
|
1533
|
-
pulumi_gcp-7.19.
|
1534
|
-
pulumi_gcp-7.19.
|
1535
|
-
pulumi_gcp-7.19.
|
1536
|
-
pulumi_gcp-7.19.
|
1537
|
+
pulumi_gcp-7.19.0a1713444144.dist-info/METADATA,sha256=3q7N2eXkAWQW7lwpWOiy0t63PSIj-ocidKqcDTf7BRE,2662
|
1538
|
+
pulumi_gcp-7.19.0a1713444144.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
1539
|
+
pulumi_gcp-7.19.0a1713444144.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1540
|
+
pulumi_gcp-7.19.0a1713444144.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/top_level.txt
RENAMED
File without changes
|