pulumi-gcp 7.34.0a1722604983__py3-none-any.whl → 7.35.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.
Potentially problematic release.
This version of pulumi-gcp might be problematic. Click here for more details.
- pulumi_gcp/accesscontextmanager/_inputs.py +12 -3
- pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
- pulumi_gcp/accesscontextmanager/outputs.py +8 -2
- pulumi_gcp/bigquery/data_transfer_config.py +52 -0
- pulumi_gcp/compute/_inputs.py +24 -24
- pulumi_gcp/compute/disk.py +75 -0
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_hc_vpn_gateway.py +11 -1
- pulumi_gcp/compute/get_instance_template.py +2 -2
- pulumi_gcp/compute/get_region_instance_template.py +2 -2
- pulumi_gcp/compute/get_snapshot.py +2 -2
- pulumi_gcp/compute/ha_vpn_gateway.py +68 -7
- pulumi_gcp/compute/outputs.py +24 -24
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/firebase/project.py +10 -2
- pulumi_gcp/kms/key_handle.py +7 -7
- pulumi_gcp/migrationcenter/_inputs.py +21 -129
- pulumi_gcp/migrationcenter/outputs.py +14 -86
- pulumi_gcp/networkconnectivity/hub.py +69 -0
- pulumi_gcp/organizations/project.py +16 -7
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +35 -15
- pulumi_gcp/sql/outputs.py +50 -14
- {pulumi_gcp-7.34.0a1722604983.dist-info → pulumi_gcp-7.35.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.34.0a1722604983.dist-info → pulumi_gcp-7.35.0.dist-info}/RECORD +28 -28
- {pulumi_gcp-7.34.0a1722604983.dist-info → pulumi_gcp-7.35.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.34.0a1722604983.dist-info → pulumi_gcp-7.35.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/get_disk.py
CHANGED
@@ -27,7 +27,10 @@ class GetDiskResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDisk.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, async_primary_disks=None, creation_timestamp=None, description=None, disk_encryption_keys=None, disk_id=None, effective_labels=None, enable_confidential_compute=None, guest_os_features=None, id=None, image=None, interface=None, label_fingerprint=None, labels=None, last_attach_timestamp=None, last_detach_timestamp=None, licenses=None, multi_writer=None, name=None, physical_block_size_bytes=None, project=None, provisioned_iops=None, provisioned_throughput=None, pulumi_labels=None, resource_policies=None, self_link=None, size=None, snapshot=None, source_disk=None, source_disk_id=None, source_image_encryption_keys=None, source_image_id=None, source_snapshot_encryption_keys=None, source_snapshot_id=None, storage_pool=None, type=None, users=None, zone=None):
|
30
|
+
def __init__(__self__, access_mode=None, async_primary_disks=None, creation_timestamp=None, description=None, disk_encryption_keys=None, disk_id=None, effective_labels=None, enable_confidential_compute=None, guest_os_features=None, id=None, image=None, interface=None, label_fingerprint=None, labels=None, last_attach_timestamp=None, last_detach_timestamp=None, licenses=None, multi_writer=None, name=None, physical_block_size_bytes=None, project=None, provisioned_iops=None, provisioned_throughput=None, pulumi_labels=None, resource_policies=None, self_link=None, size=None, snapshot=None, source_disk=None, source_disk_id=None, source_image_encryption_keys=None, source_image_id=None, source_snapshot_encryption_keys=None, source_snapshot_id=None, storage_pool=None, type=None, users=None, zone=None):
|
31
|
+
if access_mode and not isinstance(access_mode, str):
|
32
|
+
raise TypeError("Expected argument 'access_mode' to be a str")
|
33
|
+
pulumi.set(__self__, "access_mode", access_mode)
|
31
34
|
if async_primary_disks and not isinstance(async_primary_disks, list):
|
32
35
|
raise TypeError("Expected argument 'async_primary_disks' to be a list")
|
33
36
|
pulumi.set(__self__, "async_primary_disks", async_primary_disks)
|
@@ -140,6 +143,11 @@ class GetDiskResult:
|
|
140
143
|
raise TypeError("Expected argument 'zone' to be a str")
|
141
144
|
pulumi.set(__self__, "zone", zone)
|
142
145
|
|
146
|
+
@property
|
147
|
+
@pulumi.getter(name="accessMode")
|
148
|
+
def access_mode(self) -> str:
|
149
|
+
return pulumi.get(self, "access_mode")
|
150
|
+
|
143
151
|
@property
|
144
152
|
@pulumi.getter(name="asyncPrimaryDisks")
|
145
153
|
def async_primary_disks(self) -> Sequence['outputs.GetDiskAsyncPrimaryDiskResult']:
|
@@ -401,6 +409,7 @@ class AwaitableGetDiskResult(GetDiskResult):
|
|
401
409
|
if False:
|
402
410
|
yield self
|
403
411
|
return GetDiskResult(
|
412
|
+
access_mode=self.access_mode,
|
404
413
|
async_primary_disks=self.async_primary_disks,
|
405
414
|
creation_timestamp=self.creation_timestamp,
|
406
415
|
description=self.description,
|
@@ -479,6 +488,7 @@ def get_disk(name: Optional[str] = None,
|
|
479
488
|
__ret__ = pulumi.runtime.invoke('gcp:compute/getDisk:getDisk', __args__, opts=opts, typ=GetDiskResult).value
|
480
489
|
|
481
490
|
return AwaitableGetDiskResult(
|
491
|
+
access_mode=pulumi.get(__ret__, 'access_mode'),
|
482
492
|
async_primary_disks=pulumi.get(__ret__, 'async_primary_disks'),
|
483
493
|
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
484
494
|
description=pulumi.get(__ret__, 'description'),
|
@@ -27,10 +27,13 @@ class GetHcVpnGatewayResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getHcVpnGateway.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, description=None, id=None, name=None, network=None, project=None, region=None, self_link=None, stack_type=None, vpn_interfaces=None):
|
30
|
+
def __init__(__self__, description=None, gateway_ip_version=None, id=None, name=None, network=None, project=None, region=None, self_link=None, stack_type=None, vpn_interfaces=None):
|
31
31
|
if description and not isinstance(description, str):
|
32
32
|
raise TypeError("Expected argument 'description' to be a str")
|
33
33
|
pulumi.set(__self__, "description", description)
|
34
|
+
if gateway_ip_version and not isinstance(gateway_ip_version, str):
|
35
|
+
raise TypeError("Expected argument 'gateway_ip_version' to be a str")
|
36
|
+
pulumi.set(__self__, "gateway_ip_version", gateway_ip_version)
|
34
37
|
if id and not isinstance(id, str):
|
35
38
|
raise TypeError("Expected argument 'id' to be a str")
|
36
39
|
pulumi.set(__self__, "id", id)
|
@@ -61,6 +64,11 @@ class GetHcVpnGatewayResult:
|
|
61
64
|
def description(self) -> str:
|
62
65
|
return pulumi.get(self, "description")
|
63
66
|
|
67
|
+
@property
|
68
|
+
@pulumi.getter(name="gatewayIpVersion")
|
69
|
+
def gateway_ip_version(self) -> str:
|
70
|
+
return pulumi.get(self, "gateway_ip_version")
|
71
|
+
|
64
72
|
@property
|
65
73
|
@pulumi.getter
|
66
74
|
def id(self) -> str:
|
@@ -112,6 +120,7 @@ class AwaitableGetHcVpnGatewayResult(GetHcVpnGatewayResult):
|
|
112
120
|
yield self
|
113
121
|
return GetHcVpnGatewayResult(
|
114
122
|
description=self.description,
|
123
|
+
gateway_ip_version=self.gateway_ip_version,
|
115
124
|
id=self.id,
|
116
125
|
name=self.name,
|
117
126
|
network=self.network,
|
@@ -150,6 +159,7 @@ def get_hc_vpn_gateway(name: Optional[str] = None,
|
|
150
159
|
|
151
160
|
return AwaitableGetHcVpnGatewayResult(
|
152
161
|
description=pulumi.get(__ret__, 'description'),
|
162
|
+
gateway_ip_version=pulumi.get(__ret__, 'gateway_ip_version'),
|
153
163
|
id=pulumi.get(__ret__, 'id'),
|
154
164
|
name=pulumi.get(__ret__, 'name'),
|
155
165
|
network=pulumi.get(__ret__, 'network'),
|
@@ -485,7 +485,7 @@ def get_instance_template(filter: Optional[str] = None,
|
|
485
485
|
|
486
486
|
|
487
487
|
:param str filter: A filter to retrieve the instance templates.
|
488
|
-
See [
|
488
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/instanceTemplates/list#body.QUERY_PARAMETERS.filter) for reference.
|
489
489
|
If multiple instance templates match, either adjust the filter or specify `most_recent`.
|
490
490
|
One of `name`, `filter` or `self_link_unique` must be provided.
|
491
491
|
:param bool most_recent: If `filter` is provided, ensures the most recent template is returned when multiple instance templates match. One of `name`, `filter` or `self_link_unique` must be provided.
|
@@ -559,7 +559,7 @@ def get_instance_template_output(filter: Optional[pulumi.Input[Optional[str]]] =
|
|
559
559
|
|
560
560
|
|
561
561
|
:param str filter: A filter to retrieve the instance templates.
|
562
|
-
See [
|
562
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/instanceTemplates/list#body.QUERY_PARAMETERS.filter) for reference.
|
563
563
|
If multiple instance templates match, either adjust the filter or specify `most_recent`.
|
564
564
|
One of `name`, `filter` or `self_link_unique` must be provided.
|
565
565
|
:param bool most_recent: If `filter` is provided, ensures the most recent template is returned when multiple instance templates match. One of `name`, `filter` or `self_link_unique` must be provided.
|
@@ -473,7 +473,7 @@ def get_region_instance_template(filter: Optional[str] = None,
|
|
473
473
|
|
474
474
|
|
475
475
|
:param str filter: A filter to retrieve the instance templates.
|
476
|
-
See [
|
476
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionInstanceTemplates/list#body.QUERY_PARAMETERS.filter) for reference.
|
477
477
|
If multiple instance templates match, either adjust the filter or specify `most_recent`. One of `name` or `filter` must be provided.
|
478
478
|
:param bool most_recent: If `filter` is provided, ensures the most recent template is returned when multiple instance templates match. One of `name` or `filter` must be provided.
|
479
479
|
:param str name: The name of the instance template. One of `name` or `filter` must be provided.
|
@@ -557,7 +557,7 @@ def get_region_instance_template_output(filter: Optional[pulumi.Input[Optional[s
|
|
557
557
|
|
558
558
|
|
559
559
|
:param str filter: A filter to retrieve the instance templates.
|
560
|
-
See [
|
560
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionInstanceTemplates/list#body.QUERY_PARAMETERS.filter) for reference.
|
561
561
|
If multiple instance templates match, either adjust the filter or specify `most_recent`. One of `name` or `filter` must be provided.
|
562
562
|
:param bool most_recent: If `filter` is provided, ensures the most recent template is returned when multiple instance templates match. One of `name` or `filter` must be provided.
|
563
563
|
:param str name: The name of the instance template. One of `name` or `filter` must be provided.
|
@@ -266,7 +266,7 @@ def get_snapshot(filter: Optional[str] = None,
|
|
266
266
|
|
267
267
|
|
268
268
|
:param str filter: A filter to retrieve the compute snapshot.
|
269
|
-
See [
|
269
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/snapshots/list#body.QUERY_PARAMETERS.filter) for reference.
|
270
270
|
If multiple compute snapshot match, either adjust the filter or specify `most_recent`. One of `name` or `filter` must be provided.
|
271
271
|
If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Example `sourceDisk eq '.*(.*/data-disk$).*'`. More details for golang Snapshots list call filters [here](https://pkg.go.dev/google.golang.org/api/compute/v1#SnapshotsListCall.Filter).
|
272
272
|
:param bool most_recent: If `filter` is provided, ensures the most recent snapshot is returned when multiple compute snapshot match.
|
@@ -337,7 +337,7 @@ def get_snapshot_output(filter: Optional[pulumi.Input[Optional[str]]] = None,
|
|
337
337
|
|
338
338
|
|
339
339
|
:param str filter: A filter to retrieve the compute snapshot.
|
340
|
-
See [
|
340
|
+
See [API filter parameter documentation](https://cloud.google.com/compute/docs/reference/rest/v1/snapshots/list#body.QUERY_PARAMETERS.filter) for reference.
|
341
341
|
If multiple compute snapshot match, either adjust the filter or specify `most_recent`. One of `name` or `filter` must be provided.
|
342
342
|
If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Example `sourceDisk eq '.*(.*/data-disk$).*'`. More details for golang Snapshots list call filters [here](https://pkg.go.dev/google.golang.org/api/compute/v1#SnapshotsListCall.Filter).
|
343
343
|
:param bool most_recent: If `filter` is provided, ensures the most recent snapshot is returned when multiple compute snapshot match.
|
@@ -23,6 +23,7 @@ class HaVpnGatewayArgs:
|
|
23
23
|
def __init__(__self__, *,
|
24
24
|
network: pulumi.Input[str],
|
25
25
|
description: Optional[pulumi.Input[str]] = None,
|
26
|
+
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
26
27
|
name: Optional[pulumi.Input[str]] = None,
|
27
28
|
project: Optional[pulumi.Input[str]] = None,
|
28
29
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -35,6 +36,9 @@ class HaVpnGatewayArgs:
|
|
35
36
|
|
36
37
|
- - -
|
37
38
|
:param pulumi.Input[str] description: An optional description of this resource.
|
39
|
+
:param pulumi.Input[str] gateway_ip_version: The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
40
|
+
Default value is `IPV4`.
|
41
|
+
Possible values are: `IPV4`, `IPV6`.
|
38
42
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
39
43
|
created. The name must be 1-63 characters long, and comply with
|
40
44
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -48,13 +52,15 @@ class HaVpnGatewayArgs:
|
|
48
52
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
49
53
|
If not specified, IPV4_ONLY will be used.
|
50
54
|
Default value is `IPV4_ONLY`.
|
51
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
55
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
52
56
|
:param pulumi.Input[Sequence[pulumi.Input['HaVpnGatewayVpnInterfaceArgs']]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
53
57
|
Structure is documented below.
|
54
58
|
"""
|
55
59
|
pulumi.set(__self__, "network", network)
|
56
60
|
if description is not None:
|
57
61
|
pulumi.set(__self__, "description", description)
|
62
|
+
if gateway_ip_version is not None:
|
63
|
+
pulumi.set(__self__, "gateway_ip_version", gateway_ip_version)
|
58
64
|
if name is not None:
|
59
65
|
pulumi.set(__self__, "name", name)
|
60
66
|
if project is not None:
|
@@ -93,6 +99,20 @@ class HaVpnGatewayArgs:
|
|
93
99
|
def description(self, value: Optional[pulumi.Input[str]]):
|
94
100
|
pulumi.set(self, "description", value)
|
95
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="gatewayIpVersion")
|
104
|
+
def gateway_ip_version(self) -> Optional[pulumi.Input[str]]:
|
105
|
+
"""
|
106
|
+
The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
107
|
+
Default value is `IPV4`.
|
108
|
+
Possible values are: `IPV4`, `IPV6`.
|
109
|
+
"""
|
110
|
+
return pulumi.get(self, "gateway_ip_version")
|
111
|
+
|
112
|
+
@gateway_ip_version.setter
|
113
|
+
def gateway_ip_version(self, value: Optional[pulumi.Input[str]]):
|
114
|
+
pulumi.set(self, "gateway_ip_version", value)
|
115
|
+
|
96
116
|
@property
|
97
117
|
@pulumi.getter
|
98
118
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -143,7 +163,7 @@ class HaVpnGatewayArgs:
|
|
143
163
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
144
164
|
If not specified, IPV4_ONLY will be used.
|
145
165
|
Default value is `IPV4_ONLY`.
|
146
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
166
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
147
167
|
"""
|
148
168
|
return pulumi.get(self, "stack_type")
|
149
169
|
|
@@ -169,6 +189,7 @@ class HaVpnGatewayArgs:
|
|
169
189
|
class _HaVpnGatewayState:
|
170
190
|
def __init__(__self__, *,
|
171
191
|
description: Optional[pulumi.Input[str]] = None,
|
192
|
+
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
172
193
|
name: Optional[pulumi.Input[str]] = None,
|
173
194
|
network: Optional[pulumi.Input[str]] = None,
|
174
195
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -179,6 +200,9 @@ class _HaVpnGatewayState:
|
|
179
200
|
"""
|
180
201
|
Input properties used for looking up and filtering HaVpnGateway resources.
|
181
202
|
:param pulumi.Input[str] description: An optional description of this resource.
|
203
|
+
:param pulumi.Input[str] gateway_ip_version: The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
204
|
+
Default value is `IPV4`.
|
205
|
+
Possible values are: `IPV4`, `IPV6`.
|
182
206
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
183
207
|
created. The name must be 1-63 characters long, and comply with
|
184
208
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -197,12 +221,14 @@ class _HaVpnGatewayState:
|
|
197
221
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
198
222
|
If not specified, IPV4_ONLY will be used.
|
199
223
|
Default value is `IPV4_ONLY`.
|
200
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
224
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
201
225
|
:param pulumi.Input[Sequence[pulumi.Input['HaVpnGatewayVpnInterfaceArgs']]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
202
226
|
Structure is documented below.
|
203
227
|
"""
|
204
228
|
if description is not None:
|
205
229
|
pulumi.set(__self__, "description", description)
|
230
|
+
if gateway_ip_version is not None:
|
231
|
+
pulumi.set(__self__, "gateway_ip_version", gateway_ip_version)
|
206
232
|
if name is not None:
|
207
233
|
pulumi.set(__self__, "name", name)
|
208
234
|
if network is not None:
|
@@ -230,6 +256,20 @@ class _HaVpnGatewayState:
|
|
230
256
|
def description(self, value: Optional[pulumi.Input[str]]):
|
231
257
|
pulumi.set(self, "description", value)
|
232
258
|
|
259
|
+
@property
|
260
|
+
@pulumi.getter(name="gatewayIpVersion")
|
261
|
+
def gateway_ip_version(self) -> Optional[pulumi.Input[str]]:
|
262
|
+
"""
|
263
|
+
The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
264
|
+
Default value is `IPV4`.
|
265
|
+
Possible values are: `IPV4`, `IPV6`.
|
266
|
+
"""
|
267
|
+
return pulumi.get(self, "gateway_ip_version")
|
268
|
+
|
269
|
+
@gateway_ip_version.setter
|
270
|
+
def gateway_ip_version(self, value: Optional[pulumi.Input[str]]):
|
271
|
+
pulumi.set(self, "gateway_ip_version", value)
|
272
|
+
|
233
273
|
@property
|
234
274
|
@pulumi.getter
|
235
275
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -307,7 +347,7 @@ class _HaVpnGatewayState:
|
|
307
347
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
308
348
|
If not specified, IPV4_ONLY will be used.
|
309
349
|
Default value is `IPV4_ONLY`.
|
310
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
350
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
311
351
|
"""
|
312
352
|
return pulumi.get(self, "stack_type")
|
313
353
|
|
@@ -335,6 +375,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
335
375
|
resource_name: str,
|
336
376
|
opts: Optional[pulumi.ResourceOptions] = None,
|
337
377
|
description: Optional[pulumi.Input[str]] = None,
|
378
|
+
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
338
379
|
name: Optional[pulumi.Input[str]] = None,
|
339
380
|
network: Optional[pulumi.Input[str]] = None,
|
340
381
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -477,6 +518,9 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
477
518
|
:param str resource_name: The name of the resource.
|
478
519
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
479
520
|
:param pulumi.Input[str] description: An optional description of this resource.
|
521
|
+
:param pulumi.Input[str] gateway_ip_version: The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
522
|
+
Default value is `IPV4`.
|
523
|
+
Possible values are: `IPV4`, `IPV6`.
|
480
524
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
481
525
|
created. The name must be 1-63 characters long, and comply with
|
482
526
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -494,7 +538,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
494
538
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
495
539
|
If not specified, IPV4_ONLY will be used.
|
496
540
|
Default value is `IPV4_ONLY`.
|
497
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
541
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
498
542
|
:param pulumi.Input[Sequence[pulumi.Input[Union['HaVpnGatewayVpnInterfaceArgs', 'HaVpnGatewayVpnInterfaceArgsDict']]]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
499
543
|
Structure is documented below.
|
500
544
|
"""
|
@@ -652,6 +696,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
652
696
|
resource_name: str,
|
653
697
|
opts: Optional[pulumi.ResourceOptions] = None,
|
654
698
|
description: Optional[pulumi.Input[str]] = None,
|
699
|
+
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
655
700
|
name: Optional[pulumi.Input[str]] = None,
|
656
701
|
network: Optional[pulumi.Input[str]] = None,
|
657
702
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -668,6 +713,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
668
713
|
__props__ = HaVpnGatewayArgs.__new__(HaVpnGatewayArgs)
|
669
714
|
|
670
715
|
__props__.__dict__["description"] = description
|
716
|
+
__props__.__dict__["gateway_ip_version"] = gateway_ip_version
|
671
717
|
__props__.__dict__["name"] = name
|
672
718
|
if network is None and not opts.urn:
|
673
719
|
raise TypeError("Missing required property 'network'")
|
@@ -688,6 +734,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
688
734
|
id: pulumi.Input[str],
|
689
735
|
opts: Optional[pulumi.ResourceOptions] = None,
|
690
736
|
description: Optional[pulumi.Input[str]] = None,
|
737
|
+
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
691
738
|
name: Optional[pulumi.Input[str]] = None,
|
692
739
|
network: Optional[pulumi.Input[str]] = None,
|
693
740
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -703,6 +750,9 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
703
750
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
704
751
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
705
752
|
:param pulumi.Input[str] description: An optional description of this resource.
|
753
|
+
:param pulumi.Input[str] gateway_ip_version: The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
754
|
+
Default value is `IPV4`.
|
755
|
+
Possible values are: `IPV4`, `IPV6`.
|
706
756
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
707
757
|
created. The name must be 1-63 characters long, and comply with
|
708
758
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -721,7 +771,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
721
771
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
722
772
|
If not specified, IPV4_ONLY will be used.
|
723
773
|
Default value is `IPV4_ONLY`.
|
724
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
774
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
725
775
|
:param pulumi.Input[Sequence[pulumi.Input[Union['HaVpnGatewayVpnInterfaceArgs', 'HaVpnGatewayVpnInterfaceArgsDict']]]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
726
776
|
Structure is documented below.
|
727
777
|
"""
|
@@ -730,6 +780,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
730
780
|
__props__ = _HaVpnGatewayState.__new__(_HaVpnGatewayState)
|
731
781
|
|
732
782
|
__props__.__dict__["description"] = description
|
783
|
+
__props__.__dict__["gateway_ip_version"] = gateway_ip_version
|
733
784
|
__props__.__dict__["name"] = name
|
734
785
|
__props__.__dict__["network"] = network
|
735
786
|
__props__.__dict__["project"] = project
|
@@ -747,6 +798,16 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
747
798
|
"""
|
748
799
|
return pulumi.get(self, "description")
|
749
800
|
|
801
|
+
@property
|
802
|
+
@pulumi.getter(name="gatewayIpVersion")
|
803
|
+
def gateway_ip_version(self) -> pulumi.Output[Optional[str]]:
|
804
|
+
"""
|
805
|
+
The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used.
|
806
|
+
Default value is `IPV4`.
|
807
|
+
Possible values are: `IPV4`, `IPV6`.
|
808
|
+
"""
|
809
|
+
return pulumi.get(self, "gateway_ip_version")
|
810
|
+
|
750
811
|
@property
|
751
812
|
@pulumi.getter
|
752
813
|
def name(self) -> pulumi.Output[str]:
|
@@ -804,7 +865,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
804
865
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
805
866
|
If not specified, IPV4_ONLY will be used.
|
806
867
|
Default value is `IPV4_ONLY`.
|
807
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
868
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`, `IPV6_ONLY`.
|
808
869
|
"""
|
809
870
|
return pulumi.get(self, "stack_type")
|
810
871
|
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -10485,10 +10485,10 @@ class InstanceGroupManagerUpdatePolicy(dict):
|
|
10485
10485
|
"""
|
10486
10486
|
:param str minimal_action: Minimal action to be taken on an instance. You can specify either `NONE` to forbid any actions, `REFRESH` to update without stopping instances, `RESTART` to restart existing instances or `REPLACE` to delete and create new instances from the target template. If you specify a `REFRESH`, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
|
10487
10487
|
:param str type: The type of update process. You can specify either `PROACTIVE` so that the instance group manager proactively executes actions in order to bring instances to their target versions or `OPPORTUNISTIC` so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
|
10488
|
-
:param int max_surge_fixed: ,
|
10489
|
-
:param int max_surge_percent: ,
|
10490
|
-
:param int max_unavailable_fixed: ,
|
10491
|
-
:param int max_unavailable_percent: ,
|
10488
|
+
:param int max_surge_fixed: , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with `max_surge_percent`. Both cannot be 0.
|
10489
|
+
:param int max_surge_percent: , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with `max_surge_fixed`.
|
10490
|
+
:param int max_unavailable_fixed: , Specifies a fixed number of VM instances. This must be a positive integer.
|
10491
|
+
:param int max_unavailable_percent: , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
|
10492
10492
|
:param int min_ready_sec: , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
|
10493
10493
|
:param str most_disruptive_allowed_action: Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
|
10494
10494
|
:param str replacement_method: , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.
|
@@ -10531,7 +10531,7 @@ class InstanceGroupManagerUpdatePolicy(dict):
|
|
10531
10531
|
@pulumi.getter(name="maxSurgeFixed")
|
10532
10532
|
def max_surge_fixed(self) -> Optional[int]:
|
10533
10533
|
"""
|
10534
|
-
,
|
10534
|
+
, Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with `max_surge_percent`. Both cannot be 0.
|
10535
10535
|
"""
|
10536
10536
|
return pulumi.get(self, "max_surge_fixed")
|
10537
10537
|
|
@@ -10539,7 +10539,7 @@ class InstanceGroupManagerUpdatePolicy(dict):
|
|
10539
10539
|
@pulumi.getter(name="maxSurgePercent")
|
10540
10540
|
def max_surge_percent(self) -> Optional[int]:
|
10541
10541
|
"""
|
10542
|
-
,
|
10542
|
+
, Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with `max_surge_fixed`.
|
10543
10543
|
"""
|
10544
10544
|
return pulumi.get(self, "max_surge_percent")
|
10545
10545
|
|
@@ -10547,7 +10547,7 @@ class InstanceGroupManagerUpdatePolicy(dict):
|
|
10547
10547
|
@pulumi.getter(name="maxUnavailableFixed")
|
10548
10548
|
def max_unavailable_fixed(self) -> Optional[int]:
|
10549
10549
|
"""
|
10550
|
-
,
|
10550
|
+
, Specifies a fixed number of VM instances. This must be a positive integer.
|
10551
10551
|
"""
|
10552
10552
|
return pulumi.get(self, "max_unavailable_fixed")
|
10553
10553
|
|
@@ -10555,7 +10555,7 @@ class InstanceGroupManagerUpdatePolicy(dict):
|
|
10555
10555
|
@pulumi.getter(name="maxUnavailablePercent")
|
10556
10556
|
def max_unavailable_percent(self) -> Optional[int]:
|
10557
10557
|
"""
|
10558
|
-
,
|
10558
|
+
, Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
|
10559
10559
|
"""
|
10560
10560
|
return pulumi.get(self, "max_unavailable_percent")
|
10561
10561
|
|
@@ -20333,10 +20333,10 @@ class RegionInstanceGroupManagerUpdatePolicy(dict):
|
|
20333
20333
|
:param str minimal_action: Minimal action to be taken on an instance. You can specify either `NONE` to forbid any actions, `REFRESH` to update without stopping instances, `RESTART` to restart existing instances or `REPLACE` to delete and create new instances from the target template. If you specify a `REFRESH`, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
|
20334
20334
|
:param str type: The type of update process. You can specify either `PROACTIVE` so that the instance group manager proactively executes actions in order to bring instances to their target versions or `OPPORTUNISTIC` so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
|
20335
20335
|
:param str instance_redistribution_type: The instance redistribution policy for regional managed instance groups. Valid values are: `"PROACTIVE"`, `"NONE"`. If `PROACTIVE` (default), the group attempts to maintain an even distribution of VM instances across zones in the region. If `NONE`, proactive redistribution is disabled.
|
20336
|
-
:param int max_surge_fixed: ,
|
20337
|
-
:param int max_surge_percent: ,
|
20338
|
-
:param int max_unavailable_fixed: ,
|
20339
|
-
:param int max_unavailable_percent: ,
|
20336
|
+
:param int max_surge_fixed: , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with `max_surge_percent`. Both cannot be 0.
|
20337
|
+
:param int max_surge_percent: , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with `max_surge_fixed`.
|
20338
|
+
:param int max_unavailable_fixed: , Specifies a fixed number of VM instances. This must be a positive integer.
|
20339
|
+
:param int max_unavailable_percent: , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
|
20340
20340
|
:param int min_ready_sec: , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
|
20341
20341
|
:param str most_disruptive_allowed_action: Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
|
20342
20342
|
:param str replacement_method: , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.
|
@@ -20389,7 +20389,7 @@ class RegionInstanceGroupManagerUpdatePolicy(dict):
|
|
20389
20389
|
@pulumi.getter(name="maxSurgeFixed")
|
20390
20390
|
def max_surge_fixed(self) -> Optional[int]:
|
20391
20391
|
"""
|
20392
|
-
,
|
20392
|
+
, Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with `max_surge_percent`. Both cannot be 0.
|
20393
20393
|
"""
|
20394
20394
|
return pulumi.get(self, "max_surge_fixed")
|
20395
20395
|
|
@@ -20397,7 +20397,7 @@ class RegionInstanceGroupManagerUpdatePolicy(dict):
|
|
20397
20397
|
@pulumi.getter(name="maxSurgePercent")
|
20398
20398
|
def max_surge_percent(self) -> Optional[int]:
|
20399
20399
|
"""
|
20400
|
-
,
|
20400
|
+
, Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with `max_surge_fixed`.
|
20401
20401
|
"""
|
20402
20402
|
return pulumi.get(self, "max_surge_percent")
|
20403
20403
|
|
@@ -20405,7 +20405,7 @@ class RegionInstanceGroupManagerUpdatePolicy(dict):
|
|
20405
20405
|
@pulumi.getter(name="maxUnavailableFixed")
|
20406
20406
|
def max_unavailable_fixed(self) -> Optional[int]:
|
20407
20407
|
"""
|
20408
|
-
,
|
20408
|
+
, Specifies a fixed number of VM instances. This must be a positive integer.
|
20409
20409
|
"""
|
20410
20410
|
return pulumi.get(self, "max_unavailable_fixed")
|
20411
20411
|
|
@@ -20413,7 +20413,7 @@ class RegionInstanceGroupManagerUpdatePolicy(dict):
|
|
20413
20413
|
@pulumi.getter(name="maxUnavailablePercent")
|
20414
20414
|
def max_unavailable_percent(self) -> Optional[int]:
|
20415
20415
|
"""
|
20416
|
-
,
|
20416
|
+
, Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
|
20417
20417
|
"""
|
20418
20418
|
return pulumi.get(self, "max_unavailable_percent")
|
20419
20419
|
|
@@ -46489,10 +46489,10 @@ class GetInstanceGroupManagerUpdatePolicyResult(dict):
|
|
46489
46489
|
replacement_method: str,
|
46490
46490
|
type: str):
|
46491
46491
|
"""
|
46492
|
-
:param int max_surge_fixed:
|
46493
|
-
:param int max_surge_percent:
|
46494
|
-
:param int max_unavailable_fixed:
|
46495
|
-
:param int max_unavailable_percent:
|
46492
|
+
:param int max_surge_fixed: Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with max_surge_percent. Both cannot be 0
|
46493
|
+
:param int max_surge_percent: Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with max_surge_fixed.
|
46494
|
+
:param int max_unavailable_fixed: Specifies a fixed number of VM instances. This must be a positive integer.
|
46495
|
+
:param int max_unavailable_percent: Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.
|
46496
46496
|
:param int min_ready_sec: Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600].
|
46497
46497
|
:param str minimal_action: Minimal action to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
|
46498
46498
|
:param str most_disruptive_allowed_action: Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
|
@@ -46513,7 +46513,7 @@ class GetInstanceGroupManagerUpdatePolicyResult(dict):
|
|
46513
46513
|
@pulumi.getter(name="maxSurgeFixed")
|
46514
46514
|
def max_surge_fixed(self) -> int:
|
46515
46515
|
"""
|
46516
|
-
|
46516
|
+
Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with max_surge_percent. Both cannot be 0
|
46517
46517
|
"""
|
46518
46518
|
return pulumi.get(self, "max_surge_fixed")
|
46519
46519
|
|
@@ -46521,7 +46521,7 @@ class GetInstanceGroupManagerUpdatePolicyResult(dict):
|
|
46521
46521
|
@pulumi.getter(name="maxSurgePercent")
|
46522
46522
|
def max_surge_percent(self) -> int:
|
46523
46523
|
"""
|
46524
|
-
|
46524
|
+
Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with max_surge_fixed.
|
46525
46525
|
"""
|
46526
46526
|
return pulumi.get(self, "max_surge_percent")
|
46527
46527
|
|
@@ -46529,7 +46529,7 @@ class GetInstanceGroupManagerUpdatePolicyResult(dict):
|
|
46529
46529
|
@pulumi.getter(name="maxUnavailableFixed")
|
46530
46530
|
def max_unavailable_fixed(self) -> int:
|
46531
46531
|
"""
|
46532
|
-
|
46532
|
+
Specifies a fixed number of VM instances. This must be a positive integer.
|
46533
46533
|
"""
|
46534
46534
|
return pulumi.get(self, "max_unavailable_fixed")
|
46535
46535
|
|
@@ -46537,7 +46537,7 @@ class GetInstanceGroupManagerUpdatePolicyResult(dict):
|
|
46537
46537
|
@pulumi.getter(name="maxUnavailablePercent")
|
46538
46538
|
def max_unavailable_percent(self) -> int:
|
46539
46539
|
"""
|
46540
|
-
|
46540
|
+
Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.
|
46541
46541
|
"""
|
46542
46542
|
return pulumi.get(self, "max_unavailable_percent")
|
46543
46543
|
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -7856,7 +7856,7 @@ if not MYPY:
|
|
7856
7856
|
"""
|
7857
7857
|
relay_mode: NotRequired[pulumi.Input[str]]
|
7858
7858
|
"""
|
7859
|
-
Mode used to make Relay available.
|
7859
|
+
Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
|
7860
7860
|
"""
|
7861
7861
|
elif False:
|
7862
7862
|
ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -7870,7 +7870,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs:
|
|
7870
7870
|
"""
|
7871
7871
|
:param pulumi.Input[bool] enable_metrics: Whether or not to enable advanced datapath metrics.
|
7872
7872
|
:param pulumi.Input[bool] enable_relay: Whether or not Relay is enabled.
|
7873
|
-
:param pulumi.Input[str] relay_mode: Mode used to make Relay available.
|
7873
|
+
:param pulumi.Input[str] relay_mode: Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
|
7874
7874
|
"""
|
7875
7875
|
pulumi.set(__self__, "enable_metrics", enable_metrics)
|
7876
7876
|
if enable_relay is not None:
|
@@ -7910,7 +7910,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs:
|
|
7910
7910
|
@_utilities.deprecated("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
7911
7911
|
def relay_mode(self) -> Optional[pulumi.Input[str]]:
|
7912
7912
|
"""
|
7913
|
-
Mode used to make Relay available.
|
7913
|
+
Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
|
7914
7914
|
"""
|
7915
7915
|
return pulumi.get(self, "relay_mode")
|
7916
7916
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -6476,7 +6476,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfig(dict):
|
|
6476
6476
|
"""
|
6477
6477
|
:param bool enable_metrics: Whether or not to enable advanced datapath metrics.
|
6478
6478
|
:param bool enable_relay: Whether or not Relay is enabled.
|
6479
|
-
:param str relay_mode: Mode used to make Relay available.
|
6479
|
+
:param str relay_mode: Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
|
6480
6480
|
"""
|
6481
6481
|
pulumi.set(__self__, "enable_metrics", enable_metrics)
|
6482
6482
|
if enable_relay is not None:
|
@@ -6505,7 +6505,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfig(dict):
|
|
6505
6505
|
@_utilities.deprecated("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
|
6506
6506
|
def relay_mode(self) -> Optional[str]:
|
6507
6507
|
"""
|
6508
|
-
Mode used to make Relay available.
|
6508
|
+
Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
|
6509
6509
|
"""
|
6510
6510
|
return pulumi.get(self, "relay_mode")
|
6511
6511
|
|
pulumi_gcp/firebase/project.py
CHANGED
@@ -117,7 +117,11 @@ class Project(pulumi.CustomResource):
|
|
117
117
|
|
118
118
|
* [API documentation](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects)
|
119
119
|
* How-to Guides
|
120
|
-
*
|
120
|
+
* Official Documentation
|
121
|
+
|
122
|
+
> **Note:** This resource should usually be used with a provider configuration
|
123
|
+
with `user_project_override = true` unless you wish for your quota
|
124
|
+
project to be different from the Firebase project.
|
121
125
|
|
122
126
|
## Example Usage
|
123
127
|
|
@@ -176,7 +180,11 @@ class Project(pulumi.CustomResource):
|
|
176
180
|
|
177
181
|
* [API documentation](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects)
|
178
182
|
* How-to Guides
|
179
|
-
*
|
183
|
+
* Official Documentation
|
184
|
+
|
185
|
+
> **Note:** This resource should usually be used with a provider configuration
|
186
|
+
with `user_project_override = true` unless you wish for your quota
|
187
|
+
project to be different from the Firebase project.
|
180
188
|
|
181
189
|
## Example Usage
|
182
190
|
|