pulumi-gcp 7.35.0__py3-none-any.whl → 7.35.0a1722924350__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/accesscontextmanager/_inputs.py +3 -12
- pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
- pulumi_gcp/accesscontextmanager/outputs.py +2 -8
- pulumi_gcp/bigquery/data_transfer_config.py +0 -52
- pulumi_gcp/compute/_inputs.py +24 -24
- pulumi_gcp/compute/disk.py +0 -75
- pulumi_gcp/compute/get_disk.py +1 -11
- pulumi_gcp/compute/get_hc_vpn_gateway.py +1 -11
- 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 +7 -68
- 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 +2 -10
- pulumi_gcp/kms/key_handle.py +7 -7
- pulumi_gcp/migrationcenter/_inputs.py +129 -21
- pulumi_gcp/migrationcenter/outputs.py +86 -14
- pulumi_gcp/networkconnectivity/hub.py +0 -69
- pulumi_gcp/organizations/project.py +7 -16
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +15 -35
- pulumi_gcp/sql/outputs.py +14 -50
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/RECORD +28 -28
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.35.0.dist-info → pulumi_gcp-7.35.0a1722924350.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/get_disk.py
CHANGED
@@ -27,10 +27,7 @@ class GetDiskResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDisk.
|
29
29
|
"""
|
30
|
-
def __init__(__self__,
|
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)
|
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):
|
34
31
|
if async_primary_disks and not isinstance(async_primary_disks, list):
|
35
32
|
raise TypeError("Expected argument 'async_primary_disks' to be a list")
|
36
33
|
pulumi.set(__self__, "async_primary_disks", async_primary_disks)
|
@@ -143,11 +140,6 @@ class GetDiskResult:
|
|
143
140
|
raise TypeError("Expected argument 'zone' to be a str")
|
144
141
|
pulumi.set(__self__, "zone", zone)
|
145
142
|
|
146
|
-
@property
|
147
|
-
@pulumi.getter(name="accessMode")
|
148
|
-
def access_mode(self) -> str:
|
149
|
-
return pulumi.get(self, "access_mode")
|
150
|
-
|
151
143
|
@property
|
152
144
|
@pulumi.getter(name="asyncPrimaryDisks")
|
153
145
|
def async_primary_disks(self) -> Sequence['outputs.GetDiskAsyncPrimaryDiskResult']:
|
@@ -409,7 +401,6 @@ class AwaitableGetDiskResult(GetDiskResult):
|
|
409
401
|
if False:
|
410
402
|
yield self
|
411
403
|
return GetDiskResult(
|
412
|
-
access_mode=self.access_mode,
|
413
404
|
async_primary_disks=self.async_primary_disks,
|
414
405
|
creation_timestamp=self.creation_timestamp,
|
415
406
|
description=self.description,
|
@@ -488,7 +479,6 @@ def get_disk(name: Optional[str] = None,
|
|
488
479
|
__ret__ = pulumi.runtime.invoke('gcp:compute/getDisk:getDisk', __args__, opts=opts, typ=GetDiskResult).value
|
489
480
|
|
490
481
|
return AwaitableGetDiskResult(
|
491
|
-
access_mode=pulumi.get(__ret__, 'access_mode'),
|
492
482
|
async_primary_disks=pulumi.get(__ret__, 'async_primary_disks'),
|
493
483
|
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
494
484
|
description=pulumi.get(__ret__, 'description'),
|
@@ -27,13 +27,10 @@ class GetHcVpnGatewayResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getHcVpnGateway.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, description=None,
|
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):
|
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)
|
37
34
|
if id and not isinstance(id, str):
|
38
35
|
raise TypeError("Expected argument 'id' to be a str")
|
39
36
|
pulumi.set(__self__, "id", id)
|
@@ -64,11 +61,6 @@ class GetHcVpnGatewayResult:
|
|
64
61
|
def description(self) -> str:
|
65
62
|
return pulumi.get(self, "description")
|
66
63
|
|
67
|
-
@property
|
68
|
-
@pulumi.getter(name="gatewayIpVersion")
|
69
|
-
def gateway_ip_version(self) -> str:
|
70
|
-
return pulumi.get(self, "gateway_ip_version")
|
71
|
-
|
72
64
|
@property
|
73
65
|
@pulumi.getter
|
74
66
|
def id(self) -> str:
|
@@ -120,7 +112,6 @@ class AwaitableGetHcVpnGatewayResult(GetHcVpnGatewayResult):
|
|
120
112
|
yield self
|
121
113
|
return GetHcVpnGatewayResult(
|
122
114
|
description=self.description,
|
123
|
-
gateway_ip_version=self.gateway_ip_version,
|
124
115
|
id=self.id,
|
125
116
|
name=self.name,
|
126
117
|
network=self.network,
|
@@ -159,7 +150,6 @@ def get_hc_vpn_gateway(name: Optional[str] = None,
|
|
159
150
|
|
160
151
|
return AwaitableGetHcVpnGatewayResult(
|
161
152
|
description=pulumi.get(__ret__, 'description'),
|
162
|
-
gateway_ip_version=pulumi.get(__ret__, 'gateway_ip_version'),
|
163
153
|
id=pulumi.get(__ret__, 'id'),
|
164
154
|
name=pulumi.get(__ret__, 'name'),
|
165
155
|
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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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 [gcloud topic filters](https://cloud.google.com/sdk/gcloud/reference/topic/filters) 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,7 +23,6 @@ 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,
|
27
26
|
name: Optional[pulumi.Input[str]] = None,
|
28
27
|
project: Optional[pulumi.Input[str]] = None,
|
29
28
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -36,9 +35,6 @@ class HaVpnGatewayArgs:
|
|
36
35
|
|
37
36
|
- - -
|
38
37
|
: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`.
|
42
38
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
43
39
|
created. The name must be 1-63 characters long, and comply with
|
44
40
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -52,15 +48,13 @@ class HaVpnGatewayArgs:
|
|
52
48
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
53
49
|
If not specified, IPV4_ONLY will be used.
|
54
50
|
Default value is `IPV4_ONLY`.
|
55
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
51
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
56
52
|
:param pulumi.Input[Sequence[pulumi.Input['HaVpnGatewayVpnInterfaceArgs']]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
57
53
|
Structure is documented below.
|
58
54
|
"""
|
59
55
|
pulumi.set(__self__, "network", network)
|
60
56
|
if description is not None:
|
61
57
|
pulumi.set(__self__, "description", description)
|
62
|
-
if gateway_ip_version is not None:
|
63
|
-
pulumi.set(__self__, "gateway_ip_version", gateway_ip_version)
|
64
58
|
if name is not None:
|
65
59
|
pulumi.set(__self__, "name", name)
|
66
60
|
if project is not None:
|
@@ -99,20 +93,6 @@ class HaVpnGatewayArgs:
|
|
99
93
|
def description(self, value: Optional[pulumi.Input[str]]):
|
100
94
|
pulumi.set(self, "description", value)
|
101
95
|
|
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
|
-
|
116
96
|
@property
|
117
97
|
@pulumi.getter
|
118
98
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -163,7 +143,7 @@ class HaVpnGatewayArgs:
|
|
163
143
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
164
144
|
If not specified, IPV4_ONLY will be used.
|
165
145
|
Default value is `IPV4_ONLY`.
|
166
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
146
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
167
147
|
"""
|
168
148
|
return pulumi.get(self, "stack_type")
|
169
149
|
|
@@ -189,7 +169,6 @@ class HaVpnGatewayArgs:
|
|
189
169
|
class _HaVpnGatewayState:
|
190
170
|
def __init__(__self__, *,
|
191
171
|
description: Optional[pulumi.Input[str]] = None,
|
192
|
-
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
193
172
|
name: Optional[pulumi.Input[str]] = None,
|
194
173
|
network: Optional[pulumi.Input[str]] = None,
|
195
174
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -200,9 +179,6 @@ class _HaVpnGatewayState:
|
|
200
179
|
"""
|
201
180
|
Input properties used for looking up and filtering HaVpnGateway resources.
|
202
181
|
: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`.
|
206
182
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
207
183
|
created. The name must be 1-63 characters long, and comply with
|
208
184
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -221,14 +197,12 @@ class _HaVpnGatewayState:
|
|
221
197
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
222
198
|
If not specified, IPV4_ONLY will be used.
|
223
199
|
Default value is `IPV4_ONLY`.
|
224
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
200
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
225
201
|
:param pulumi.Input[Sequence[pulumi.Input['HaVpnGatewayVpnInterfaceArgs']]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
226
202
|
Structure is documented below.
|
227
203
|
"""
|
228
204
|
if description is not None:
|
229
205
|
pulumi.set(__self__, "description", description)
|
230
|
-
if gateway_ip_version is not None:
|
231
|
-
pulumi.set(__self__, "gateway_ip_version", gateway_ip_version)
|
232
206
|
if name is not None:
|
233
207
|
pulumi.set(__self__, "name", name)
|
234
208
|
if network is not None:
|
@@ -256,20 +230,6 @@ class _HaVpnGatewayState:
|
|
256
230
|
def description(self, value: Optional[pulumi.Input[str]]):
|
257
231
|
pulumi.set(self, "description", value)
|
258
232
|
|
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
|
-
|
273
233
|
@property
|
274
234
|
@pulumi.getter
|
275
235
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -347,7 +307,7 @@ class _HaVpnGatewayState:
|
|
347
307
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
348
308
|
If not specified, IPV4_ONLY will be used.
|
349
309
|
Default value is `IPV4_ONLY`.
|
350
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
310
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
351
311
|
"""
|
352
312
|
return pulumi.get(self, "stack_type")
|
353
313
|
|
@@ -375,7 +335,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
375
335
|
resource_name: str,
|
376
336
|
opts: Optional[pulumi.ResourceOptions] = None,
|
377
337
|
description: Optional[pulumi.Input[str]] = None,
|
378
|
-
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
379
338
|
name: Optional[pulumi.Input[str]] = None,
|
380
339
|
network: Optional[pulumi.Input[str]] = None,
|
381
340
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -518,9 +477,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
518
477
|
:param str resource_name: The name of the resource.
|
519
478
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
520
479
|
: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`.
|
524
480
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
525
481
|
created. The name must be 1-63 characters long, and comply with
|
526
482
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -538,7 +494,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
538
494
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
539
495
|
If not specified, IPV4_ONLY will be used.
|
540
496
|
Default value is `IPV4_ONLY`.
|
541
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
497
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
542
498
|
:param pulumi.Input[Sequence[pulumi.Input[Union['HaVpnGatewayVpnInterfaceArgs', 'HaVpnGatewayVpnInterfaceArgsDict']]]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
543
499
|
Structure is documented below.
|
544
500
|
"""
|
@@ -696,7 +652,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
696
652
|
resource_name: str,
|
697
653
|
opts: Optional[pulumi.ResourceOptions] = None,
|
698
654
|
description: Optional[pulumi.Input[str]] = None,
|
699
|
-
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
700
655
|
name: Optional[pulumi.Input[str]] = None,
|
701
656
|
network: Optional[pulumi.Input[str]] = None,
|
702
657
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -713,7 +668,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
713
668
|
__props__ = HaVpnGatewayArgs.__new__(HaVpnGatewayArgs)
|
714
669
|
|
715
670
|
__props__.__dict__["description"] = description
|
716
|
-
__props__.__dict__["gateway_ip_version"] = gateway_ip_version
|
717
671
|
__props__.__dict__["name"] = name
|
718
672
|
if network is None and not opts.urn:
|
719
673
|
raise TypeError("Missing required property 'network'")
|
@@ -734,7 +688,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
734
688
|
id: pulumi.Input[str],
|
735
689
|
opts: Optional[pulumi.ResourceOptions] = None,
|
736
690
|
description: Optional[pulumi.Input[str]] = None,
|
737
|
-
gateway_ip_version: Optional[pulumi.Input[str]] = None,
|
738
691
|
name: Optional[pulumi.Input[str]] = None,
|
739
692
|
network: Optional[pulumi.Input[str]] = None,
|
740
693
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -750,9 +703,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
750
703
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
751
704
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
752
705
|
: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`.
|
756
706
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
757
707
|
created. The name must be 1-63 characters long, and comply with
|
758
708
|
RFC1035. Specifically, the name must be 1-63 characters long and
|
@@ -771,7 +721,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
771
721
|
:param pulumi.Input[str] stack_type: The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
772
722
|
If not specified, IPV4_ONLY will be used.
|
773
723
|
Default value is `IPV4_ONLY`.
|
774
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
724
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
775
725
|
:param pulumi.Input[Sequence[pulumi.Input[Union['HaVpnGatewayVpnInterfaceArgs', 'HaVpnGatewayVpnInterfaceArgsDict']]]] vpn_interfaces: A list of interfaces on this VPN gateway.
|
776
726
|
Structure is documented below.
|
777
727
|
"""
|
@@ -780,7 +730,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
780
730
|
__props__ = _HaVpnGatewayState.__new__(_HaVpnGatewayState)
|
781
731
|
|
782
732
|
__props__.__dict__["description"] = description
|
783
|
-
__props__.__dict__["gateway_ip_version"] = gateway_ip_version
|
784
733
|
__props__.__dict__["name"] = name
|
785
734
|
__props__.__dict__["network"] = network
|
786
735
|
__props__.__dict__["project"] = project
|
@@ -798,16 +747,6 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
798
747
|
"""
|
799
748
|
return pulumi.get(self, "description")
|
800
749
|
|
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
|
-
|
811
750
|
@property
|
812
751
|
@pulumi.getter
|
813
752
|
def name(self) -> pulumi.Output[str]:
|
@@ -865,7 +804,7 @@ class HaVpnGateway(pulumi.CustomResource):
|
|
865
804
|
The stack type for this VPN gateway to identify the IP protocols that are enabled.
|
866
805
|
If not specified, IPV4_ONLY will be used.
|
867
806
|
Default value is `IPV4_ONLY`.
|
868
|
-
Possible values are: `IPV4_ONLY`, `IPV4_IPV6
|
807
|
+
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
869
808
|
"""
|
870
809
|
return pulumi.get(self, "stack_type")
|
871
810
|
|
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: , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with `max_surge_percent`. If neither is set, defaults to 1
|
10489
|
+
:param int max_surge_percent: , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with `max_surge_fixed`.
|
10490
|
+
:param int max_unavailable_fixed: , The maximum number of instances that can be unavailable during the update process. Conflicts with `max_unavailable_percent`. If neither is set, defaults to 1
|
10491
|
+
:param int max_unavailable_percent: , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with `max_unavailable_fixed`.
|
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
|
+
, The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with `max_surge_percent`. If neither is set, defaults to 1
|
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
|
+
, The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. 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
|
+
, The maximum number of instances that can be unavailable during the update process. Conflicts with `max_unavailable_percent`. If neither is set, defaults to 1
|
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
|
+
, The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with `max_unavailable_fixed`.
|
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: , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with `max_surge_percent`. It has to be either 0 or at least equal to the number of zones. If fixed values are used, at least one of `max_unavailable_fixed` or `max_surge_fixed` must be greater than 0.
|
20337
|
+
:param int max_surge_percent: , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with `max_surge_fixed`. Percent value is only allowed for regional managed instance groups with size at least 10.
|
20338
|
+
:param int max_unavailable_fixed: , The maximum number of instances that can be unavailable during the update process. Conflicts with `max_unavailable_percent`. It has to be either 0 or at least equal to the number of zones. If fixed values are used, at least one of `max_unavailable_fixed` or `max_surge_fixed` must be greater than 0.
|
20339
|
+
:param int max_unavailable_percent: , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with `max_unavailable_fixed`. Percent value is only allowed for regional managed instance groups with size at least 10.
|
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
|
+
, The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with `max_surge_percent`. It has to be either 0 or at least equal to the number of zones. If fixed values are used, at least one of `max_unavailable_fixed` or `max_surge_fixed` must be greater than 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
|
+
, The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with `max_surge_fixed`. Percent value is only allowed for regional managed instance groups with size at least 10.
|
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
|
+
, The maximum number of instances that can be unavailable during the update process. Conflicts with `max_unavailable_percent`. It has to be either 0 or at least equal to the number of zones. If fixed values are used, at least one of `max_unavailable_fixed` or `max_surge_fixed` must be greater than 0.
|
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
|
+
, The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with `max_unavailable_fixed`. Percent value is only allowed for regional managed instance groups with size at least 10.
|
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: The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
|
46493
|
+
:param int max_surge_percent: The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
|
46494
|
+
:param int max_unavailable_fixed: The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1.
|
46495
|
+
:param int max_unavailable_percent: The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
|
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
|
+
The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
|
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
|
+
The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. 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
|
+
The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1.
|
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
|
+
The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
|
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.
|
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.
|
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.
|
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.
|
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.
|
6509
6509
|
"""
|
6510
6510
|
return pulumi.get(self, "relay_mode")
|
6511
6511
|
|
pulumi_gcp/firebase/project.py
CHANGED
@@ -117,11 +117,7 @@ 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
|
-
* 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.
|
120
|
+
* [Official Documentation](https://firebase.google.com/)
|
125
121
|
|
126
122
|
## Example Usage
|
127
123
|
|
@@ -180,11 +176,7 @@ class Project(pulumi.CustomResource):
|
|
180
176
|
|
181
177
|
* [API documentation](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects)
|
182
178
|
* How-to Guides
|
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.
|
179
|
+
* [Official Documentation](https://firebase.google.com/)
|
188
180
|
|
189
181
|
## Example Usage
|
190
182
|
|