pulumi-gcp 8.25.0a1743489606__py3-none-any.whl → 8.25.0a1743706148__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 +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
@@ -40,8 +40,8 @@ class PublicDelegatedPrefixArgs:
|
|
40
40
|
:param pulumi.Input[str] description: An optional description of this resource.
|
41
41
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
42
42
|
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
43
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
44
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
43
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
44
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
45
45
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
46
46
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
47
47
|
long and match the regular expression `a-z?`
|
@@ -147,8 +147,8 @@ class PublicDelegatedPrefixArgs:
|
|
147
147
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
148
148
|
"""
|
149
149
|
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
150
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
151
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
150
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
151
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
152
152
|
"""
|
153
153
|
return pulumi.get(self, "mode")
|
154
154
|
|
@@ -210,8 +210,8 @@ class _PublicDelegatedPrefixState:
|
|
210
210
|
- - -
|
211
211
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
212
212
|
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
213
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
214
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
213
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
214
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
215
215
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
216
216
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
217
217
|
long and match the regular expression `a-z?`
|
@@ -301,8 +301,8 @@ class _PublicDelegatedPrefixState:
|
|
301
301
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
302
302
|
"""
|
303
303
|
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
304
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
305
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
304
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
305
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
306
306
|
"""
|
307
307
|
return pulumi.get(self, "mode")
|
308
308
|
|
@@ -449,6 +449,33 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
449
449
|
allocatable_prefix_length=64,
|
450
450
|
mode="EXTERNAL_IPV6_FORWARDING_RULE_CREATION")
|
451
451
|
```
|
452
|
+
### Public Delegated Prefix Ipv6 Subnet Mode
|
453
|
+
|
454
|
+
```python
|
455
|
+
import pulumi
|
456
|
+
import pulumi_gcp as gcp
|
457
|
+
|
458
|
+
advertised = gcp.compute.PublicAdvertisedPrefix("advertised",
|
459
|
+
name="ipv6-pap",
|
460
|
+
description="description",
|
461
|
+
dns_verification_ip="2001:db8::",
|
462
|
+
ip_cidr_range="2001:db8::/32",
|
463
|
+
pdp_scope="REGIONAL")
|
464
|
+
prefix = gcp.compute.PublicDelegatedPrefix("prefix",
|
465
|
+
name="ipv6-root-pdp",
|
466
|
+
description="test-delegation-mode-pdp",
|
467
|
+
region="us-east1",
|
468
|
+
ip_cidr_range="2001:db8::/40",
|
469
|
+
parent_prefix=advertised.id,
|
470
|
+
mode="DELEGATION")
|
471
|
+
subprefix = gcp.compute.PublicDelegatedPrefix("subprefix",
|
472
|
+
name="ipv6-sub-pdp",
|
473
|
+
description="test-subnet-mode-pdp",
|
474
|
+
region="us-east1",
|
475
|
+
ip_cidr_range="2001:db8::/48",
|
476
|
+
parent_prefix=prefix.id,
|
477
|
+
mode="EXTERNAL_IPV6_SUBNETWORK_CREATION")
|
478
|
+
```
|
452
479
|
|
453
480
|
## Import
|
454
481
|
|
@@ -490,8 +517,8 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
490
517
|
- - -
|
491
518
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
492
519
|
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
493
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
494
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
520
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
521
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
495
522
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
496
523
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
497
524
|
long and match the regular expression `a-z?`
|
@@ -566,6 +593,33 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
566
593
|
allocatable_prefix_length=64,
|
567
594
|
mode="EXTERNAL_IPV6_FORWARDING_RULE_CREATION")
|
568
595
|
```
|
596
|
+
### Public Delegated Prefix Ipv6 Subnet Mode
|
597
|
+
|
598
|
+
```python
|
599
|
+
import pulumi
|
600
|
+
import pulumi_gcp as gcp
|
601
|
+
|
602
|
+
advertised = gcp.compute.PublicAdvertisedPrefix("advertised",
|
603
|
+
name="ipv6-pap",
|
604
|
+
description="description",
|
605
|
+
dns_verification_ip="2001:db8::",
|
606
|
+
ip_cidr_range="2001:db8::/32",
|
607
|
+
pdp_scope="REGIONAL")
|
608
|
+
prefix = gcp.compute.PublicDelegatedPrefix("prefix",
|
609
|
+
name="ipv6-root-pdp",
|
610
|
+
description="test-delegation-mode-pdp",
|
611
|
+
region="us-east1",
|
612
|
+
ip_cidr_range="2001:db8::/40",
|
613
|
+
parent_prefix=advertised.id,
|
614
|
+
mode="DELEGATION")
|
615
|
+
subprefix = gcp.compute.PublicDelegatedPrefix("subprefix",
|
616
|
+
name="ipv6-sub-pdp",
|
617
|
+
description="test-subnet-mode-pdp",
|
618
|
+
region="us-east1",
|
619
|
+
ip_cidr_range="2001:db8::/48",
|
620
|
+
parent_prefix=prefix.id,
|
621
|
+
mode="EXTERNAL_IPV6_SUBNETWORK_CREATION")
|
622
|
+
```
|
569
623
|
|
570
624
|
## Import
|
571
625
|
|
@@ -681,8 +735,8 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
681
735
|
- - -
|
682
736
|
:param pulumi.Input[bool] is_live_migration: If true, the prefix will be live migrated.
|
683
737
|
:param pulumi.Input[str] mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
684
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
685
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
738
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
739
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
686
740
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
687
741
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
688
742
|
long and match the regular expression `a-z?`
|
@@ -713,7 +767,7 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
713
767
|
|
714
768
|
@property
|
715
769
|
@pulumi.getter(name="allocatablePrefixLength")
|
716
|
-
def allocatable_prefix_length(self) -> pulumi.Output[
|
770
|
+
def allocatable_prefix_length(self) -> pulumi.Output[int]:
|
717
771
|
"""
|
718
772
|
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
719
773
|
"""
|
@@ -751,8 +805,8 @@ class PublicDelegatedPrefix(pulumi.CustomResource):
|
|
751
805
|
def mode(self) -> pulumi.Output[Optional[str]]:
|
752
806
|
"""
|
753
807
|
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
754
|
-
EXTERNAL_IPV6_FORWARDING_RULE_CREATION.
|
755
|
-
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`.
|
808
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
809
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
756
810
|
"""
|
757
811
|
return pulumi.get(self, "mode")
|
758
812
|
|
pulumi_gcp/compute/router.py
CHANGED
@@ -25,6 +25,7 @@ class RouterArgs:
|
|
25
25
|
bgp: Optional[pulumi.Input['RouterBgpArgs']] = None,
|
26
26
|
description: Optional[pulumi.Input[str]] = None,
|
27
27
|
encrypted_interconnect_router: Optional[pulumi.Input[bool]] = None,
|
28
|
+
md5_authentication_keys: Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']] = None,
|
28
29
|
name: Optional[pulumi.Input[str]] = None,
|
29
30
|
project: Optional[pulumi.Input[str]] = None,
|
30
31
|
region: Optional[pulumi.Input[str]] = None):
|
@@ -39,6 +40,8 @@ class RouterArgs:
|
|
39
40
|
:param pulumi.Input[str] description: An optional description of this resource.
|
40
41
|
:param pulumi.Input[bool] encrypted_interconnect_router: Indicates if a router is dedicated for use with encrypted VLAN
|
41
42
|
attachments (interconnectAttachments).
|
43
|
+
:param pulumi.Input['RouterMd5AuthenticationKeysArgs'] md5_authentication_keys: Keys used for MD5 authentication.
|
44
|
+
Structure is documented below.
|
42
45
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
43
46
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
44
47
|
long and match the regular expression `a-z?`
|
@@ -56,6 +59,8 @@ class RouterArgs:
|
|
56
59
|
pulumi.set(__self__, "description", description)
|
57
60
|
if encrypted_interconnect_router is not None:
|
58
61
|
pulumi.set(__self__, "encrypted_interconnect_router", encrypted_interconnect_router)
|
62
|
+
if md5_authentication_keys is not None:
|
63
|
+
pulumi.set(__self__, "md5_authentication_keys", md5_authentication_keys)
|
59
64
|
if name is not None:
|
60
65
|
pulumi.set(__self__, "name", name)
|
61
66
|
if project is not None:
|
@@ -116,6 +121,19 @@ class RouterArgs:
|
|
116
121
|
def encrypted_interconnect_router(self, value: Optional[pulumi.Input[bool]]):
|
117
122
|
pulumi.set(self, "encrypted_interconnect_router", value)
|
118
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="md5AuthenticationKeys")
|
126
|
+
def md5_authentication_keys(self) -> Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']]:
|
127
|
+
"""
|
128
|
+
Keys used for MD5 authentication.
|
129
|
+
Structure is documented below.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "md5_authentication_keys")
|
132
|
+
|
133
|
+
@md5_authentication_keys.setter
|
134
|
+
def md5_authentication_keys(self, value: Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']]):
|
135
|
+
pulumi.set(self, "md5_authentication_keys", value)
|
136
|
+
|
119
137
|
@property
|
120
138
|
@pulumi.getter
|
121
139
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -166,6 +184,7 @@ class _RouterState:
|
|
166
184
|
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
167
185
|
description: Optional[pulumi.Input[str]] = None,
|
168
186
|
encrypted_interconnect_router: Optional[pulumi.Input[bool]] = None,
|
187
|
+
md5_authentication_keys: Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']] = None,
|
169
188
|
name: Optional[pulumi.Input[str]] = None,
|
170
189
|
network: Optional[pulumi.Input[str]] = None,
|
171
190
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -179,6 +198,8 @@ class _RouterState:
|
|
179
198
|
:param pulumi.Input[str] description: An optional description of this resource.
|
180
199
|
:param pulumi.Input[bool] encrypted_interconnect_router: Indicates if a router is dedicated for use with encrypted VLAN
|
181
200
|
attachments (interconnectAttachments).
|
201
|
+
:param pulumi.Input['RouterMd5AuthenticationKeysArgs'] md5_authentication_keys: Keys used for MD5 authentication.
|
202
|
+
Structure is documented below.
|
182
203
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
183
204
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
184
205
|
long and match the regular expression `a-z?`
|
@@ -202,6 +223,8 @@ class _RouterState:
|
|
202
223
|
pulumi.set(__self__, "description", description)
|
203
224
|
if encrypted_interconnect_router is not None:
|
204
225
|
pulumi.set(__self__, "encrypted_interconnect_router", encrypted_interconnect_router)
|
226
|
+
if md5_authentication_keys is not None:
|
227
|
+
pulumi.set(__self__, "md5_authentication_keys", md5_authentication_keys)
|
205
228
|
if name is not None:
|
206
229
|
pulumi.set(__self__, "name", name)
|
207
230
|
if network is not None:
|
@@ -263,6 +286,19 @@ class _RouterState:
|
|
263
286
|
def encrypted_interconnect_router(self, value: Optional[pulumi.Input[bool]]):
|
264
287
|
pulumi.set(self, "encrypted_interconnect_router", value)
|
265
288
|
|
289
|
+
@property
|
290
|
+
@pulumi.getter(name="md5AuthenticationKeys")
|
291
|
+
def md5_authentication_keys(self) -> Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']]:
|
292
|
+
"""
|
293
|
+
Keys used for MD5 authentication.
|
294
|
+
Structure is documented below.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "md5_authentication_keys")
|
297
|
+
|
298
|
+
@md5_authentication_keys.setter
|
299
|
+
def md5_authentication_keys(self, value: Optional[pulumi.Input['RouterMd5AuthenticationKeysArgs']]):
|
300
|
+
pulumi.set(self, "md5_authentication_keys", value)
|
301
|
+
|
266
302
|
@property
|
267
303
|
@pulumi.getter
|
268
304
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -341,6 +377,7 @@ class Router(pulumi.CustomResource):
|
|
341
377
|
bgp: Optional[pulumi.Input[Union['RouterBgpArgs', 'RouterBgpArgsDict']]] = None,
|
342
378
|
description: Optional[pulumi.Input[str]] = None,
|
343
379
|
encrypted_interconnect_router: Optional[pulumi.Input[bool]] = None,
|
380
|
+
md5_authentication_keys: Optional[pulumi.Input[Union['RouterMd5AuthenticationKeysArgs', 'RouterMd5AuthenticationKeysArgsDict']]] = None,
|
344
381
|
name: Optional[pulumi.Input[str]] = None,
|
345
382
|
network: Optional[pulumi.Input[str]] = None,
|
346
383
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -438,6 +475,8 @@ class Router(pulumi.CustomResource):
|
|
438
475
|
:param pulumi.Input[str] description: An optional description of this resource.
|
439
476
|
:param pulumi.Input[bool] encrypted_interconnect_router: Indicates if a router is dedicated for use with encrypted VLAN
|
440
477
|
attachments (interconnectAttachments).
|
478
|
+
:param pulumi.Input[Union['RouterMd5AuthenticationKeysArgs', 'RouterMd5AuthenticationKeysArgsDict']] md5_authentication_keys: Keys used for MD5 authentication.
|
479
|
+
Structure is documented below.
|
441
480
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
442
481
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
443
482
|
long and match the regular expression `a-z?`
|
@@ -561,6 +600,7 @@ class Router(pulumi.CustomResource):
|
|
561
600
|
bgp: Optional[pulumi.Input[Union['RouterBgpArgs', 'RouterBgpArgsDict']]] = None,
|
562
601
|
description: Optional[pulumi.Input[str]] = None,
|
563
602
|
encrypted_interconnect_router: Optional[pulumi.Input[bool]] = None,
|
603
|
+
md5_authentication_keys: Optional[pulumi.Input[Union['RouterMd5AuthenticationKeysArgs', 'RouterMd5AuthenticationKeysArgsDict']]] = None,
|
564
604
|
name: Optional[pulumi.Input[str]] = None,
|
565
605
|
network: Optional[pulumi.Input[str]] = None,
|
566
606
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -577,6 +617,7 @@ class Router(pulumi.CustomResource):
|
|
577
617
|
__props__.__dict__["bgp"] = bgp
|
578
618
|
__props__.__dict__["description"] = description
|
579
619
|
__props__.__dict__["encrypted_interconnect_router"] = encrypted_interconnect_router
|
620
|
+
__props__.__dict__["md5_authentication_keys"] = md5_authentication_keys
|
580
621
|
__props__.__dict__["name"] = name
|
581
622
|
if network is None and not opts.urn:
|
582
623
|
raise TypeError("Missing required property 'network'")
|
@@ -599,6 +640,7 @@ class Router(pulumi.CustomResource):
|
|
599
640
|
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
600
641
|
description: Optional[pulumi.Input[str]] = None,
|
601
642
|
encrypted_interconnect_router: Optional[pulumi.Input[bool]] = None,
|
643
|
+
md5_authentication_keys: Optional[pulumi.Input[Union['RouterMd5AuthenticationKeysArgs', 'RouterMd5AuthenticationKeysArgsDict']]] = None,
|
602
644
|
name: Optional[pulumi.Input[str]] = None,
|
603
645
|
network: Optional[pulumi.Input[str]] = None,
|
604
646
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -617,6 +659,8 @@ class Router(pulumi.CustomResource):
|
|
617
659
|
:param pulumi.Input[str] description: An optional description of this resource.
|
618
660
|
:param pulumi.Input[bool] encrypted_interconnect_router: Indicates if a router is dedicated for use with encrypted VLAN
|
619
661
|
attachments (interconnectAttachments).
|
662
|
+
:param pulumi.Input[Union['RouterMd5AuthenticationKeysArgs', 'RouterMd5AuthenticationKeysArgsDict']] md5_authentication_keys: Keys used for MD5 authentication.
|
663
|
+
Structure is documented below.
|
620
664
|
:param pulumi.Input[str] name: Name of the resource. The name must be 1-63 characters long, and
|
621
665
|
comply with RFC1035. Specifically, the name must be 1-63 characters
|
622
666
|
long and match the regular expression `a-z?`
|
@@ -640,6 +684,7 @@ class Router(pulumi.CustomResource):
|
|
640
684
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
641
685
|
__props__.__dict__["description"] = description
|
642
686
|
__props__.__dict__["encrypted_interconnect_router"] = encrypted_interconnect_router
|
687
|
+
__props__.__dict__["md5_authentication_keys"] = md5_authentication_keys
|
643
688
|
__props__.__dict__["name"] = name
|
644
689
|
__props__.__dict__["network"] = network
|
645
690
|
__props__.__dict__["project"] = project
|
@@ -681,6 +726,15 @@ class Router(pulumi.CustomResource):
|
|
681
726
|
"""
|
682
727
|
return pulumi.get(self, "encrypted_interconnect_router")
|
683
728
|
|
729
|
+
@property
|
730
|
+
@pulumi.getter(name="md5AuthenticationKeys")
|
731
|
+
def md5_authentication_keys(self) -> pulumi.Output[Optional['outputs.RouterMd5AuthenticationKeys']]:
|
732
|
+
"""
|
733
|
+
Keys used for MD5 authentication.
|
734
|
+
Structure is documented below.
|
735
|
+
"""
|
736
|
+
return pulumi.get(self, "md5_authentication_keys")
|
737
|
+
|
684
738
|
@property
|
685
739
|
@pulumi.getter
|
686
740
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/compute/subnetwork.py
CHANGED
@@ -55,10 +55,13 @@ class SubnetworkArgs:
|
|
55
55
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
56
56
|
you create the resource. This field can be set only at resource
|
57
57
|
creation time.
|
58
|
-
:param pulumi.Input[bool] enable_flow_logs:
|
58
|
+
:param pulumi.Input[bool] enable_flow_logs: (Optional, Deprecated)
|
59
|
+
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
59
60
|
it will not appear in get listings. If not set the default behavior is determined by the
|
60
61
|
org policy, if there is no org policy specified, then it will default to disabled.
|
61
62
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
63
|
+
|
64
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
62
65
|
:param pulumi.Input[str] external_ipv6_prefix: The range of external IPv6 addresses that are owned by this subnetwork.
|
63
66
|
:param pulumi.Input[str] ip_cidr_range: The range of internal addresses that are owned by this subnetwork.
|
64
67
|
Provide this property when you create the subnetwork. For example,
|
@@ -132,6 +135,9 @@ class SubnetworkArgs:
|
|
132
135
|
pulumi.set(__self__, "allow_subnet_cidr_routes_overlap", allow_subnet_cidr_routes_overlap)
|
133
136
|
if description is not None:
|
134
137
|
pulumi.set(__self__, "description", description)
|
138
|
+
if enable_flow_logs is not None:
|
139
|
+
warnings.warn("""This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""", DeprecationWarning)
|
140
|
+
pulumi.log.warn("""enable_flow_logs is deprecated: This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""")
|
135
141
|
if enable_flow_logs is not None:
|
136
142
|
pulumi.set(__self__, "enable_flow_logs", enable_flow_logs)
|
137
143
|
if external_ipv6_prefix is not None:
|
@@ -214,12 +220,16 @@ class SubnetworkArgs:
|
|
214
220
|
|
215
221
|
@property
|
216
222
|
@pulumi.getter(name="enableFlowLogs")
|
223
|
+
@_utilities.deprecated("""This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""")
|
217
224
|
def enable_flow_logs(self) -> Optional[pulumi.Input[bool]]:
|
218
225
|
"""
|
226
|
+
(Optional, Deprecated)
|
219
227
|
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
220
228
|
it will not appear in get listings. If not set the default behavior is determined by the
|
221
229
|
org policy, if there is no org policy specified, then it will default to disabled.
|
222
230
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
231
|
+
|
232
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
223
233
|
"""
|
224
234
|
return pulumi.get(self, "enable_flow_logs")
|
225
235
|
|
@@ -513,10 +523,13 @@ class _SubnetworkState:
|
|
513
523
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
514
524
|
you create the resource. This field can be set only at resource
|
515
525
|
creation time.
|
516
|
-
:param pulumi.Input[bool] enable_flow_logs:
|
526
|
+
:param pulumi.Input[bool] enable_flow_logs: (Optional, Deprecated)
|
527
|
+
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
517
528
|
it will not appear in get listings. If not set the default behavior is determined by the
|
518
529
|
org policy, if there is no org policy specified, then it will default to disabled.
|
519
530
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
531
|
+
|
532
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
520
533
|
:param pulumi.Input[str] external_ipv6_prefix: The range of external IPv6 addresses that are owned by this subnetwork.
|
521
534
|
:param pulumi.Input[str] fingerprint: Fingerprint of this resource. This field is used internally during updates of this resource.
|
522
535
|
:param pulumi.Input[str] gateway_address: The gateway address for default routes to reach destination addresses
|
@@ -612,6 +625,9 @@ class _SubnetworkState:
|
|
612
625
|
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
613
626
|
if description is not None:
|
614
627
|
pulumi.set(__self__, "description", description)
|
628
|
+
if enable_flow_logs is not None:
|
629
|
+
warnings.warn("""This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""", DeprecationWarning)
|
630
|
+
pulumi.log.warn("""enable_flow_logs is deprecated: This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""")
|
615
631
|
if enable_flow_logs is not None:
|
616
632
|
pulumi.set(__self__, "enable_flow_logs", enable_flow_logs)
|
617
633
|
if external_ipv6_prefix is not None:
|
@@ -711,12 +727,16 @@ class _SubnetworkState:
|
|
711
727
|
|
712
728
|
@property
|
713
729
|
@pulumi.getter(name="enableFlowLogs")
|
730
|
+
@_utilities.deprecated("""This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""")
|
714
731
|
def enable_flow_logs(self) -> Optional[pulumi.Input[bool]]:
|
715
732
|
"""
|
733
|
+
(Optional, Deprecated)
|
716
734
|
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
717
735
|
it will not appear in get listings. If not set the default behavior is determined by the
|
718
736
|
org policy, if there is no org policy specified, then it will default to disabled.
|
719
737
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
738
|
+
|
739
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
720
740
|
"""
|
721
741
|
return pulumi.get(self, "enable_flow_logs")
|
722
742
|
|
@@ -1366,10 +1386,13 @@ class Subnetwork(pulumi.CustomResource):
|
|
1366
1386
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
1367
1387
|
you create the resource. This field can be set only at resource
|
1368
1388
|
creation time.
|
1369
|
-
:param pulumi.Input[bool] enable_flow_logs:
|
1389
|
+
:param pulumi.Input[bool] enable_flow_logs: (Optional, Deprecated)
|
1390
|
+
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
1370
1391
|
it will not appear in get listings. If not set the default behavior is determined by the
|
1371
1392
|
org policy, if there is no org policy specified, then it will default to disabled.
|
1372
1393
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
1394
|
+
|
1395
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
1373
1396
|
:param pulumi.Input[str] external_ipv6_prefix: The range of external IPv6 addresses that are owned by this subnetwork.
|
1374
1397
|
:param pulumi.Input[str] ip_cidr_range: The range of internal addresses that are owned by this subnetwork.
|
1375
1398
|
Provide this property when you create the subnetwork. For example,
|
@@ -1820,10 +1843,13 @@ class Subnetwork(pulumi.CustomResource):
|
|
1820
1843
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
1821
1844
|
you create the resource. This field can be set only at resource
|
1822
1845
|
creation time.
|
1823
|
-
:param pulumi.Input[bool] enable_flow_logs:
|
1846
|
+
:param pulumi.Input[bool] enable_flow_logs: (Optional, Deprecated)
|
1847
|
+
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
1824
1848
|
it will not appear in get listings. If not set the default behavior is determined by the
|
1825
1849
|
org policy, if there is no org policy specified, then it will default to disabled.
|
1826
1850
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
1851
|
+
|
1852
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
1827
1853
|
:param pulumi.Input[str] external_ipv6_prefix: The range of external IPv6 addresses that are owned by this subnetwork.
|
1828
1854
|
:param pulumi.Input[str] fingerprint: Fingerprint of this resource. This field is used internally during updates of this resource.
|
1829
1855
|
:param pulumi.Input[str] gateway_address: The gateway address for default routes to reach destination addresses
|
@@ -1979,12 +2005,16 @@ class Subnetwork(pulumi.CustomResource):
|
|
1979
2005
|
|
1980
2006
|
@property
|
1981
2007
|
@pulumi.getter(name="enableFlowLogs")
|
2008
|
+
@_utilities.deprecated("""This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.""")
|
1982
2009
|
def enable_flow_logs(self) -> pulumi.Output[bool]:
|
1983
2010
|
"""
|
2011
|
+
(Optional, Deprecated)
|
1984
2012
|
Whether to enable flow logging for this subnetwork. If this field is not explicitly set,
|
1985
2013
|
it will not appear in get listings. If not set the default behavior is determined by the
|
1986
2014
|
org policy, if there is no org policy specified, then it will default to disabled.
|
1987
2015
|
This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
|
2016
|
+
|
2017
|
+
> **Warning:** This field is being removed in favor of log_config. If log_config is present, flow logs are enabled.
|
1988
2018
|
"""
|
1989
2019
|
return pulumi.get(self, "enable_flow_logs")
|
1990
2020
|
|
@@ -2083,7 +2113,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
2083
2113
|
|
2084
2114
|
@property
|
2085
2115
|
@pulumi.getter(name="logConfig")
|
2086
|
-
def log_config(self) -> pulumi.Output['outputs.SubnetworkLogConfig']:
|
2116
|
+
def log_config(self) -> pulumi.Output[Optional['outputs.SubnetworkLogConfig']]:
|
2087
2117
|
"""
|
2088
2118
|
This field denotes the VPC flow logging options for this subnetwork. If
|
2089
2119
|
logging is enabled, logs are exported to Cloud Logging. Flow logging
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/outputs.py
CHANGED
@@ -16,6 +16,7 @@ from .. import _utilities
|
|
16
16
|
|
17
17
|
__all__ = [
|
18
18
|
'Batching',
|
19
|
+
'ExternalCredentials',
|
19
20
|
]
|
20
21
|
|
21
22
|
@pulumi.output_type
|
@@ -39,3 +40,29 @@ class Batching(dict):
|
|
39
40
|
return pulumi.get(self, "send_after")
|
40
41
|
|
41
42
|
|
43
|
+
@pulumi.output_type
|
44
|
+
class ExternalCredentials(dict):
|
45
|
+
def __init__(__self__, *,
|
46
|
+
audience: str,
|
47
|
+
identity_token: str,
|
48
|
+
service_account_email: str):
|
49
|
+
pulumi.set(__self__, "audience", audience)
|
50
|
+
pulumi.set(__self__, "identity_token", identity_token)
|
51
|
+
pulumi.set(__self__, "service_account_email", service_account_email)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter
|
55
|
+
def audience(self) -> str:
|
56
|
+
return pulumi.get(self, "audience")
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="identityToken")
|
60
|
+
def identity_token(self) -> str:
|
61
|
+
return pulumi.get(self, "identity_token")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="serviceAccountEmail")
|
65
|
+
def service_account_email(self) -> str:
|
66
|
+
return pulumi.get(self, "service_account_email")
|
67
|
+
|
68
|
+
|
pulumi_gcp/config/vars.py
CHANGED
@@ -361,6 +361,10 @@ class _ExportableConfig(types.ModuleType):
|
|
361
361
|
def eventarc_custom_endpoint(self) -> Optional[str]:
|
362
362
|
return __config__.get('eventarcCustomEndpoint')
|
363
363
|
|
364
|
+
@property
|
365
|
+
def external_credentials(self) -> Optional[str]:
|
366
|
+
return __config__.get('externalCredentials')
|
367
|
+
|
364
368
|
@property
|
365
369
|
def filestore_custom_endpoint(self) -> Optional[str]:
|
366
370
|
return __config__.get('filestoreCustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -5639,7 +5639,7 @@ if not MYPY:
|
|
5639
5639
|
"""
|
5640
5640
|
auto_provisioning_locations: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
5641
5641
|
"""
|
5642
|
-
The list of Google Compute Engine
|
5642
|
+
The list of Google Compute Engine
|
5643
5643
|
[zones](https://cloud.google.com/compute/docs/zones#available) in which the
|
5644
5644
|
NodePool's nodes can be created by NAP.
|
5645
5645
|
"""
|
@@ -5677,7 +5677,7 @@ class ClusterClusterAutoscalingArgs:
|
|
5677
5677
|
:param pulumi.Input['ClusterClusterAutoscalingAutoProvisioningDefaultsArgs'] auto_provisioning_defaults: Contains defaults for a node pool created by NAP. A subset of fields also apply to
|
5678
5678
|
GKE Autopilot clusters.
|
5679
5679
|
Structure is documented below.
|
5680
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] auto_provisioning_locations: The list of Google Compute Engine
|
5680
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] auto_provisioning_locations: The list of Google Compute Engine
|
5681
5681
|
[zones](https://cloud.google.com/compute/docs/zones#available) in which the
|
5682
5682
|
NodePool's nodes can be created by NAP.
|
5683
5683
|
:param pulumi.Input[str] autoscaling_profile: Configuration
|
@@ -5720,7 +5720,7 @@ class ClusterClusterAutoscalingArgs:
|
|
5720
5720
|
@pulumi.getter(name="autoProvisioningLocations")
|
5721
5721
|
def auto_provisioning_locations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
5722
5722
|
"""
|
5723
|
-
The list of Google Compute Engine
|
5723
|
+
The list of Google Compute Engine
|
5724
5724
|
[zones](https://cloud.google.com/compute/docs/zones#available) in which the
|
5725
5725
|
NodePool's nodes can be created by NAP.
|
5726
5726
|
"""
|
@@ -9673,7 +9673,7 @@ if not MYPY:
|
|
9673
9673
|
"""
|
9674
9674
|
certificate_authority_domain_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgsDict']]]]
|
9675
9675
|
"""
|
9676
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9676
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9677
9677
|
"""
|
9678
9678
|
elif False:
|
9679
9679
|
ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -9685,7 +9685,7 @@ class ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigArgs:
|
|
9685
9685
|
certificate_authority_domain_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]] = None):
|
9686
9686
|
"""
|
9687
9687
|
:param pulumi.Input[bool] enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
9688
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9688
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9689
9689
|
"""
|
9690
9690
|
pulumi.set(__self__, "enabled", enabled)
|
9691
9691
|
if certificate_authority_domain_configs is not None:
|
@@ -9707,7 +9707,7 @@ class ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigArgs:
|
|
9707
9707
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
9708
9708
|
def certificate_authority_domain_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]]:
|
9709
9709
|
"""
|
9710
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9710
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
9711
9711
|
"""
|
9712
9712
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
9713
9713
|
|
@@ -12098,7 +12098,7 @@ if not MYPY:
|
|
12098
12098
|
"""
|
12099
12099
|
certificate_authority_domain_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgsDict']]]]
|
12100
12100
|
"""
|
12101
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12101
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12102
12102
|
"""
|
12103
12103
|
elif False:
|
12104
12104
|
ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -12110,7 +12110,7 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAc
|
|
12110
12110
|
certificate_authority_domain_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]] = None):
|
12111
12111
|
"""
|
12112
12112
|
:param pulumi.Input[bool] enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
12113
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12113
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12114
12114
|
"""
|
12115
12115
|
pulumi.set(__self__, "enabled", enabled)
|
12116
12116
|
if certificate_authority_domain_configs is not None:
|
@@ -12132,7 +12132,7 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAc
|
|
12132
12132
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
12133
12133
|
def certificate_authority_domain_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]]:
|
12134
12134
|
"""
|
12135
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12135
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
12136
12136
|
"""
|
12137
12137
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
12138
12138
|
|
@@ -13887,7 +13887,7 @@ if not MYPY:
|
|
13887
13887
|
"""
|
13888
13888
|
certificate_authority_domain_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgsDict']]]]
|
13889
13889
|
"""
|
13890
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13890
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13891
13891
|
"""
|
13892
13892
|
elif False:
|
13893
13893
|
ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -13899,7 +13899,7 @@ class ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigArgs:
|
|
13899
13899
|
certificate_authority_domain_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]] = None):
|
13900
13900
|
"""
|
13901
13901
|
:param pulumi.Input[bool] enabled: Enables private registry config. If set to false, all other fields in this object must not be set.
|
13902
|
-
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13902
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]] certificate_authority_domain_configs: List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13903
13903
|
"""
|
13904
13904
|
pulumi.set(__self__, "enabled", enabled)
|
13905
13905
|
if certificate_authority_domain_configs is not None:
|
@@ -13921,7 +13921,7 @@ class ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigArgs:
|
|
13921
13921
|
@pulumi.getter(name="certificateAuthorityDomainConfigs")
|
13922
13922
|
def certificate_authority_domain_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfigArgs']]]]:
|
13923
13923
|
"""
|
13924
|
-
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13924
|
+
List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
|
13925
13925
|
"""
|
13926
13926
|
return pulumi.get(self, "certificate_authority_domain_configs")
|
13927
13927
|
|