pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,7 @@ class RegionInstanceTemplateArgs:
|
|
36
36
|
project: Optional[pulumi.Input[str]] = None,
|
37
37
|
region: Optional[pulumi.Input[str]] = None,
|
38
38
|
reservation_affinity: Optional[pulumi.Input['RegionInstanceTemplateReservationAffinityArgs']] = None,
|
39
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
39
40
|
resource_policies: Optional[pulumi.Input[str]] = None,
|
40
41
|
scheduling: Optional[pulumi.Input['RegionInstanceTemplateSchedulingArgs']] = None,
|
41
42
|
service_account: Optional[pulumi.Input['RegionInstanceTemplateServiceAccountArgs']] = None,
|
@@ -92,6 +93,7 @@ class RegionInstanceTemplateArgs:
|
|
92
93
|
If region is not provided, the provider region is used.
|
93
94
|
:param pulumi.Input['RegionInstanceTemplateReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
|
94
95
|
Structure is documented below.
|
96
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
95
97
|
:param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
96
98
|
:param pulumi.Input['RegionInstanceTemplateSchedulingArgs'] scheduling: The scheduling strategy to use. More details about
|
97
99
|
this configuration option are detailed below.
|
@@ -138,6 +140,8 @@ class RegionInstanceTemplateArgs:
|
|
138
140
|
pulumi.set(__self__, "region", region)
|
139
141
|
if reservation_affinity is not None:
|
140
142
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
143
|
+
if resource_manager_tags is not None:
|
144
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
141
145
|
if resource_policies is not None:
|
142
146
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
143
147
|
if scheduling is not None:
|
@@ -418,6 +422,18 @@ class RegionInstanceTemplateArgs:
|
|
418
422
|
def reservation_affinity(self, value: Optional[pulumi.Input['RegionInstanceTemplateReservationAffinityArgs']]):
|
419
423
|
pulumi.set(self, "reservation_affinity", value)
|
420
424
|
|
425
|
+
@property
|
426
|
+
@pulumi.getter(name="resourceManagerTags")
|
427
|
+
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
428
|
+
"""
|
429
|
+
A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
430
|
+
"""
|
431
|
+
return pulumi.get(self, "resource_manager_tags")
|
432
|
+
|
433
|
+
@resource_manager_tags.setter
|
434
|
+
def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
435
|
+
pulumi.set(self, "resource_manager_tags", value)
|
436
|
+
|
421
437
|
@property
|
422
438
|
@pulumi.getter(name="resourcePolicies")
|
423
439
|
def resource_policies(self) -> Optional[pulumi.Input[str]]:
|
@@ -507,6 +523,7 @@ class _RegionInstanceTemplateState:
|
|
507
523
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
508
524
|
region: Optional[pulumi.Input[str]] = None,
|
509
525
|
reservation_affinity: Optional[pulumi.Input['RegionInstanceTemplateReservationAffinityArgs']] = None,
|
526
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
510
527
|
resource_policies: Optional[pulumi.Input[str]] = None,
|
511
528
|
scheduling: Optional[pulumi.Input['RegionInstanceTemplateSchedulingArgs']] = None,
|
512
529
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -568,6 +585,7 @@ class _RegionInstanceTemplateState:
|
|
568
585
|
If region is not provided, the provider region is used.
|
569
586
|
:param pulumi.Input['RegionInstanceTemplateReservationAffinityArgs'] reservation_affinity: Specifies the reservations that this instance can consume from.
|
570
587
|
Structure is documented below.
|
588
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
571
589
|
:param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
572
590
|
:param pulumi.Input['RegionInstanceTemplateSchedulingArgs'] scheduling: The scheduling strategy to use. More details about
|
573
591
|
this configuration option are detailed below.
|
@@ -624,6 +642,8 @@ class _RegionInstanceTemplateState:
|
|
624
642
|
pulumi.set(__self__, "region", region)
|
625
643
|
if reservation_affinity is not None:
|
626
644
|
pulumi.set(__self__, "reservation_affinity", reservation_affinity)
|
645
|
+
if resource_manager_tags is not None:
|
646
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
627
647
|
if resource_policies is not None:
|
628
648
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
629
649
|
if scheduling is not None:
|
@@ -944,6 +964,18 @@ class _RegionInstanceTemplateState:
|
|
944
964
|
def reservation_affinity(self, value: Optional[pulumi.Input['RegionInstanceTemplateReservationAffinityArgs']]):
|
945
965
|
pulumi.set(self, "reservation_affinity", value)
|
946
966
|
|
967
|
+
@property
|
968
|
+
@pulumi.getter(name="resourceManagerTags")
|
969
|
+
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
970
|
+
"""
|
971
|
+
A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
972
|
+
"""
|
973
|
+
return pulumi.get(self, "resource_manager_tags")
|
974
|
+
|
975
|
+
@resource_manager_tags.setter
|
976
|
+
def resource_manager_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
977
|
+
pulumi.set(self, "resource_manager_tags", value)
|
978
|
+
|
947
979
|
@property
|
948
980
|
@pulumi.getter(name="resourcePolicies")
|
949
981
|
def resource_policies(self) -> Optional[pulumi.Input[str]]:
|
@@ -1056,6 +1088,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1056
1088
|
project: Optional[pulumi.Input[str]] = None,
|
1057
1089
|
region: Optional[pulumi.Input[str]] = None,
|
1058
1090
|
reservation_affinity: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateReservationAffinityArgs']]] = None,
|
1091
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1059
1092
|
resource_policies: Optional[pulumi.Input[str]] = None,
|
1060
1093
|
scheduling: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateSchedulingArgs']]] = None,
|
1061
1094
|
service_account: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateServiceAccountArgs']]] = None,
|
@@ -1138,6 +1171,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1138
1171
|
If region is not provided, the provider region is used.
|
1139
1172
|
:param pulumi.Input[pulumi.InputType['RegionInstanceTemplateReservationAffinityArgs']] reservation_affinity: Specifies the reservations that this instance can consume from.
|
1140
1173
|
Structure is documented below.
|
1174
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
1141
1175
|
:param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
1142
1176
|
:param pulumi.Input[pulumi.InputType['RegionInstanceTemplateSchedulingArgs']] scheduling: The scheduling strategy to use. More details about
|
1143
1177
|
this configuration option are detailed below.
|
@@ -1212,6 +1246,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1212
1246
|
project: Optional[pulumi.Input[str]] = None,
|
1213
1247
|
region: Optional[pulumi.Input[str]] = None,
|
1214
1248
|
reservation_affinity: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateReservationAffinityArgs']]] = None,
|
1249
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1215
1250
|
resource_policies: Optional[pulumi.Input[str]] = None,
|
1216
1251
|
scheduling: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateSchedulingArgs']]] = None,
|
1217
1252
|
service_account: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateServiceAccountArgs']]] = None,
|
@@ -1250,6 +1285,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1250
1285
|
__props__.__dict__["project"] = project
|
1251
1286
|
__props__.__dict__["region"] = region
|
1252
1287
|
__props__.__dict__["reservation_affinity"] = reservation_affinity
|
1288
|
+
__props__.__dict__["resource_manager_tags"] = resource_manager_tags
|
1253
1289
|
__props__.__dict__["resource_policies"] = resource_policies
|
1254
1290
|
__props__.__dict__["scheduling"] = scheduling
|
1255
1291
|
__props__.__dict__["service_account"] = service_account
|
@@ -1295,6 +1331,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1295
1331
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1296
1332
|
region: Optional[pulumi.Input[str]] = None,
|
1297
1333
|
reservation_affinity: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateReservationAffinityArgs']]] = None,
|
1334
|
+
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1298
1335
|
resource_policies: Optional[pulumi.Input[str]] = None,
|
1299
1336
|
scheduling: Optional[pulumi.Input[pulumi.InputType['RegionInstanceTemplateSchedulingArgs']]] = None,
|
1300
1337
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -1361,6 +1398,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1361
1398
|
If region is not provided, the provider region is used.
|
1362
1399
|
:param pulumi.Input[pulumi.InputType['RegionInstanceTemplateReservationAffinityArgs']] reservation_affinity: Specifies the reservations that this instance can consume from.
|
1363
1400
|
Structure is documented below.
|
1401
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
1364
1402
|
:param pulumi.Input[str] resource_policies: - A list of self_links of resource policies to attach to the instance. Modifying this list will cause the instance to recreate. Currently a max of 1 resource policy is supported.
|
1365
1403
|
:param pulumi.Input[pulumi.InputType['RegionInstanceTemplateSchedulingArgs']] scheduling: The scheduling strategy to use. More details about
|
1366
1404
|
this configuration option are detailed below.
|
@@ -1398,6 +1436,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1398
1436
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
1399
1437
|
__props__.__dict__["region"] = region
|
1400
1438
|
__props__.__dict__["reservation_affinity"] = reservation_affinity
|
1439
|
+
__props__.__dict__["resource_manager_tags"] = resource_manager_tags
|
1401
1440
|
__props__.__dict__["resource_policies"] = resource_policies
|
1402
1441
|
__props__.__dict__["scheduling"] = scheduling
|
1403
1442
|
__props__.__dict__["self_link"] = self_link
|
@@ -1620,6 +1659,14 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1620
1659
|
"""
|
1621
1660
|
return pulumi.get(self, "reservation_affinity")
|
1622
1661
|
|
1662
|
+
@property
|
1663
|
+
@pulumi.getter(name="resourceManagerTags")
|
1664
|
+
def resource_manager_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1665
|
+
"""
|
1666
|
+
A set of key/value resource manager tag pairs to bind to the instance. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
1667
|
+
"""
|
1668
|
+
return pulumi.get(self, "resource_manager_tags")
|
1669
|
+
|
1623
1670
|
@property
|
1624
1671
|
@pulumi.getter(name="resourcePolicies")
|
1625
1672
|
def resource_policies(self) -> pulumi.Output[Optional[str]]:
|
@@ -24,10 +24,10 @@ class RegionNetworkFirewallPolicyArgs:
|
|
24
24
|
:param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
25
25
|
|
26
26
|
|
27
|
-
|
28
27
|
- - -
|
29
|
-
:param pulumi.Input[str] project: The project
|
30
|
-
|
28
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
29
|
+
If it is not provided, the provider project is used.
|
30
|
+
:param pulumi.Input[str] region: The region of this resource.
|
31
31
|
"""
|
32
32
|
if description is not None:
|
33
33
|
pulumi.set(__self__, "description", description)
|
@@ -57,7 +57,6 @@ class RegionNetworkFirewallPolicyArgs:
|
|
57
57
|
User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
58
58
|
|
59
59
|
|
60
|
-
|
61
60
|
- - -
|
62
61
|
"""
|
63
62
|
return pulumi.get(self, "name")
|
@@ -70,7 +69,8 @@ class RegionNetworkFirewallPolicyArgs:
|
|
70
69
|
@pulumi.getter
|
71
70
|
def project(self) -> Optional[pulumi.Input[str]]:
|
72
71
|
"""
|
73
|
-
The project
|
72
|
+
The ID of the project in which the resource belongs.
|
73
|
+
If it is not provided, the provider project is used.
|
74
74
|
"""
|
75
75
|
return pulumi.get(self, "project")
|
76
76
|
|
@@ -82,7 +82,7 @@ class RegionNetworkFirewallPolicyArgs:
|
|
82
82
|
@pulumi.getter
|
83
83
|
def region(self) -> Optional[pulumi.Input[str]]:
|
84
84
|
"""
|
85
|
-
The
|
85
|
+
The region of this resource.
|
86
86
|
"""
|
87
87
|
return pulumi.get(self, "region")
|
88
88
|
|
@@ -112,10 +112,10 @@ class _RegionNetworkFirewallPolicyState:
|
|
112
112
|
:param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
113
113
|
|
114
114
|
|
115
|
-
|
116
115
|
- - -
|
117
|
-
:param pulumi.Input[str] project: The project
|
118
|
-
|
116
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
117
|
+
If it is not provided, the provider project is used.
|
118
|
+
:param pulumi.Input[str] region: The region of this resource.
|
119
119
|
:param pulumi.Input[str] region_network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
120
120
|
:param pulumi.Input[int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
121
121
|
:param pulumi.Input[str] self_link: Server-defined URL for the resource.
|
@@ -185,7 +185,6 @@ class _RegionNetworkFirewallPolicyState:
|
|
185
185
|
User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
186
186
|
|
187
187
|
|
188
|
-
|
189
188
|
- - -
|
190
189
|
"""
|
191
190
|
return pulumi.get(self, "name")
|
@@ -198,7 +197,8 @@ class _RegionNetworkFirewallPolicyState:
|
|
198
197
|
@pulumi.getter
|
199
198
|
def project(self) -> Optional[pulumi.Input[str]]:
|
200
199
|
"""
|
201
|
-
The project
|
200
|
+
The ID of the project in which the resource belongs.
|
201
|
+
If it is not provided, the provider project is used.
|
202
202
|
"""
|
203
203
|
return pulumi.get(self, "project")
|
204
204
|
|
@@ -210,7 +210,7 @@ class _RegionNetworkFirewallPolicyState:
|
|
210
210
|
@pulumi.getter
|
211
211
|
def region(self) -> Optional[pulumi.Input[str]]:
|
212
212
|
"""
|
213
|
-
The
|
213
|
+
The region of this resource.
|
214
214
|
"""
|
215
215
|
return pulumi.get(self, "region")
|
216
216
|
|
@@ -281,27 +281,25 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
281
281
|
The Compute NetworkFirewallPolicy resource
|
282
282
|
|
283
283
|
## Example Usage
|
284
|
-
###
|
284
|
+
### Region Network Firewall Policy Full
|
285
|
+
|
285
286
|
```python
|
286
287
|
import pulumi
|
287
288
|
import pulumi_gcp as gcp
|
288
289
|
|
289
|
-
|
290
|
-
description="Sample regional network firewall policy",
|
291
|
-
project="my-project-name",
|
292
|
-
region="us-west1")
|
290
|
+
policy = gcp.compute.RegionNetworkFirewallPolicy("policy", description="Terraform test")
|
293
291
|
```
|
294
292
|
|
295
293
|
## Import
|
296
294
|
|
297
|
-
|
295
|
+
RegionNetworkFirewallPolicy can be imported using any of these accepted formats* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{name}}` * `{{project}}/{{region}}/{{name}}` * `{{region}}/{{name}}` * `{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import RegionNetworkFirewallPolicy using one of the formats above. For exampletf import {
|
298
296
|
|
299
297
|
id = "projects/{{project}}/regions/{{region}}/firewallPolicies/{{name}}"
|
300
298
|
|
301
299
|
to = google_compute_region_network_firewall_policy.default }
|
302
300
|
|
303
301
|
```sh
|
304
|
-
$ pulumi import gcp:compute/regionNetworkFirewallPolicy:RegionNetworkFirewallPolicy When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import),
|
302
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicy:RegionNetworkFirewallPolicy When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), RegionNetworkFirewallPolicy can be imported using one of the formats above. For example
|
305
303
|
```
|
306
304
|
|
307
305
|
```sh
|
@@ -326,10 +324,10 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
326
324
|
:param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
327
325
|
|
328
326
|
|
329
|
-
|
330
327
|
- - -
|
331
|
-
:param pulumi.Input[str] project: The project
|
332
|
-
|
328
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
329
|
+
If it is not provided, the provider project is used.
|
330
|
+
:param pulumi.Input[str] region: The region of this resource.
|
333
331
|
"""
|
334
332
|
...
|
335
333
|
@overload
|
@@ -341,27 +339,25 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
341
339
|
The Compute NetworkFirewallPolicy resource
|
342
340
|
|
343
341
|
## Example Usage
|
344
|
-
###
|
342
|
+
### Region Network Firewall Policy Full
|
343
|
+
|
345
344
|
```python
|
346
345
|
import pulumi
|
347
346
|
import pulumi_gcp as gcp
|
348
347
|
|
349
|
-
|
350
|
-
description="Sample regional network firewall policy",
|
351
|
-
project="my-project-name",
|
352
|
-
region="us-west1")
|
348
|
+
policy = gcp.compute.RegionNetworkFirewallPolicy("policy", description="Terraform test")
|
353
349
|
```
|
354
350
|
|
355
351
|
## Import
|
356
352
|
|
357
|
-
|
353
|
+
RegionNetworkFirewallPolicy can be imported using any of these accepted formats* `projects/{{project}}/regions/{{region}}/firewallPolicies/{{name}}` * `{{project}}/{{region}}/{{name}}` * `{{region}}/{{name}}` * `{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import RegionNetworkFirewallPolicy using one of the formats above. For exampletf import {
|
358
354
|
|
359
355
|
id = "projects/{{project}}/regions/{{region}}/firewallPolicies/{{name}}"
|
360
356
|
|
361
357
|
to = google_compute_region_network_firewall_policy.default }
|
362
358
|
|
363
359
|
```sh
|
364
|
-
$ pulumi import gcp:compute/regionNetworkFirewallPolicy:RegionNetworkFirewallPolicy When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import),
|
360
|
+
$ pulumi import gcp:compute/regionNetworkFirewallPolicy:RegionNetworkFirewallPolicy When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), RegionNetworkFirewallPolicy can be imported using one of the formats above. For example
|
365
361
|
```
|
366
362
|
|
367
363
|
```sh
|
@@ -451,10 +447,10 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
451
447
|
:param pulumi.Input[str] name: User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
452
448
|
|
453
449
|
|
454
|
-
|
455
450
|
- - -
|
456
|
-
:param pulumi.Input[str] project: The project
|
457
|
-
|
451
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
452
|
+
If it is not provided, the provider project is used.
|
453
|
+
:param pulumi.Input[str] region: The region of this resource.
|
458
454
|
:param pulumi.Input[str] region_network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
459
455
|
:param pulumi.Input[int] rule_tuple_count: Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.
|
460
456
|
:param pulumi.Input[str] self_link: Server-defined URL for the resource.
|
@@ -507,7 +503,6 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
507
503
|
User-provided name of the Network firewall policy. The name should be unique in the project in which the firewall policy is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
|
508
504
|
|
509
505
|
|
510
|
-
|
511
506
|
- - -
|
512
507
|
"""
|
513
508
|
return pulumi.get(self, "name")
|
@@ -516,7 +511,8 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
516
511
|
@pulumi.getter
|
517
512
|
def project(self) -> pulumi.Output[str]:
|
518
513
|
"""
|
519
|
-
The project
|
514
|
+
The ID of the project in which the resource belongs.
|
515
|
+
If it is not provided, the provider project is used.
|
520
516
|
"""
|
521
517
|
return pulumi.get(self, "project")
|
522
518
|
|
@@ -524,7 +520,7 @@ class RegionNetworkFirewallPolicy(pulumi.CustomResource):
|
|
524
520
|
@pulumi.getter
|
525
521
|
def region(self) -> pulumi.Output[str]:
|
526
522
|
"""
|
527
|
-
The
|
523
|
+
The region of this resource.
|
528
524
|
"""
|
529
525
|
return pulumi.get(self, "region")
|
530
526
|
|
@@ -28,6 +28,7 @@ class RouterPeerArgs:
|
|
28
28
|
enable_ipv6: Optional[pulumi.Input[bool]] = None,
|
29
29
|
ip_address: Optional[pulumi.Input[str]] = None,
|
30
30
|
ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
31
|
+
md5_authentication_key: Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']] = None,
|
31
32
|
name: Optional[pulumi.Input[str]] = None,
|
32
33
|
peer_ip_address: Optional[pulumi.Input[str]] = None,
|
33
34
|
peer_ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
@@ -71,6 +72,8 @@ class RouterPeerArgs:
|
|
71
72
|
The address must be in the range 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64.
|
72
73
|
If you do not specify the next hop addresses, Google Cloud automatically
|
73
74
|
assigns unused addresses from the 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64 range for you.
|
75
|
+
:param pulumi.Input['RouterPeerMd5AuthenticationKeyArgs'] md5_authentication_key: Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
76
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
74
77
|
:param pulumi.Input[str] name: Name of this BGP peer. The name must be 1-63 characters long,
|
75
78
|
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
76
79
|
long and match the regular expression `a-z?` which
|
@@ -113,6 +116,8 @@ class RouterPeerArgs:
|
|
113
116
|
pulumi.set(__self__, "ip_address", ip_address)
|
114
117
|
if ipv6_nexthop_address is not None:
|
115
118
|
pulumi.set(__self__, "ipv6_nexthop_address", ipv6_nexthop_address)
|
119
|
+
if md5_authentication_key is not None:
|
120
|
+
pulumi.set(__self__, "md5_authentication_key", md5_authentication_key)
|
116
121
|
if name is not None:
|
117
122
|
pulumi.set(__self__, "name", name)
|
118
123
|
if peer_ip_address is not None:
|
@@ -293,6 +298,19 @@ class RouterPeerArgs:
|
|
293
298
|
def ipv6_nexthop_address(self, value: Optional[pulumi.Input[str]]):
|
294
299
|
pulumi.set(self, "ipv6_nexthop_address", value)
|
295
300
|
|
301
|
+
@property
|
302
|
+
@pulumi.getter(name="md5AuthenticationKey")
|
303
|
+
def md5_authentication_key(self) -> Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']]:
|
304
|
+
"""
|
305
|
+
Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
306
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "md5_authentication_key")
|
309
|
+
|
310
|
+
@md5_authentication_key.setter
|
311
|
+
def md5_authentication_key(self, value: Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']]):
|
312
|
+
pulumi.set(self, "md5_authentication_key", value)
|
313
|
+
|
296
314
|
@property
|
297
315
|
@pulumi.getter
|
298
316
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -394,6 +412,7 @@ class _RouterPeerState:
|
|
394
412
|
ip_address: Optional[pulumi.Input[str]] = None,
|
395
413
|
ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
396
414
|
management_type: Optional[pulumi.Input[str]] = None,
|
415
|
+
md5_authentication_key: Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']] = None,
|
397
416
|
name: Optional[pulumi.Input[str]] = None,
|
398
417
|
peer_asn: Optional[pulumi.Input[int]] = None,
|
399
418
|
peer_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -434,6 +453,8 @@ class _RouterPeerState:
|
|
434
453
|
If you do not specify the next hop addresses, Google Cloud automatically
|
435
454
|
assigns unused addresses from the 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64 range for you.
|
436
455
|
:param pulumi.Input[str] management_type: The resource that configures and manages this BGP peer.
|
456
|
+
:param pulumi.Input['RouterPeerMd5AuthenticationKeyArgs'] md5_authentication_key: Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
457
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
437
458
|
:param pulumi.Input[str] name: Name of this BGP peer. The name must be 1-63 characters long,
|
438
459
|
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
439
460
|
long and match the regular expression `a-z?` which
|
@@ -483,6 +504,8 @@ class _RouterPeerState:
|
|
483
504
|
pulumi.set(__self__, "ipv6_nexthop_address", ipv6_nexthop_address)
|
484
505
|
if management_type is not None:
|
485
506
|
pulumi.set(__self__, "management_type", management_type)
|
507
|
+
if md5_authentication_key is not None:
|
508
|
+
pulumi.set(__self__, "md5_authentication_key", md5_authentication_key)
|
486
509
|
if name is not None:
|
487
510
|
pulumi.set(__self__, "name", name)
|
488
511
|
if peer_asn is not None:
|
@@ -651,6 +674,19 @@ class _RouterPeerState:
|
|
651
674
|
def management_type(self, value: Optional[pulumi.Input[str]]):
|
652
675
|
pulumi.set(self, "management_type", value)
|
653
676
|
|
677
|
+
@property
|
678
|
+
@pulumi.getter(name="md5AuthenticationKey")
|
679
|
+
def md5_authentication_key(self) -> Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']]:
|
680
|
+
"""
|
681
|
+
Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
682
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
683
|
+
"""
|
684
|
+
return pulumi.get(self, "md5_authentication_key")
|
685
|
+
|
686
|
+
@md5_authentication_key.setter
|
687
|
+
def md5_authentication_key(self, value: Optional[pulumi.Input['RouterPeerMd5AuthenticationKeyArgs']]):
|
688
|
+
pulumi.set(self, "md5_authentication_key", value)
|
689
|
+
|
654
690
|
@property
|
655
691
|
@pulumi.getter
|
656
692
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -781,6 +817,7 @@ class RouterPeer(pulumi.CustomResource):
|
|
781
817
|
interface: Optional[pulumi.Input[str]] = None,
|
782
818
|
ip_address: Optional[pulumi.Input[str]] = None,
|
783
819
|
ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
820
|
+
md5_authentication_key: Optional[pulumi.Input[pulumi.InputType['RouterPeerMd5AuthenticationKeyArgs']]] = None,
|
784
821
|
name: Optional[pulumi.Input[str]] = None,
|
785
822
|
peer_asn: Optional[pulumi.Input[int]] = None,
|
786
823
|
peer_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -983,6 +1020,8 @@ class RouterPeer(pulumi.CustomResource):
|
|
983
1020
|
The address must be in the range 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64.
|
984
1021
|
If you do not specify the next hop addresses, Google Cloud automatically
|
985
1022
|
assigns unused addresses from the 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64 range for you.
|
1023
|
+
:param pulumi.Input[pulumi.InputType['RouterPeerMd5AuthenticationKeyArgs']] md5_authentication_key: Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
1024
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
986
1025
|
:param pulumi.Input[str] name: Name of this BGP peer. The name must be 1-63 characters long,
|
987
1026
|
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
988
1027
|
long and match the regular expression `a-z?` which
|
@@ -1203,6 +1242,7 @@ class RouterPeer(pulumi.CustomResource):
|
|
1203
1242
|
interface: Optional[pulumi.Input[str]] = None,
|
1204
1243
|
ip_address: Optional[pulumi.Input[str]] = None,
|
1205
1244
|
ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
1245
|
+
md5_authentication_key: Optional[pulumi.Input[pulumi.InputType['RouterPeerMd5AuthenticationKeyArgs']]] = None,
|
1206
1246
|
name: Optional[pulumi.Input[str]] = None,
|
1207
1247
|
peer_asn: Optional[pulumi.Input[int]] = None,
|
1208
1248
|
peer_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -1232,6 +1272,7 @@ class RouterPeer(pulumi.CustomResource):
|
|
1232
1272
|
__props__.__dict__["interface"] = interface
|
1233
1273
|
__props__.__dict__["ip_address"] = ip_address
|
1234
1274
|
__props__.__dict__["ipv6_nexthop_address"] = ipv6_nexthop_address
|
1275
|
+
__props__.__dict__["md5_authentication_key"] = md5_authentication_key
|
1235
1276
|
__props__.__dict__["name"] = name
|
1236
1277
|
if peer_asn is None and not opts.urn:
|
1237
1278
|
raise TypeError("Missing required property 'peer_asn'")
|
@@ -1266,6 +1307,7 @@ class RouterPeer(pulumi.CustomResource):
|
|
1266
1307
|
ip_address: Optional[pulumi.Input[str]] = None,
|
1267
1308
|
ipv6_nexthop_address: Optional[pulumi.Input[str]] = None,
|
1268
1309
|
management_type: Optional[pulumi.Input[str]] = None,
|
1310
|
+
md5_authentication_key: Optional[pulumi.Input[pulumi.InputType['RouterPeerMd5AuthenticationKeyArgs']]] = None,
|
1269
1311
|
name: Optional[pulumi.Input[str]] = None,
|
1270
1312
|
peer_asn: Optional[pulumi.Input[int]] = None,
|
1271
1313
|
peer_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -1311,6 +1353,8 @@ class RouterPeer(pulumi.CustomResource):
|
|
1311
1353
|
If you do not specify the next hop addresses, Google Cloud automatically
|
1312
1354
|
assigns unused addresses from the 2600:2d00:0:2::/64 or 2600:2d00:0:3::/64 range for you.
|
1313
1355
|
:param pulumi.Input[str] management_type: The resource that configures and manages this BGP peer.
|
1356
|
+
:param pulumi.Input[pulumi.InputType['RouterPeerMd5AuthenticationKeyArgs']] md5_authentication_key: Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
1357
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
1314
1358
|
:param pulumi.Input[str] name: Name of this BGP peer. The name must be 1-63 characters long,
|
1315
1359
|
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
1316
1360
|
long and match the regular expression `a-z?` which
|
@@ -1353,6 +1397,7 @@ class RouterPeer(pulumi.CustomResource):
|
|
1353
1397
|
__props__.__dict__["ip_address"] = ip_address
|
1354
1398
|
__props__.__dict__["ipv6_nexthop_address"] = ipv6_nexthop_address
|
1355
1399
|
__props__.__dict__["management_type"] = management_type
|
1400
|
+
__props__.__dict__["md5_authentication_key"] = md5_authentication_key
|
1356
1401
|
__props__.__dict__["name"] = name
|
1357
1402
|
__props__.__dict__["peer_asn"] = peer_asn
|
1358
1403
|
__props__.__dict__["peer_ip_address"] = peer_ip_address
|
@@ -1470,6 +1515,15 @@ class RouterPeer(pulumi.CustomResource):
|
|
1470
1515
|
"""
|
1471
1516
|
return pulumi.get(self, "management_type")
|
1472
1517
|
|
1518
|
+
@property
|
1519
|
+
@pulumi.getter(name="md5AuthenticationKey")
|
1520
|
+
def md5_authentication_key(self) -> pulumi.Output[Optional['outputs.RouterPeerMd5AuthenticationKey']]:
|
1521
|
+
"""
|
1522
|
+
Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the
|
1523
|
+
Router.md5_authentication_keys. The field must comply with RFC1035.
|
1524
|
+
"""
|
1525
|
+
return pulumi.get(self, "md5_authentication_key")
|
1526
|
+
|
1473
1527
|
@property
|
1474
1528
|
@pulumi.getter
|
1475
1529
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/compute/vpn_tunnel.py
CHANGED
@@ -383,7 +383,8 @@ class _VPNTunnelState:
|
|
383
383
|
:param pulumi.Input[int] ike_version: IKE protocol version to use when establishing the VPN tunnel with
|
384
384
|
peer VPN gateway.
|
385
385
|
Acceptable IKE versions are 1 or 2. Default version is 2.
|
386
|
-
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource.
|
386
|
+
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource. Used
|
387
|
+
internally during updates.
|
387
388
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels to apply to this VpnTunnel.
|
388
389
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
389
390
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -548,7 +549,8 @@ class _VPNTunnelState:
|
|
548
549
|
@pulumi.getter(name="labelFingerprint")
|
549
550
|
def label_fingerprint(self) -> Optional[pulumi.Input[str]]:
|
550
551
|
"""
|
551
|
-
The fingerprint used for optimistic locking of this resource.
|
552
|
+
The fingerprint used for optimistic locking of this resource. Used
|
553
|
+
internally during updates.
|
552
554
|
"""
|
553
555
|
return pulumi.get(self, "label_fingerprint")
|
554
556
|
|
@@ -1170,7 +1172,8 @@ class VPNTunnel(pulumi.CustomResource):
|
|
1170
1172
|
:param pulumi.Input[int] ike_version: IKE protocol version to use when establishing the VPN tunnel with
|
1171
1173
|
peer VPN gateway.
|
1172
1174
|
Acceptable IKE versions are 1 or 2. Default version is 2.
|
1173
|
-
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource.
|
1175
|
+
:param pulumi.Input[str] label_fingerprint: The fingerprint used for optimistic locking of this resource. Used
|
1176
|
+
internally during updates.
|
1174
1177
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels to apply to this VpnTunnel.
|
1175
1178
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1176
1179
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1295,7 +1298,8 @@ class VPNTunnel(pulumi.CustomResource):
|
|
1295
1298
|
@pulumi.getter(name="labelFingerprint")
|
1296
1299
|
def label_fingerprint(self) -> pulumi.Output[str]:
|
1297
1300
|
"""
|
1298
|
-
The fingerprint used for optimistic locking of this resource.
|
1301
|
+
The fingerprint used for optimistic locking of this resource. Used
|
1302
|
+
internally during updates.
|
1299
1303
|
"""
|
1300
1304
|
return pulumi.get(self, "label_fingerprint")
|
1301
1305
|
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -176,6 +176,10 @@ class _ExportableConfig(types.ModuleType):
|
|
176
176
|
def clouddeploy_custom_endpoint(self) -> Optional[str]:
|
177
177
|
return __config__.get('clouddeployCustomEndpoint')
|
178
178
|
|
179
|
+
@property
|
180
|
+
def clouddomains_custom_endpoint(self) -> Optional[str]:
|
181
|
+
return __config__.get('clouddomainsCustomEndpoint')
|
182
|
+
|
179
183
|
@property
|
180
184
|
def cloudfunctions2_custom_endpoint(self) -> Optional[str]:
|
181
185
|
return __config__.get('cloudfunctions2CustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -208,6 +208,7 @@ __all__ = [
|
|
208
208
|
'ClusterServiceExternalIpsConfigArgs',
|
209
209
|
'ClusterTpuConfigArgs',
|
210
210
|
'ClusterVerticalPodAutoscalingArgs',
|
211
|
+
'ClusterWorkloadAltsConfigArgs',
|
211
212
|
'ClusterWorkloadIdentityConfigArgs',
|
212
213
|
'NodePoolAutoscalingArgs',
|
213
214
|
'NodePoolManagementArgs',
|
@@ -10355,6 +10356,28 @@ class ClusterVerticalPodAutoscalingArgs:
|
|
10355
10356
|
pulumi.set(self, "enabled", value)
|
10356
10357
|
|
10357
10358
|
|
10359
|
+
@pulumi.input_type
|
10360
|
+
class ClusterWorkloadAltsConfigArgs:
|
10361
|
+
def __init__(__self__, *,
|
10362
|
+
enable_alts: pulumi.Input[bool]):
|
10363
|
+
"""
|
10364
|
+
:param pulumi.Input[bool] enable_alts: Whether the alts handshaker should be enabled or not for direct-path. Requires Workload Identity (workloadPool) must be non-empty).
|
10365
|
+
"""
|
10366
|
+
pulumi.set(__self__, "enable_alts", enable_alts)
|
10367
|
+
|
10368
|
+
@property
|
10369
|
+
@pulumi.getter(name="enableAlts")
|
10370
|
+
def enable_alts(self) -> pulumi.Input[bool]:
|
10371
|
+
"""
|
10372
|
+
Whether the alts handshaker should be enabled or not for direct-path. Requires Workload Identity (workloadPool) must be non-empty).
|
10373
|
+
"""
|
10374
|
+
return pulumi.get(self, "enable_alts")
|
10375
|
+
|
10376
|
+
@enable_alts.setter
|
10377
|
+
def enable_alts(self, value: pulumi.Input[bool]):
|
10378
|
+
pulumi.set(self, "enable_alts", value)
|
10379
|
+
|
10380
|
+
|
10358
10381
|
@pulumi.input_type
|
10359
10382
|
class ClusterWorkloadIdentityConfigArgs:
|
10360
10383
|
def __init__(__self__, *,
|