pulumi-gcp 8.19.0a1739290509__py3-none-any.whl → 8.19.1__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 +80 -0
- pulumi_gcp/_utilities.py +8 -4
- pulumi_gcp/accesscontextmanager/_inputs.py +288 -78
- pulumi_gcp/accesscontextmanager/outputs.py +186 -54
- pulumi_gcp/appengine/_inputs.py +3 -0
- pulumi_gcp/appengine/outputs.py +2 -0
- pulumi_gcp/beyondcorp/__init__.py +5 -0
- pulumi_gcp/beyondcorp/_inputs.py +189 -0
- pulumi_gcp/beyondcorp/application.py +604 -0
- pulumi_gcp/beyondcorp/application_iam_binding.py +1049 -0
- pulumi_gcp/beyondcorp/application_iam_member.py +1049 -0
- pulumi_gcp/beyondcorp/application_iam_policy.py +868 -0
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +174 -0
- pulumi_gcp/beyondcorp/outputs.py +111 -0
- pulumi_gcp/bigqueryanalyticshub/__init__.py +1 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +318 -0
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +808 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +263 -0
- pulumi_gcp/certificateauthority/_inputs.py +54 -0
- pulumi_gcp/certificateauthority/authority.py +149 -3
- pulumi_gcp/certificateauthority/get_authority.py +15 -4
- pulumi_gcp/certificateauthority/outputs.py +81 -0
- pulumi_gcp/cloudrunv2/_inputs.py +112 -0
- pulumi_gcp/cloudrunv2/outputs.py +144 -1
- pulumi_gcp/cloudrunv2/service.py +2 -0
- pulumi_gcp/colab/__init__.py +2 -0
- pulumi_gcp/colab/_inputs.py +655 -0
- pulumi_gcp/colab/notebook_execution.py +1259 -0
- pulumi_gcp/colab/outputs.py +512 -0
- pulumi_gcp/colab/runtime.py +266 -2
- pulumi_gcp/colab/runtime_template.py +79 -3
- pulumi_gcp/colab/schedule.py +1318 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +204 -0
- pulumi_gcp/compute/firewall_policy.py +54 -43
- pulumi_gcp/compute/forwarding_rule.py +103 -0
- pulumi_gcp/compute/get_forwarding_rule.py +12 -1
- pulumi_gcp/compute/interconnect_attachment.py +12 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +1011 -0
- pulumi_gcp/compute/outputs.py +187 -0
- pulumi_gcp/compute/public_advertised_prefix.py +35 -7
- pulumi_gcp/compute/public_delegated_prefix.py +171 -7
- pulumi_gcp/compute/region_resize_request.py +21 -22
- pulumi_gcp/compute/resize_request.py +22 -23
- pulumi_gcp/compute/subnetwork.py +14 -7
- pulumi_gcp/container/_inputs.py +54 -1
- pulumi_gcp/container/outputs.py +79 -1
- pulumi_gcp/datastream/connection_profile.py +120 -46
- pulumi_gcp/discoveryengine/chat_engine.py +7 -7
- pulumi_gcp/filestore/_inputs.py +222 -0
- pulumi_gcp/filestore/get_instance.py +23 -1
- pulumi_gcp/filestore/instance.py +86 -0
- pulumi_gcp/filestore/outputs.py +282 -0
- pulumi_gcp/gemini/__init__.py +2 -0
- pulumi_gcp/gemini/logging_setting.py +671 -0
- pulumi_gcp/gemini/release_channel_setting.py +639 -0
- pulumi_gcp/memorystore/_inputs.py +296 -0
- pulumi_gcp/memorystore/instance.py +32 -28
- pulumi_gcp/memorystore/outputs.py +224 -0
- pulumi_gcp/monitoring/_inputs.py +12 -9
- pulumi_gcp/monitoring/outputs.py +8 -6
- pulumi_gcp/networkservices/_inputs.py +89 -0
- pulumi_gcp/networkservices/outputs.py +75 -0
- pulumi_gcp/parametermanager/__init__.py +2 -0
- pulumi_gcp/parametermanager/get_parameter_version_render.py +199 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +220 -0
- pulumi_gcp/privilegedaccessmanager/entitlement.py +14 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/branch_rule.py +4 -0
- pulumi_gcp/securesourcemanager/repository.py +4 -0
- pulumi_gcp/storage/bucket_object.py +8 -0
- pulumi_gcp/workbench/instance.py +70 -2
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1.dist-info}/RECORD +76 -63
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.19.0a1739290509.dist-info → pulumi_gcp-8.19.1.dist-info}/top_level.txt +0 -0
@@ -22,20 +22,26 @@ class PublicDelegatedPrefixArgs:
|
|
22
22
|
ip_cidr_range: pulumi.Input[str],
|
23
23
|
parent_prefix: pulumi.Input[str],
|
24
24
|
region: pulumi.Input[str],
|
25
|
+
allocatable_prefix_length: Optional[pulumi.Input[int]] = None,
|
25
26
|
description: Optional[pulumi.Input[str]] = None,
|
26
27
|
is_live_migration: Optional[pulumi.Input[bool]] = None,
|
28
|
+
mode: Optional[pulumi.Input[str]] = None,
|
27
29
|
name: Optional[pulumi.Input[str]] = None,
|
28
30
|
project: Optional[pulumi.Input[str]] = None):
|
29
31
|
"""
|
30
32
|
The set of arguments for constructing a PublicDelegatedPrefix resource.
|
31
|
-
:param pulumi.Input[str] ip_cidr_range: The
|
33
|
+
:param pulumi.Input[str] ip_cidr_range: The IP address range, in CIDR format, represented by this public delegated prefix.
|
32
34
|
|
33
35
|
|
34
36
|
- - -
|
35
37
|
:param pulumi.Input[str] parent_prefix: The URL of parent prefix. Either PublicAdvertisedPrefix or PublicDelegatedPrefix.
|
36
38
|
:param pulumi.Input[str] region: A region where the prefix will reside.
|
39
|
+
:param pulumi.Input[int] allocatable_prefix_length: The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
37
40
|
:param pulumi.Input[str] description: An optional description of this resource.
|
38
41
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
42
|
+
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
43
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
44
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
39
45
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
40
46
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
41
47
|
long and match the regular expression `a-z?`
|
@@ -48,10 +54,14 @@ class PublicDelegatedPrefixArgs:
|
|
48
54
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
49
55
|
pulumi.set(__self__, "parent_prefix", parent_prefix)
|
50
56
|
pulumi.set(__self__, "region", region)
|
57
|
+
if allocatable_prefix_length is not None:
|
58
|
+
pulumi.set(__self__, "allocatable_prefix_length", allocatable_prefix_length)
|
51
59
|
if description is not None:
|
52
60
|
pulumi.set(__self__, "description", description)
|
53
61
|
if is_live_migration is not None:
|
54
62
|
pulumi.set(__self__, "is_live_migration", is_live_migration)
|
63
|
+
if mode is not None:
|
64
|
+
pulumi.set(__self__, "mode", mode)
|
55
65
|
if name is not None:
|
56
66
|
pulumi.set(__self__, "name", name)
|
57
67
|
if project is not None:
|
@@ -61,7 +71,7 @@ class PublicDelegatedPrefixArgs:
|
|
61
71
|
@pulumi.getter(name="ipCidrRange")
|
62
72
|
def ip_cidr_range(self) -> pulumi.Input[str]:
|
63
73
|
"""
|
64
|
-
The
|
74
|
+
The IP address range, in CIDR format, represented by this public delegated prefix.
|
65
75
|
|
66
76
|
|
67
77
|
- - -
|
@@ -96,6 +106,18 @@ class PublicDelegatedPrefixArgs:
|
|
96
106
|
def region(self, value: pulumi.Input[str]):
|
97
107
|
pulumi.set(self, "region", value)
|
98
108
|
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="allocatablePrefixLength")
|
111
|
+
def allocatable_prefix_length(self) -> Optional[pulumi.Input[int]]:
|
112
|
+
"""
|
113
|
+
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "allocatable_prefix_length")
|
116
|
+
|
117
|
+
@allocatable_prefix_length.setter
|
118
|
+
def allocatable_prefix_length(self, value: Optional[pulumi.Input[int]]):
|
119
|
+
pulumi.set(self, "allocatable_prefix_length", value)
|
120
|
+
|
99
121
|
@property
|
100
122
|
@pulumi.getter
|
101
123
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -120,6 +142,20 @@ class PublicDelegatedPrefixArgs:
|
|
120
142
|
def is_live_migration(self, value: Optional[pulumi.Input[bool]]):
|
121
143
|
pulumi.set(self, "is_live_migration", value)
|
122
144
|
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def mode(self) -> Optional[pulumi.Input[str]]:
|
148
|
+
"""
|
149
|
+
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
150
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
151
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "mode")
|
154
|
+
|
155
|
+
@mode.setter
|
156
|
+
def mode(self, value: Optional[pulumi.Input[str]]):
|
157
|
+
pulumi.set(self, "mode", value)
|
158
|
+
|
123
159
|
@property
|
124
160
|
@pulumi.getter
|
125
161
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -154,9 +190,11 @@ class PublicDelegatedPrefixArgs:
|
|
154
190
|
@pulumi.input_type
|
155
191
|
class _PublicDelegatedPrefixState:
|
156
192
|
def __init__(__self__, *,
|
193
|
+
allocatable_prefix_length: Optional[pulumi.Input[int]] = None,
|
157
194
|
description: Optional[pulumi.Input[str]] = None,
|
158
195
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
159
196
|
is_live_migration: Optional[pulumi.Input[bool]] = None,
|
197
|
+
mode: Optional[pulumi.Input[str]] = None,
|
160
198
|
name: Optional[pulumi.Input[str]] = None,
|
161
199
|
parent_prefix: Optional[pulumi.Input[str]] = None,
|
162
200
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -164,12 +202,16 @@ class _PublicDelegatedPrefixState:
|
|
164
202
|
self_link: Optional[pulumi.Input[str]] = None):
|
165
203
|
"""
|
166
204
|
Input properties used for looking up and filtering PublicDelegatedPrefix resources.
|
205
|
+
:param pulumi.Input[int] allocatable_prefix_length: The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
167
206
|
:param pulumi.Input[str] description: An optional description of this resource.
|
168
|
-
:param pulumi.Input[str] ip_cidr_range: The
|
207
|
+
:param pulumi.Input[str] ip_cidr_range: The IP address range, in CIDR format, represented by this public delegated prefix.
|
169
208
|
|
170
209
|
|
171
210
|
- - -
|
172
211
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
212
|
+
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
213
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
214
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
173
215
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
174
216
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
175
217
|
long and match the regular expression `a-z?`
|
@@ -182,12 +224,16 @@ class _PublicDelegatedPrefixState:
|
|
182
224
|
:param pulumi.Input[str] region: A region where the prefix will reside.
|
183
225
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
184
226
|
"""
|
227
|
+
if allocatable_prefix_length is not None:
|
228
|
+
pulumi.set(__self__, "allocatable_prefix_length", allocatable_prefix_length)
|
185
229
|
if description is not None:
|
186
230
|
pulumi.set(__self__, "description", description)
|
187
231
|
if ip_cidr_range is not None:
|
188
232
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
189
233
|
if is_live_migration is not None:
|
190
234
|
pulumi.set(__self__, "is_live_migration", is_live_migration)
|
235
|
+
if mode is not None:
|
236
|
+
pulumi.set(__self__, "mode", mode)
|
191
237
|
if name is not None:
|
192
238
|
pulumi.set(__self__, "name", name)
|
193
239
|
if parent_prefix is not None:
|
@@ -199,6 +245,18 @@ class _PublicDelegatedPrefixState:
|
|
199
245
|
if self_link is not None:
|
200
246
|
pulumi.set(__self__, "self_link", self_link)
|
201
247
|
|
248
|
+
@property
|
249
|
+
@pulumi.getter(name="allocatablePrefixLength")
|
250
|
+
def allocatable_prefix_length(self) -> Optional[pulumi.Input[int]]:
|
251
|
+
"""
|
252
|
+
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
253
|
+
"""
|
254
|
+
return pulumi.get(self, "allocatable_prefix_length")
|
255
|
+
|
256
|
+
@allocatable_prefix_length.setter
|
257
|
+
def allocatable_prefix_length(self, value: Optional[pulumi.Input[int]]):
|
258
|
+
pulumi.set(self, "allocatable_prefix_length", value)
|
259
|
+
|
202
260
|
@property
|
203
261
|
@pulumi.getter
|
204
262
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -215,7 +273,7 @@ class _PublicDelegatedPrefixState:
|
|
215
273
|
@pulumi.getter(name="ipCidrRange")
|
216
274
|
def ip_cidr_range(self) -> Optional[pulumi.Input[str]]:
|
217
275
|
"""
|
218
|
-
The
|
276
|
+
The IP address range, in CIDR format, represented by this public delegated prefix.
|
219
277
|
|
220
278
|
|
221
279
|
- - -
|
@@ -238,6 +296,20 @@ class _PublicDelegatedPrefixState:
|
|
238
296
|
def is_live_migration(self, value: Optional[pulumi.Input[bool]]):
|
239
297
|
pulumi.set(self, "is_live_migration", value)
|
240
298
|
|
299
|
+
@property
|
300
|
+
@pulumi.getter
|
301
|
+
def mode(self) -> Optional[pulumi.Input[str]]:
|
302
|
+
"""
|
303
|
+
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
304
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
305
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
306
|
+
"""
|
307
|
+
return pulumi.get(self, "mode")
|
308
|
+
|
309
|
+
@mode.setter
|
310
|
+
def mode(self, value: Optional[pulumi.Input[str]]):
|
311
|
+
pulumi.set(self, "mode", value)
|
312
|
+
|
241
313
|
@property
|
242
314
|
@pulumi.getter
|
243
315
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -310,9 +382,11 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
310
382
|
def __init__(__self__,
|
311
383
|
resource_name: str,
|
312
384
|
opts: Optional[pulumi.ResourceOptions] = None,
|
385
|
+
allocatable_prefix_length: Optional[pulumi.Input[int]] = None,
|
313
386
|
description: Optional[pulumi.Input[str]] = None,
|
314
387
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
315
388
|
is_live_migration: Optional[pulumi.Input[bool]] = None,
|
389
|
+
mode: Optional[pulumi.Input[str]] = None,
|
316
390
|
name: Optional[pulumi.Input[str]] = None,
|
317
391
|
parent_prefix: Optional[pulumi.Input[str]] = None,
|
318
392
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -347,6 +421,34 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
347
421
|
ip_cidr_range="127.127.0.0/24",
|
348
422
|
parent_prefix=advertised.id)
|
349
423
|
```
|
424
|
+
### Public Delegated Prefixes Ipv6
|
425
|
+
|
426
|
+
```python
|
427
|
+
import pulumi
|
428
|
+
import pulumi_gcp as gcp
|
429
|
+
|
430
|
+
advertised = gcp.compute.PublicAdvertisedPrefix("advertised",
|
431
|
+
name="ipv6-pap",
|
432
|
+
description="description",
|
433
|
+
dns_verification_ip="2001:db8::",
|
434
|
+
ip_cidr_range="2001:db8::/32",
|
435
|
+
pdp_scope="REGIONAL")
|
436
|
+
prefix = gcp.compute.PublicDelegatedPrefix("prefix",
|
437
|
+
name="ipv6-root-pdp",
|
438
|
+
description="test-delegation-mode-pdp",
|
439
|
+
region="us-west1",
|
440
|
+
ip_cidr_range="2001:db8::/40",
|
441
|
+
parent_prefix=advertised.id,
|
442
|
+
mode="DELEGATION")
|
443
|
+
subprefix = gcp.compute.PublicDelegatedPrefix("subprefix",
|
444
|
+
name="ipv6-sub-pdp",
|
445
|
+
description="test-forwarding-rule-mode-pdp",
|
446
|
+
region="us-west1",
|
447
|
+
ip_cidr_range="2001:db8::/48",
|
448
|
+
parent_prefix=prefix.id,
|
449
|
+
allocatable_prefix_length=64,
|
450
|
+
mode="EXTERNAL_IPV6_FORWARDING_RULE_CREATION")
|
451
|
+
```
|
350
452
|
|
351
453
|
## Import
|
352
454
|
|
@@ -380,12 +482,16 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
380
482
|
|
381
483
|
:param str resource_name: The name of the resource.
|
382
484
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
485
|
+
:param pulumi.Input[int] allocatable_prefix_length: The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
383
486
|
:param pulumi.Input[str] description: An optional description of this resource.
|
384
|
-
:param pulumi.Input[str] ip_cidr_range: The
|
487
|
+
:param pulumi.Input[str] ip_cidr_range: The IP address range, in CIDR format, represented by this public delegated prefix.
|
385
488
|
|
386
489
|
|
387
490
|
- - -
|
388
491
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
492
|
+
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
493
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
494
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
389
495
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
390
496
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
391
497
|
long and match the regular expression `a-z?`
|
@@ -432,6 +538,34 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
432
538
|
ip_cidr_range="127.127.0.0/24",
|
433
539
|
parent_prefix=advertised.id)
|
434
540
|
```
|
541
|
+
### Public Delegated Prefixes Ipv6
|
542
|
+
|
543
|
+
```python
|
544
|
+
import pulumi
|
545
|
+
import pulumi_gcp as gcp
|
546
|
+
|
547
|
+
advertised = gcp.compute.PublicAdvertisedPrefix("advertised",
|
548
|
+
name="ipv6-pap",
|
549
|
+
description="description",
|
550
|
+
dns_verification_ip="2001:db8::",
|
551
|
+
ip_cidr_range="2001:db8::/32",
|
552
|
+
pdp_scope="REGIONAL")
|
553
|
+
prefix = gcp.compute.PublicDelegatedPrefix("prefix",
|
554
|
+
name="ipv6-root-pdp",
|
555
|
+
description="test-delegation-mode-pdp",
|
556
|
+
region="us-west1",
|
557
|
+
ip_cidr_range="2001:db8::/40",
|
558
|
+
parent_prefix=advertised.id,
|
559
|
+
mode="DELEGATION")
|
560
|
+
subprefix = gcp.compute.PublicDelegatedPrefix("subprefix",
|
561
|
+
name="ipv6-sub-pdp",
|
562
|
+
description="test-forwarding-rule-mode-pdp",
|
563
|
+
region="us-west1",
|
564
|
+
ip_cidr_range="2001:db8::/48",
|
565
|
+
parent_prefix=prefix.id,
|
566
|
+
allocatable_prefix_length=64,
|
567
|
+
mode="EXTERNAL_IPV6_FORWARDING_RULE_CREATION")
|
568
|
+
```
|
435
569
|
|
436
570
|
## Import
|
437
571
|
|
@@ -478,9 +612,11 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
478
612
|
def _internal_init(__self__,
|
479
613
|
resource_name: str,
|
480
614
|
opts: Optional[pulumi.ResourceOptions] = None,
|
615
|
+
allocatable_prefix_length: Optional[pulumi.Input[int]] = None,
|
481
616
|
description: Optional[pulumi.Input[str]] = None,
|
482
617
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
483
618
|
is_live_migration: Optional[pulumi.Input[bool]] = None,
|
619
|
+
mode: Optional[pulumi.Input[str]] = None,
|
484
620
|
name: Optional[pulumi.Input[str]] = None,
|
485
621
|
parent_prefix: Optional[pulumi.Input[str]] = None,
|
486
622
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -494,11 +630,13 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
494
630
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
495
631
|
__props__ = PublicDelegatedPrefixArgs.__new__(PublicDelegatedPrefixArgs)
|
496
632
|
|
633
|
+
__props__.__dict__["allocatable_prefix_length"] = allocatable_prefix_length
|
497
634
|
__props__.__dict__["description"] = description
|
498
635
|
if ip_cidr_range is None and not opts.urn:
|
499
636
|
raise TypeError("Missing required property 'ip_cidr_range'")
|
500
637
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
501
638
|
__props__.__dict__["is_live_migration"] = is_live_migration
|
639
|
+
__props__.__dict__["mode"] = mode
|
502
640
|
__props__.__dict__["name"] = name
|
503
641
|
if parent_prefix is None and not opts.urn:
|
504
642
|
raise TypeError("Missing required property 'parent_prefix'")
|
@@ -518,9 +656,11 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
518
656
|
def get(resource_name: str,
|
519
657
|
id: pulumi.Input[str],
|
520
658
|
opts: Optional[pulumi.ResourceOptions] = None,
|
659
|
+
allocatable_prefix_length: Optional[pulumi.Input[int]] = None,
|
521
660
|
description: Optional[pulumi.Input[str]] = None,
|
522
661
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
523
662
|
is_live_migration: Optional[pulumi.Input[bool]] = None,
|
663
|
+
mode: Optional[pulumi.Input[str]] = None,
|
524
664
|
name: Optional[pulumi.Input[str]] = None,
|
525
665
|
parent_prefix: Optional[pulumi.Input[str]] = None,
|
526
666
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -533,12 +673,16 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
533
673
|
:param str resource_name: The unique name of the resulting resource.
|
534
674
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
535
675
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
676
|
+
:param pulumi.Input[int] allocatable_prefix_length: The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
536
677
|
:param pulumi.Input[str] description: An optional description of this resource.
|
537
|
-
:param pulumi.Input[str] ip_cidr_range: The
|
678
|
+
:param pulumi.Input[str] ip_cidr_range: The IP address range, in CIDR format, represented by this public delegated prefix.
|
538
679
|
|
539
680
|
|
540
681
|
- - -
|
541
682
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
683
|
+
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
684
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
685
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
542
686
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
543
687
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
544
688
|
long and match the regular expression `a-z?`
|
@@ -555,9 +699,11 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
555
699
|
|
556
700
|
__props__ = _PublicDelegatedPrefixState.__new__(_PublicDelegatedPrefixState)
|
557
701
|
|
702
|
+
__props__.__dict__["allocatable_prefix_length"] = allocatable_prefix_length
|
558
703
|
__props__.__dict__["description"] = description
|
559
704
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
560
705
|
__props__.__dict__["is_live_migration"] = is_live_migration
|
706
|
+
__props__.__dict__["mode"] = mode
|
561
707
|
__props__.__dict__["name"] = name
|
562
708
|
__props__.__dict__["parent_prefix"] = parent_prefix
|
563
709
|
__props__.__dict__["project"] = project
|
@@ -565,6 +711,14 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
565
711
|
__props__.__dict__["self_link"] = self_link
|
566
712
|
return PublicDelegatedPrefix(resource_name, opts=opts, __props__=__props__)
|
567
713
|
|
714
|
+
@property
|
715
|
+
@pulumi.getter(name="allocatablePrefixLength")
|
716
|
+
def allocatable_prefix_length(self) -> pulumi.Output[Optional[int]]:
|
717
|
+
"""
|
718
|
+
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
719
|
+
"""
|
720
|
+
return pulumi.get(self, "allocatable_prefix_length")
|
721
|
+
|
568
722
|
@property
|
569
723
|
@pulumi.getter
|
570
724
|
def description(self) -> pulumi.Output[Optional[str]]:
|
@@ -577,7 +731,7 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
577
731
|
@pulumi.getter(name="ipCidrRange")
|
578
732
|
def ip_cidr_range(self) -> pulumi.Output[str]:
|
579
733
|
"""
|
580
|
-
The
|
734
|
+
The IP address range, in CIDR format, represented by this public delegated prefix.
|
581
735
|
|
582
736
|
|
583
737
|
- - -
|
@@ -592,6 +746,16 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
592
746
|
"""
|
593
747
|
return pulumi.get(self, "is_live_migration")
|
594
748
|
|
749
|
+
@property
|
750
|
+
@pulumi.getter
|
751
|
+
def mode(self) -> pulumi.Output[Optional[str]]:
|
752
|
+
"""
|
753
|
+
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
754
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
755
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
756
|
+
"""
|
757
|
+
return pulumi.get(self, "mode")
|
758
|
+
|
595
759
|
@property
|
596
760
|
@pulumi.getter
|
597
761
|
def name(self) -> pulumi.Output[str]:
|
@@ -22,11 +22,11 @@ __all__ = ['RegionResizeRequestArgs', 'RegionResizeRequest']
|
|
22
22
|
class RegionResizeRequestArgs:
|
23
23
|
def __init__(__self__, *,
|
24
24
|
instance_group_manager: pulumi.Input[str],
|
25
|
-
region: pulumi.Input[str],
|
26
25
|
resize_by: pulumi.Input[int],
|
27
26
|
description: Optional[pulumi.Input[str]] = None,
|
28
27
|
name: Optional[pulumi.Input[str]] = None,
|
29
28
|
project: Optional[pulumi.Input[str]] = None,
|
29
|
+
region: Optional[pulumi.Input[str]] = None,
|
30
30
|
requested_run_duration: Optional[pulumi.Input['RegionResizeRequestRequestedRunDurationArgs']] = None):
|
31
31
|
"""
|
32
32
|
The set of arguments for constructing a RegionResizeRequest resource.
|
@@ -34,17 +34,16 @@ class RegionResizeRequestArgs:
|
|
34
34
|
|
35
35
|
|
36
36
|
- - -
|
37
|
-
:param pulumi.Input[str] region: The reference of the compute region scoping this request.
|
38
37
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
39
38
|
:param pulumi.Input[str] description: An optional description of this resize-request.
|
40
39
|
:param pulumi.Input[str] name: The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
|
41
40
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
42
41
|
If it is not provided, the provider project is used.
|
42
|
+
:param pulumi.Input[str] region: The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
43
43
|
:param pulumi.Input['RegionResizeRequestRequestedRunDurationArgs'] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
|
44
44
|
Structure is documented below.
|
45
45
|
"""
|
46
46
|
pulumi.set(__self__, "instance_group_manager", instance_group_manager)
|
47
|
-
pulumi.set(__self__, "region", region)
|
48
47
|
pulumi.set(__self__, "resize_by", resize_by)
|
49
48
|
if description is not None:
|
50
49
|
pulumi.set(__self__, "description", description)
|
@@ -52,6 +51,8 @@ class RegionResizeRequestArgs:
|
|
52
51
|
pulumi.set(__self__, "name", name)
|
53
52
|
if project is not None:
|
54
53
|
pulumi.set(__self__, "project", project)
|
54
|
+
if region is not None:
|
55
|
+
pulumi.set(__self__, "region", region)
|
55
56
|
if requested_run_duration is not None:
|
56
57
|
pulumi.set(__self__, "requested_run_duration", requested_run_duration)
|
57
58
|
|
@@ -70,18 +71,6 @@ class RegionResizeRequestArgs:
|
|
70
71
|
def instance_group_manager(self, value: pulumi.Input[str]):
|
71
72
|
pulumi.set(self, "instance_group_manager", value)
|
72
73
|
|
73
|
-
@property
|
74
|
-
@pulumi.getter
|
75
|
-
def region(self) -> pulumi.Input[str]:
|
76
|
-
"""
|
77
|
-
The reference of the compute region scoping this request.
|
78
|
-
"""
|
79
|
-
return pulumi.get(self, "region")
|
80
|
-
|
81
|
-
@region.setter
|
82
|
-
def region(self, value: pulumi.Input[str]):
|
83
|
-
pulumi.set(self, "region", value)
|
84
|
-
|
85
74
|
@property
|
86
75
|
@pulumi.getter(name="resizeBy")
|
87
76
|
def resize_by(self) -> pulumi.Input[int]:
|
@@ -131,6 +120,18 @@ class RegionResizeRequestArgs:
|
|
131
120
|
def project(self, value: Optional[pulumi.Input[str]]):
|
132
121
|
pulumi.set(self, "project", value)
|
133
122
|
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
126
|
+
"""
|
127
|
+
The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "region")
|
130
|
+
|
131
|
+
@region.setter
|
132
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
133
|
+
pulumi.set(self, "region", value)
|
134
|
+
|
134
135
|
@property
|
135
136
|
@pulumi.getter(name="requestedRunDuration")
|
136
137
|
def requested_run_duration(self) -> Optional[pulumi.Input['RegionResizeRequestRequestedRunDurationArgs']]:
|
@@ -169,7 +170,7 @@ class _RegionResizeRequestState:
|
|
169
170
|
:param pulumi.Input[str] name: The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
|
170
171
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
171
172
|
If it is not provided, the provider project is used.
|
172
|
-
:param pulumi.Input[str] region: The reference of the compute region scoping this request.
|
173
|
+
:param pulumi.Input[str] region: The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
173
174
|
:param pulumi.Input['RegionResizeRequestRequestedRunDurationArgs'] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
|
174
175
|
Structure is documented below.
|
175
176
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
@@ -266,7 +267,7 @@ class _RegionResizeRequestState:
|
|
266
267
|
@pulumi.getter
|
267
268
|
def region(self) -> Optional[pulumi.Input[str]]:
|
268
269
|
"""
|
269
|
-
The reference of the compute region scoping this request.
|
270
|
+
The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
270
271
|
"""
|
271
272
|
return pulumi.get(self, "region")
|
272
273
|
|
@@ -457,7 +458,7 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
457
458
|
:param pulumi.Input[str] name: The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
|
458
459
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
459
460
|
If it is not provided, the provider project is used.
|
460
|
-
:param pulumi.Input[str] region: The reference of the compute region scoping this request.
|
461
|
+
:param pulumi.Input[str] region: The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
461
462
|
:param pulumi.Input[Union['RegionResizeRequestRequestedRunDurationArgs', 'RegionResizeRequestRequestedRunDurationArgsDict']] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
|
462
463
|
Structure is documented below.
|
463
464
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
@@ -614,8 +615,6 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
614
615
|
__props__.__dict__["instance_group_manager"] = instance_group_manager
|
615
616
|
__props__.__dict__["name"] = name
|
616
617
|
__props__.__dict__["project"] = project
|
617
|
-
if region is None and not opts.urn:
|
618
|
-
raise TypeError("Missing required property 'region'")
|
619
618
|
__props__.__dict__["region"] = region
|
620
619
|
__props__.__dict__["requested_run_duration"] = requested_run_duration
|
621
620
|
if resize_by is None and not opts.urn:
|
@@ -660,7 +659,7 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
660
659
|
:param pulumi.Input[str] name: The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
|
661
660
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
662
661
|
If it is not provided, the provider project is used.
|
663
|
-
:param pulumi.Input[str] region: The reference of the compute region scoping this request.
|
662
|
+
:param pulumi.Input[str] region: The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
664
663
|
:param pulumi.Input[Union['RegionResizeRequestRequestedRunDurationArgs', 'RegionResizeRequestRequestedRunDurationArgsDict']] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
|
665
664
|
Structure is documented below.
|
666
665
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
@@ -732,7 +731,7 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
732
731
|
@pulumi.getter
|
733
732
|
def region(self) -> pulumi.Output[str]:
|
734
733
|
"""
|
735
|
-
The reference of the compute region scoping this request.
|
734
|
+
The reference of the compute region scoping this request. If it is not provided, the provider region is used.
|
736
735
|
"""
|
737
736
|
return pulumi.get(self, "region")
|
738
737
|
|
@@ -23,11 +23,11 @@ class ResizeRequestArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
instance_group_manager: pulumi.Input[str],
|
25
25
|
resize_by: pulumi.Input[int],
|
26
|
-
zone: pulumi.Input[str],
|
27
26
|
description: Optional[pulumi.Input[str]] = None,
|
28
27
|
name: Optional[pulumi.Input[str]] = None,
|
29
28
|
project: Optional[pulumi.Input[str]] = None,
|
30
|
-
requested_run_duration: Optional[pulumi.Input['ResizeRequestRequestedRunDurationArgs']] = None
|
29
|
+
requested_run_duration: Optional[pulumi.Input['ResizeRequestRequestedRunDurationArgs']] = None,
|
30
|
+
zone: Optional[pulumi.Input[str]] = None):
|
31
31
|
"""
|
32
32
|
The set of arguments for constructing a ResizeRequest resource.
|
33
33
|
:param pulumi.Input[str] instance_group_manager: The reference of the instance group manager this ResizeRequest is a part of.
|
@@ -35,17 +35,16 @@ class ResizeRequestArgs:
|
|
35
35
|
|
36
36
|
- - -
|
37
37
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
38
|
-
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request.
|
39
38
|
:param pulumi.Input[str] description: An optional description of this resize-request.
|
40
39
|
:param pulumi.Input[str] name: The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
|
41
40
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
42
41
|
If it is not provided, the provider project is used.
|
43
42
|
:param pulumi.Input['ResizeRequestRequestedRunDurationArgs'] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instance will be deleted.
|
44
43
|
Structure is documented below.
|
44
|
+
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
45
45
|
"""
|
46
46
|
pulumi.set(__self__, "instance_group_manager", instance_group_manager)
|
47
47
|
pulumi.set(__self__, "resize_by", resize_by)
|
48
|
-
pulumi.set(__self__, "zone", zone)
|
49
48
|
if description is not None:
|
50
49
|
pulumi.set(__self__, "description", description)
|
51
50
|
if name is not None:
|
@@ -54,6 +53,8 @@ class ResizeRequestArgs:
|
|
54
53
|
pulumi.set(__self__, "project", project)
|
55
54
|
if requested_run_duration is not None:
|
56
55
|
pulumi.set(__self__, "requested_run_duration", requested_run_duration)
|
56
|
+
if zone is not None:
|
57
|
+
pulumi.set(__self__, "zone", zone)
|
57
58
|
|
58
59
|
@property
|
59
60
|
@pulumi.getter(name="instanceGroupManager")
|
@@ -82,18 +83,6 @@ class ResizeRequestArgs:
|
|
82
83
|
def resize_by(self, value: pulumi.Input[int]):
|
83
84
|
pulumi.set(self, "resize_by", value)
|
84
85
|
|
85
|
-
@property
|
86
|
-
@pulumi.getter
|
87
|
-
def zone(self) -> pulumi.Input[str]:
|
88
|
-
"""
|
89
|
-
The reference of the compute zone scoping this request.
|
90
|
-
"""
|
91
|
-
return pulumi.get(self, "zone")
|
92
|
-
|
93
|
-
@zone.setter
|
94
|
-
def zone(self, value: pulumi.Input[str]):
|
95
|
-
pulumi.set(self, "zone", value)
|
96
|
-
|
97
86
|
@property
|
98
87
|
@pulumi.getter
|
99
88
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -144,6 +133,18 @@ class ResizeRequestArgs:
|
|
144
133
|
def requested_run_duration(self, value: Optional[pulumi.Input['ResizeRequestRequestedRunDurationArgs']]):
|
145
134
|
pulumi.set(self, "requested_run_duration", value)
|
146
135
|
|
136
|
+
@property
|
137
|
+
@pulumi.getter
|
138
|
+
def zone(self) -> Optional[pulumi.Input[str]]:
|
139
|
+
"""
|
140
|
+
The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "zone")
|
143
|
+
|
144
|
+
@zone.setter
|
145
|
+
def zone(self, value: Optional[pulumi.Input[str]]):
|
146
|
+
pulumi.set(self, "zone", value)
|
147
|
+
|
147
148
|
|
148
149
|
@pulumi.input_type
|
149
150
|
class _ResizeRequestState:
|
@@ -175,7 +176,7 @@ class _ResizeRequestState:
|
|
175
176
|
:param pulumi.Input[str] state: Current state of the request.
|
176
177
|
:param pulumi.Input[Sequence[pulumi.Input['ResizeRequestStatusArgs']]] statuses: Status of the request.
|
177
178
|
Structure is documented below.
|
178
|
-
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request.
|
179
|
+
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
179
180
|
"""
|
180
181
|
if creation_timestamp is not None:
|
181
182
|
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
@@ -316,7 +317,7 @@ class _ResizeRequestState:
|
|
316
317
|
@pulumi.getter
|
317
318
|
def zone(self) -> Optional[pulumi.Input[str]]:
|
318
319
|
"""
|
319
|
-
The reference of the compute zone scoping this request.
|
320
|
+
The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
320
321
|
"""
|
321
322
|
return pulumi.get(self, "zone")
|
322
323
|
|
@@ -458,7 +459,7 @@ class ResizeRequest(pulumi.CustomResource):
|
|
458
459
|
:param pulumi.Input[Union['ResizeRequestRequestedRunDurationArgs', 'ResizeRequestRequestedRunDurationArgsDict']] requested_run_duration: Requested run duration for instances that will be created by this request. At the end of the run duration instance will be deleted.
|
459
460
|
Structure is documented below.
|
460
461
|
:param pulumi.Input[int] resize_by: The number of instances to be created by this resize request. The group's target size will be increased by this number.
|
461
|
-
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request.
|
462
|
+
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
462
463
|
"""
|
463
464
|
...
|
464
465
|
@overload
|
@@ -614,8 +615,6 @@ class ResizeRequest(pulumi.CustomResource):
|
|
614
615
|
if resize_by is None and not opts.urn:
|
615
616
|
raise TypeError("Missing required property 'resize_by'")
|
616
617
|
__props__.__dict__["resize_by"] = resize_by
|
617
|
-
if zone is None and not opts.urn:
|
618
|
-
raise TypeError("Missing required property 'zone'")
|
619
618
|
__props__.__dict__["zone"] = zone
|
620
619
|
__props__.__dict__["creation_timestamp"] = None
|
621
620
|
__props__.__dict__["state"] = None
|
@@ -662,7 +661,7 @@ class ResizeRequest(pulumi.CustomResource):
|
|
662
661
|
:param pulumi.Input[str] state: Current state of the request.
|
663
662
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ResizeRequestStatusArgs', 'ResizeRequestStatusArgsDict']]]] statuses: Status of the request.
|
664
663
|
Structure is documented below.
|
665
|
-
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request.
|
664
|
+
:param pulumi.Input[str] zone: The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
666
665
|
"""
|
667
666
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
668
667
|
|
@@ -762,7 +761,7 @@ class ResizeRequest(pulumi.CustomResource):
|
|
762
761
|
@pulumi.getter
|
763
762
|
def zone(self) -> pulumi.Output[str]:
|
764
763
|
"""
|
765
|
-
The reference of the compute zone scoping this request.
|
764
|
+
The reference of the compute zone scoping this request. If it is not provided, the provider zone is used.
|
766
765
|
"""
|
767
766
|
return pulumi.get(self, "zone")
|
768
767
|
|