pulumi-gcp 8.21.0a1740810968__py3-none-any.whl → 8.21.0a1741103856__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 +16 -0
- pulumi_gcp/alloydb/__init__.py +1 -0
- pulumi_gcp/alloydb/get_cluster.py +491 -0
- pulumi_gcp/alloydb/outputs.py +808 -0
- pulumi_gcp/appengine/_inputs.py +3 -3
- pulumi_gcp/appengine/outputs.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +16 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +16 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +16 -0
- pulumi_gcp/bigquery/_inputs.py +6 -8
- pulumi_gcp/bigquery/data_transfer_config.py +28 -0
- pulumi_gcp/bigquery/outputs.py +4 -5
- pulumi_gcp/chronicle/rule_deployment.py +21 -7
- pulumi_gcp/composer/get_environment.py +12 -0
- pulumi_gcp/composer/get_image_versions.py +12 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +12 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +140 -6
- pulumi_gcp/datacatalog/entry_group.py +4 -0
- pulumi_gcp/datacatalog/tag_template.py +4 -0
- pulumi_gcp/developerconnect/_inputs.py +575 -0
- pulumi_gcp/developerconnect/connection.py +200 -0
- pulumi_gcp/developerconnect/git_repository_link.py +12 -0
- pulumi_gcp/developerconnect/outputs.py +461 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting.py +6 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +722 -0
- pulumi_gcp/gemini/logging_setting.py +4 -0
- pulumi_gcp/gemini/logging_setting_binding.py +12 -0
- pulumi_gcp/iam/organizations_policy_binding.py +10 -2
- pulumi_gcp/iam/projects_policy_binding.py +10 -2
- pulumi_gcp/iam/workforce_pool_provider.py +63 -11
- pulumi_gcp/parametermanager/get_parameter_version_render.py +3 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +3 -0
- pulumi_gcp/projects/__init__.py +1 -0
- pulumi_gcp/projects/get_ancestry.py +150 -0
- pulumi_gcp/projects/outputs.py +30 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +211 -94
- pulumi_gcp/secretmanager/secret_version.py +73 -23
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/instance_partition.py +658 -0
- pulumi_gcp/sql/user.py +20 -14
- pulumi_gcp/tpu/_inputs.py +150 -1
- pulumi_gcp/tpu/outputs.py +114 -1
- pulumi_gcp/tpu/v2_queued_resource.py +74 -0
- {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/RECORD +50 -46
- {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1740810968.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,8 @@ class NetworkPeeringRoutesConfigArgs:
|
|
23
23
|
import_custom_routes: pulumi.Input[bool],
|
24
24
|
network: pulumi.Input[str],
|
25
25
|
peering: pulumi.Input[str],
|
26
|
+
export_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
27
|
+
import_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
26
28
|
project: Optional[pulumi.Input[str]] = None):
|
27
29
|
"""
|
28
30
|
The set of arguments for constructing a NetworkPeeringRoutesConfig resource.
|
@@ -33,6 +35,12 @@ class NetworkPeeringRoutesConfigArgs:
|
|
33
35
|
|
34
36
|
- - -
|
35
37
|
:param pulumi.Input[str] peering: Name of the peering.
|
38
|
+
:param pulumi.Input[bool] export_subnet_routes_with_public_ip: Whether subnet routes with public IP range are exported.
|
39
|
+
IPv4 special-use ranges are always exported to peers and
|
40
|
+
are not controlled by this field.
|
41
|
+
:param pulumi.Input[bool] import_subnet_routes_with_public_ip: Whether subnet routes with public IP range are imported.
|
42
|
+
IPv4 special-use ranges are always imported from peers and
|
43
|
+
are not controlled by this field.
|
36
44
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
37
45
|
If it is not provided, the provider project is used.
|
38
46
|
"""
|
@@ -40,6 +48,10 @@ class NetworkPeeringRoutesConfigArgs:
|
|
40
48
|
pulumi.set(__self__, "import_custom_routes", import_custom_routes)
|
41
49
|
pulumi.set(__self__, "network", network)
|
42
50
|
pulumi.set(__self__, "peering", peering)
|
51
|
+
if export_subnet_routes_with_public_ip is not None:
|
52
|
+
pulumi.set(__self__, "export_subnet_routes_with_public_ip", export_subnet_routes_with_public_ip)
|
53
|
+
if import_subnet_routes_with_public_ip is not None:
|
54
|
+
pulumi.set(__self__, "import_subnet_routes_with_public_ip", import_subnet_routes_with_public_ip)
|
43
55
|
if project is not None:
|
44
56
|
pulumi.set(__self__, "project", project)
|
45
57
|
|
@@ -94,6 +106,34 @@ class NetworkPeeringRoutesConfigArgs:
|
|
94
106
|
def peering(self, value: pulumi.Input[str]):
|
95
107
|
pulumi.set(self, "peering", value)
|
96
108
|
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="exportSubnetRoutesWithPublicIp")
|
111
|
+
def export_subnet_routes_with_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
112
|
+
"""
|
113
|
+
Whether subnet routes with public IP range are exported.
|
114
|
+
IPv4 special-use ranges are always exported to peers and
|
115
|
+
are not controlled by this field.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "export_subnet_routes_with_public_ip")
|
118
|
+
|
119
|
+
@export_subnet_routes_with_public_ip.setter
|
120
|
+
def export_subnet_routes_with_public_ip(self, value: Optional[pulumi.Input[bool]]):
|
121
|
+
pulumi.set(self, "export_subnet_routes_with_public_ip", value)
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="importSubnetRoutesWithPublicIp")
|
125
|
+
def import_subnet_routes_with_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
126
|
+
"""
|
127
|
+
Whether subnet routes with public IP range are imported.
|
128
|
+
IPv4 special-use ranges are always imported from peers and
|
129
|
+
are not controlled by this field.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "import_subnet_routes_with_public_ip")
|
132
|
+
|
133
|
+
@import_subnet_routes_with_public_ip.setter
|
134
|
+
def import_subnet_routes_with_public_ip(self, value: Optional[pulumi.Input[bool]]):
|
135
|
+
pulumi.set(self, "import_subnet_routes_with_public_ip", value)
|
136
|
+
|
97
137
|
@property
|
98
138
|
@pulumi.getter
|
99
139
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -112,14 +152,22 @@ class NetworkPeeringRoutesConfigArgs:
|
|
112
152
|
class _NetworkPeeringRoutesConfigState:
|
113
153
|
def __init__(__self__, *,
|
114
154
|
export_custom_routes: Optional[pulumi.Input[bool]] = None,
|
155
|
+
export_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
115
156
|
import_custom_routes: Optional[pulumi.Input[bool]] = None,
|
157
|
+
import_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
116
158
|
network: Optional[pulumi.Input[str]] = None,
|
117
159
|
peering: Optional[pulumi.Input[str]] = None,
|
118
160
|
project: Optional[pulumi.Input[str]] = None):
|
119
161
|
"""
|
120
162
|
Input properties used for looking up and filtering NetworkPeeringRoutesConfig resources.
|
121
163
|
:param pulumi.Input[bool] export_custom_routes: Whether to export the custom routes to the peer network.
|
164
|
+
:param pulumi.Input[bool] export_subnet_routes_with_public_ip: Whether subnet routes with public IP range are exported.
|
165
|
+
IPv4 special-use ranges are always exported to peers and
|
166
|
+
are not controlled by this field.
|
122
167
|
:param pulumi.Input[bool] import_custom_routes: Whether to import the custom routes to the peer network.
|
168
|
+
:param pulumi.Input[bool] import_subnet_routes_with_public_ip: Whether subnet routes with public IP range are imported.
|
169
|
+
IPv4 special-use ranges are always imported from peers and
|
170
|
+
are not controlled by this field.
|
123
171
|
:param pulumi.Input[str] network: The name of the primary network for the peering.
|
124
172
|
|
125
173
|
|
@@ -130,8 +178,12 @@ class _NetworkPeeringRoutesConfigState:
|
|
130
178
|
"""
|
131
179
|
if export_custom_routes is not None:
|
132
180
|
pulumi.set(__self__, "export_custom_routes", export_custom_routes)
|
181
|
+
if export_subnet_routes_with_public_ip is not None:
|
182
|
+
pulumi.set(__self__, "export_subnet_routes_with_public_ip", export_subnet_routes_with_public_ip)
|
133
183
|
if import_custom_routes is not None:
|
134
184
|
pulumi.set(__self__, "import_custom_routes", import_custom_routes)
|
185
|
+
if import_subnet_routes_with_public_ip is not None:
|
186
|
+
pulumi.set(__self__, "import_subnet_routes_with_public_ip", import_subnet_routes_with_public_ip)
|
135
187
|
if network is not None:
|
136
188
|
pulumi.set(__self__, "network", network)
|
137
189
|
if peering is not None:
|
@@ -151,6 +203,20 @@ class _NetworkPeeringRoutesConfigState:
|
|
151
203
|
def export_custom_routes(self, value: Optional[pulumi.Input[bool]]):
|
152
204
|
pulumi.set(self, "export_custom_routes", value)
|
153
205
|
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="exportSubnetRoutesWithPublicIp")
|
208
|
+
def export_subnet_routes_with_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
209
|
+
"""
|
210
|
+
Whether subnet routes with public IP range are exported.
|
211
|
+
IPv4 special-use ranges are always exported to peers and
|
212
|
+
are not controlled by this field.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "export_subnet_routes_with_public_ip")
|
215
|
+
|
216
|
+
@export_subnet_routes_with_public_ip.setter
|
217
|
+
def export_subnet_routes_with_public_ip(self, value: Optional[pulumi.Input[bool]]):
|
218
|
+
pulumi.set(self, "export_subnet_routes_with_public_ip", value)
|
219
|
+
|
154
220
|
@property
|
155
221
|
@pulumi.getter(name="importCustomRoutes")
|
156
222
|
def import_custom_routes(self) -> Optional[pulumi.Input[bool]]:
|
@@ -163,6 +229,20 @@ class _NetworkPeeringRoutesConfigState:
|
|
163
229
|
def import_custom_routes(self, value: Optional[pulumi.Input[bool]]):
|
164
230
|
pulumi.set(self, "import_custom_routes", value)
|
165
231
|
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="importSubnetRoutesWithPublicIp")
|
234
|
+
def import_subnet_routes_with_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
235
|
+
"""
|
236
|
+
Whether subnet routes with public IP range are imported.
|
237
|
+
IPv4 special-use ranges are always imported from peers and
|
238
|
+
are not controlled by this field.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "import_subnet_routes_with_public_ip")
|
241
|
+
|
242
|
+
@import_subnet_routes_with_public_ip.setter
|
243
|
+
def import_subnet_routes_with_public_ip(self, value: Optional[pulumi.Input[bool]]):
|
244
|
+
pulumi.set(self, "import_subnet_routes_with_public_ip", value)
|
245
|
+
|
166
246
|
@property
|
167
247
|
@pulumi.getter
|
168
248
|
def network(self) -> Optional[pulumi.Input[str]]:
|
@@ -210,7 +290,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
210
290
|
resource_name: str,
|
211
291
|
opts: Optional[pulumi.ResourceOptions] = None,
|
212
292
|
export_custom_routes: Optional[pulumi.Input[bool]] = None,
|
293
|
+
export_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
213
294
|
import_custom_routes: Optional[pulumi.Input[bool]] = None,
|
295
|
+
import_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
214
296
|
network: Optional[pulumi.Input[str]] = None,
|
215
297
|
peering: Optional[pulumi.Input[str]] = None,
|
216
298
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -246,12 +328,16 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
246
328
|
network=network_primary.id,
|
247
329
|
peer_network=network_secondary.id,
|
248
330
|
import_custom_routes=True,
|
249
|
-
export_custom_routes=True
|
331
|
+
export_custom_routes=True,
|
332
|
+
import_subnet_routes_with_public_ip=True,
|
333
|
+
export_subnet_routes_with_public_ip=True)
|
250
334
|
peering_primary_routes = gcp.compute.NetworkPeeringRoutesConfig("peering_primary_routes",
|
251
335
|
peering=peering_primary.name,
|
252
336
|
network=network_primary.name,
|
253
337
|
import_custom_routes=True,
|
254
|
-
export_custom_routes=True
|
338
|
+
export_custom_routes=True,
|
339
|
+
import_subnet_routes_with_public_ip=True,
|
340
|
+
export_subnet_routes_with_public_ip=True)
|
255
341
|
peering_secondary = gcp.compute.NetworkPeering("peering_secondary",
|
256
342
|
name="secondary-peering",
|
257
343
|
network=network_secondary.id,
|
@@ -303,7 +389,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
303
389
|
peering=private_cluster.private_cluster_config.peering_name,
|
304
390
|
network=container_network.name,
|
305
391
|
import_custom_routes=True,
|
306
|
-
export_custom_routes=True
|
392
|
+
export_custom_routes=True,
|
393
|
+
import_subnet_routes_with_public_ip=True,
|
394
|
+
export_subnet_routes_with_public_ip=True)
|
307
395
|
```
|
308
396
|
|
309
397
|
## Import
|
@@ -333,7 +421,13 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
333
421
|
:param str resource_name: The name of the resource.
|
334
422
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
335
423
|
:param pulumi.Input[bool] export_custom_routes: Whether to export the custom routes to the peer network.
|
424
|
+
:param pulumi.Input[bool] export_subnet_routes_with_public_ip: Whether subnet routes with public IP range are exported.
|
425
|
+
IPv4 special-use ranges are always exported to peers and
|
426
|
+
are not controlled by this field.
|
336
427
|
:param pulumi.Input[bool] import_custom_routes: Whether to import the custom routes to the peer network.
|
428
|
+
:param pulumi.Input[bool] import_subnet_routes_with_public_ip: Whether subnet routes with public IP range are imported.
|
429
|
+
IPv4 special-use ranges are always imported from peers and
|
430
|
+
are not controlled by this field.
|
337
431
|
:param pulumi.Input[str] network: The name of the primary network for the peering.
|
338
432
|
|
339
433
|
|
@@ -379,12 +473,16 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
379
473
|
network=network_primary.id,
|
380
474
|
peer_network=network_secondary.id,
|
381
475
|
import_custom_routes=True,
|
382
|
-
export_custom_routes=True
|
476
|
+
export_custom_routes=True,
|
477
|
+
import_subnet_routes_with_public_ip=True,
|
478
|
+
export_subnet_routes_with_public_ip=True)
|
383
479
|
peering_primary_routes = gcp.compute.NetworkPeeringRoutesConfig("peering_primary_routes",
|
384
480
|
peering=peering_primary.name,
|
385
481
|
network=network_primary.name,
|
386
482
|
import_custom_routes=True,
|
387
|
-
export_custom_routes=True
|
483
|
+
export_custom_routes=True,
|
484
|
+
import_subnet_routes_with_public_ip=True,
|
485
|
+
export_subnet_routes_with_public_ip=True)
|
388
486
|
peering_secondary = gcp.compute.NetworkPeering("peering_secondary",
|
389
487
|
name="secondary-peering",
|
390
488
|
network=network_secondary.id,
|
@@ -436,7 +534,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
436
534
|
peering=private_cluster.private_cluster_config.peering_name,
|
437
535
|
network=container_network.name,
|
438
536
|
import_custom_routes=True,
|
439
|
-
export_custom_routes=True
|
537
|
+
export_custom_routes=True,
|
538
|
+
import_subnet_routes_with_public_ip=True,
|
539
|
+
export_subnet_routes_with_public_ip=True)
|
440
540
|
```
|
441
541
|
|
442
542
|
## Import
|
@@ -479,7 +579,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
479
579
|
resource_name: str,
|
480
580
|
opts: Optional[pulumi.ResourceOptions] = None,
|
481
581
|
export_custom_routes: Optional[pulumi.Input[bool]] = None,
|
582
|
+
export_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
482
583
|
import_custom_routes: Optional[pulumi.Input[bool]] = None,
|
584
|
+
import_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
483
585
|
network: Optional[pulumi.Input[str]] = None,
|
484
586
|
peering: Optional[pulumi.Input[str]] = None,
|
485
587
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -495,9 +597,11 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
495
597
|
if export_custom_routes is None and not opts.urn:
|
496
598
|
raise TypeError("Missing required property 'export_custom_routes'")
|
497
599
|
__props__.__dict__["export_custom_routes"] = export_custom_routes
|
600
|
+
__props__.__dict__["export_subnet_routes_with_public_ip"] = export_subnet_routes_with_public_ip
|
498
601
|
if import_custom_routes is None and not opts.urn:
|
499
602
|
raise TypeError("Missing required property 'import_custom_routes'")
|
500
603
|
__props__.__dict__["import_custom_routes"] = import_custom_routes
|
604
|
+
__props__.__dict__["import_subnet_routes_with_public_ip"] = import_subnet_routes_with_public_ip
|
501
605
|
if network is None and not opts.urn:
|
502
606
|
raise TypeError("Missing required property 'network'")
|
503
607
|
__props__.__dict__["network"] = network
|
@@ -516,7 +620,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
516
620
|
id: pulumi.Input[str],
|
517
621
|
opts: Optional[pulumi.ResourceOptions] = None,
|
518
622
|
export_custom_routes: Optional[pulumi.Input[bool]] = None,
|
623
|
+
export_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
519
624
|
import_custom_routes: Optional[pulumi.Input[bool]] = None,
|
625
|
+
import_subnet_routes_with_public_ip: Optional[pulumi.Input[bool]] = None,
|
520
626
|
network: Optional[pulumi.Input[str]] = None,
|
521
627
|
peering: Optional[pulumi.Input[str]] = None,
|
522
628
|
project: Optional[pulumi.Input[str]] = None) -> 'NetworkPeeringRoutesConfig':
|
@@ -528,7 +634,13 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
528
634
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
529
635
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
530
636
|
:param pulumi.Input[bool] export_custom_routes: Whether to export the custom routes to the peer network.
|
637
|
+
:param pulumi.Input[bool] export_subnet_routes_with_public_ip: Whether subnet routes with public IP range are exported.
|
638
|
+
IPv4 special-use ranges are always exported to peers and
|
639
|
+
are not controlled by this field.
|
531
640
|
:param pulumi.Input[bool] import_custom_routes: Whether to import the custom routes to the peer network.
|
641
|
+
:param pulumi.Input[bool] import_subnet_routes_with_public_ip: Whether subnet routes with public IP range are imported.
|
642
|
+
IPv4 special-use ranges are always imported from peers and
|
643
|
+
are not controlled by this field.
|
532
644
|
:param pulumi.Input[str] network: The name of the primary network for the peering.
|
533
645
|
|
534
646
|
|
@@ -542,7 +654,9 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
542
654
|
__props__ = _NetworkPeeringRoutesConfigState.__new__(_NetworkPeeringRoutesConfigState)
|
543
655
|
|
544
656
|
__props__.__dict__["export_custom_routes"] = export_custom_routes
|
657
|
+
__props__.__dict__["export_subnet_routes_with_public_ip"] = export_subnet_routes_with_public_ip
|
545
658
|
__props__.__dict__["import_custom_routes"] = import_custom_routes
|
659
|
+
__props__.__dict__["import_subnet_routes_with_public_ip"] = import_subnet_routes_with_public_ip
|
546
660
|
__props__.__dict__["network"] = network
|
547
661
|
__props__.__dict__["peering"] = peering
|
548
662
|
__props__.__dict__["project"] = project
|
@@ -556,6 +670,16 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
556
670
|
"""
|
557
671
|
return pulumi.get(self, "export_custom_routes")
|
558
672
|
|
673
|
+
@property
|
674
|
+
@pulumi.getter(name="exportSubnetRoutesWithPublicIp")
|
675
|
+
def export_subnet_routes_with_public_ip(self) -> pulumi.Output[bool]:
|
676
|
+
"""
|
677
|
+
Whether subnet routes with public IP range are exported.
|
678
|
+
IPv4 special-use ranges are always exported to peers and
|
679
|
+
are not controlled by this field.
|
680
|
+
"""
|
681
|
+
return pulumi.get(self, "export_subnet_routes_with_public_ip")
|
682
|
+
|
559
683
|
@property
|
560
684
|
@pulumi.getter(name="importCustomRoutes")
|
561
685
|
def import_custom_routes(self) -> pulumi.Output[bool]:
|
@@ -564,6 +688,16 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
564
688
|
"""
|
565
689
|
return pulumi.get(self, "import_custom_routes")
|
566
690
|
|
691
|
+
@property
|
692
|
+
@pulumi.getter(name="importSubnetRoutesWithPublicIp")
|
693
|
+
def import_subnet_routes_with_public_ip(self) -> pulumi.Output[bool]:
|
694
|
+
"""
|
695
|
+
Whether subnet routes with public IP range are imported.
|
696
|
+
IPv4 special-use ranges are always imported from peers and
|
697
|
+
are not controlled by this field.
|
698
|
+
"""
|
699
|
+
return pulumi.get(self, "import_subnet_routes_with_public_ip")
|
700
|
+
|
567
701
|
@property
|
568
702
|
@pulumi.getter
|
569
703
|
def network(self) -> pulumi.Output[str]:
|
@@ -239,6 +239,8 @@ class EntryGroup(pulumi.CustomResource):
|
|
239
239
|
region: Optional[pulumi.Input[str]] = None,
|
240
240
|
__props__=None):
|
241
241
|
"""
|
242
|
+
> **Warning:** `datacatalog.EntryGroup` is deprecated and will be removed in a future major release. Use `dataplex.EntryGroup` instead. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
243
|
+
|
242
244
|
An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.
|
243
245
|
|
244
246
|
To get more information about EntryGroup, see:
|
@@ -301,6 +303,8 @@ class EntryGroup(pulumi.CustomResource):
|
|
301
303
|
args: EntryGroupArgs,
|
302
304
|
opts: Optional[pulumi.ResourceOptions] = None):
|
303
305
|
"""
|
306
|
+
> **Warning:** `datacatalog.EntryGroup` is deprecated and will be removed in a future major release. Use `dataplex.EntryGroup` instead. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
307
|
+
|
304
308
|
An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.
|
305
309
|
|
306
310
|
To get more information about EntryGroup, see:
|
@@ -253,6 +253,8 @@ class TagTemplate(pulumi.CustomResource):
|
|
253
253
|
tag_template_id: Optional[pulumi.Input[str]] = None,
|
254
254
|
__props__=None):
|
255
255
|
"""
|
256
|
+
> **Warning:** `datacatalog.TagTemplate` is deprecated and will be removed in a future major release. Use `dataplex.AspectType` instead. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
257
|
+
|
256
258
|
A tag template defines a tag, which can have one or more typed fields.
|
257
259
|
The template is used to create and attach the tag to GCP resources.
|
258
260
|
|
@@ -342,6 +344,8 @@ class TagTemplate(pulumi.CustomResource):
|
|
342
344
|
args: TagTemplateArgs,
|
343
345
|
opts: Optional[pulumi.ResourceOptions] = None):
|
344
346
|
"""
|
347
|
+
> **Warning:** `datacatalog.TagTemplate` is deprecated and will be removed in a future major release. Use `dataplex.AspectType` instead. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
348
|
+
|
345
349
|
A tag template defines a tag, which can have one or more typed fields.
|
346
350
|
The template is used to create and attach the tag to GCP resources.
|
347
351
|
|