pulumi-gcp 8.31.0__py3-none-any.whl → 8.31.0a1747205151__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 +0 -8
- pulumi_gcp/alloydb/_inputs.py +0 -164
- pulumi_gcp/alloydb/outputs.py +0 -211
- pulumi_gcp/apigee/_inputs.py +0 -20
- pulumi_gcp/apigee/outputs.py +0 -12
- pulumi_gcp/bigquery/routine.py +0 -56
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/certificateauthority/_inputs.py +19 -20
- pulumi_gcp/certificateauthority/authority.py +0 -70
- pulumi_gcp/certificateauthority/outputs.py +11 -12
- pulumi_gcp/cloudfunctionsv2/function.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +0 -312
- pulumi_gcp/compute/get_health_check.py +1 -12
- pulumi_gcp/compute/health_check.py +0 -120
- pulumi_gcp/compute/outputs.py +0 -353
- pulumi_gcp/compute/region_health_check.py +0 -120
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/diagflow/_inputs.py +2894 -6530
- pulumi_gcp/diagflow/cx_flow.py +0 -304
- pulumi_gcp/diagflow/cx_page.py +0 -290
- pulumi_gcp/diagflow/outputs.py +1876 -4630
- pulumi_gcp/netapp/backup.py +0 -56
- pulumi_gcp/netapp/backup_vault.py +0 -185
- pulumi_gcp/netapp/storage_pool.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +0 -47
- pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
- pulumi_gcp/networkservices/_inputs.py +0 -43
- pulumi_gcp/networkservices/edge_cache_origin.py +0 -61
- pulumi_gcp/networkservices/outputs.py +0 -43
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/spanner/database.py +0 -56
- pulumi_gcp/spanner/get_database.py +1 -12
- pulumi_gcp/storage/bucket.py +4 -4
- pulumi_gcp/storage/get_bucket_object_content.py +1 -29
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/RECORD +44 -45
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/WHEEL +1 -1
- pulumi_gcp/compute/cross_site_network.py +0 -374
- {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,6 @@ class InternalRangeArgs:
|
|
27
27
|
usage: pulumi.Input[builtins.str],
|
28
28
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
29
29
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
30
|
-
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
31
30
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
32
31
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
33
32
|
migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
|
@@ -49,7 +48,6 @@ class InternalRangeArgs:
|
|
49
48
|
:param pulumi.Input[builtins.str] description: An optional description of this resource.
|
50
49
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
|
51
50
|
Only IPv4 CIDR ranges are supported.
|
52
|
-
:param pulumi.Input[builtins.bool] immutable: Immutable ranges cannot have their fields modified, except for labels and description.
|
53
51
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
54
52
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
55
53
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -78,8 +76,6 @@ class InternalRangeArgs:
|
|
78
76
|
pulumi.set(__self__, "description", description)
|
79
77
|
if exclude_cidr_ranges is not None:
|
80
78
|
pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
|
81
|
-
if immutable is not None:
|
82
|
-
pulumi.set(__self__, "immutable", immutable)
|
83
79
|
if ip_cidr_range is not None:
|
84
80
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
85
81
|
if labels is not None:
|
@@ -163,18 +159,6 @@ class InternalRangeArgs:
|
|
163
159
|
def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
164
160
|
pulumi.set(self, "exclude_cidr_ranges", value)
|
165
161
|
|
166
|
-
@property
|
167
|
-
@pulumi.getter
|
168
|
-
def immutable(self) -> Optional[pulumi.Input[builtins.bool]]:
|
169
|
-
"""
|
170
|
-
Immutable ranges cannot have their fields modified, except for labels and description.
|
171
|
-
"""
|
172
|
-
return pulumi.get(self, "immutable")
|
173
|
-
|
174
|
-
@immutable.setter
|
175
|
-
def immutable(self, value: Optional[pulumi.Input[builtins.bool]]):
|
176
|
-
pulumi.set(self, "immutable", value)
|
177
|
-
|
178
162
|
@property
|
179
163
|
@pulumi.getter(name="ipCidrRange")
|
180
164
|
def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -290,7 +274,6 @@ class _InternalRangeState:
|
|
290
274
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
291
275
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
292
276
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
293
|
-
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
294
277
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
295
278
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
296
279
|
migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
|
@@ -310,7 +293,6 @@ class _InternalRangeState:
|
|
310
293
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
311
294
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
|
312
295
|
Only IPv4 CIDR ranges are supported.
|
313
|
-
:param pulumi.Input[builtins.bool] immutable: Immutable ranges cannot have their fields modified, except for labels and description.
|
314
296
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
315
297
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
316
298
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -351,8 +333,6 @@ class _InternalRangeState:
|
|
351
333
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
352
334
|
if exclude_cidr_ranges is not None:
|
353
335
|
pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
|
354
|
-
if immutable is not None:
|
355
|
-
pulumi.set(__self__, "immutable", immutable)
|
356
336
|
if ip_cidr_range is not None:
|
357
337
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
358
338
|
if labels is not None:
|
@@ -417,18 +397,6 @@ class _InternalRangeState:
|
|
417
397
|
def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
418
398
|
pulumi.set(self, "exclude_cidr_ranges", value)
|
419
399
|
|
420
|
-
@property
|
421
|
-
@pulumi.getter
|
422
|
-
def immutable(self) -> Optional[pulumi.Input[builtins.bool]]:
|
423
|
-
"""
|
424
|
-
Immutable ranges cannot have their fields modified, except for labels and description.
|
425
|
-
"""
|
426
|
-
return pulumi.get(self, "immutable")
|
427
|
-
|
428
|
-
@immutable.setter
|
429
|
-
def immutable(self, value: Optional[pulumi.Input[builtins.bool]]):
|
430
|
-
pulumi.set(self, "immutable", value)
|
431
|
-
|
432
400
|
@property
|
433
401
|
@pulumi.getter(name="ipCidrRange")
|
434
402
|
def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -614,7 +582,6 @@ class InternalRange(pulumi.CustomResource):
|
|
614
582
|
opts: Optional[pulumi.ResourceOptions] = None,
|
615
583
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
616
584
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
617
|
-
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
618
585
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
619
586
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
620
587
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -775,7 +742,6 @@ class InternalRange(pulumi.CustomResource):
|
|
775
742
|
:param pulumi.Input[builtins.str] description: An optional description of this resource.
|
776
743
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
|
777
744
|
Only IPv4 CIDR ranges are supported.
|
778
|
-
:param pulumi.Input[builtins.bool] immutable: Immutable ranges cannot have their fields modified, except for labels and description.
|
779
745
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
780
746
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
781
747
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -971,7 +937,6 @@ class InternalRange(pulumi.CustomResource):
|
|
971
937
|
opts: Optional[pulumi.ResourceOptions] = None,
|
972
938
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
973
939
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
974
|
-
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
975
940
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
976
941
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
977
942
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -994,7 +959,6 @@ class InternalRange(pulumi.CustomResource):
|
|
994
959
|
|
995
960
|
__props__.__dict__["description"] = description
|
996
961
|
__props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
|
997
|
-
__props__.__dict__["immutable"] = immutable
|
998
962
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
999
963
|
__props__.__dict__["labels"] = labels
|
1000
964
|
__props__.__dict__["migration"] = migration
|
@@ -1030,7 +994,6 @@ class InternalRange(pulumi.CustomResource):
|
|
1030
994
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1031
995
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1032
996
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1033
|
-
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
1034
997
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
1035
998
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1036
999
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -1055,7 +1018,6 @@ class InternalRange(pulumi.CustomResource):
|
|
1055
1018
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1056
1019
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] exclude_cidr_ranges: Optional. List of IP CIDR ranges to be excluded. Resulting reserved Internal Range will not overlap with any CIDR blocks mentioned in this list.
|
1057
1020
|
Only IPv4 CIDR ranges are supported.
|
1058
|
-
:param pulumi.Input[builtins.bool] immutable: Immutable ranges cannot have their fields modified, except for labels and description.
|
1059
1021
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
1060
1022
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
1061
1023
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -1097,7 +1059,6 @@ class InternalRange(pulumi.CustomResource):
|
|
1097
1059
|
__props__.__dict__["description"] = description
|
1098
1060
|
__props__.__dict__["effective_labels"] = effective_labels
|
1099
1061
|
__props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
|
1100
|
-
__props__.__dict__["immutable"] = immutable
|
1101
1062
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1102
1063
|
__props__.__dict__["labels"] = labels
|
1103
1064
|
__props__.__dict__["migration"] = migration
|
@@ -1138,14 +1099,6 @@ class InternalRange(pulumi.CustomResource):
|
|
1138
1099
|
"""
|
1139
1100
|
return pulumi.get(self, "exclude_cidr_ranges")
|
1140
1101
|
|
1141
|
-
@property
|
1142
|
-
@pulumi.getter
|
1143
|
-
def immutable(self) -> pulumi.Output[Optional[builtins.bool]]:
|
1144
|
-
"""
|
1145
|
-
Immutable ranges cannot have their fields modified, except for labels and description.
|
1146
|
-
"""
|
1147
|
-
return pulumi.get(self, "immutable")
|
1148
|
-
|
1149
1102
|
@property
|
1150
1103
|
@pulumi.getter(name="ipCidrRange")
|
1151
1104
|
def ip_cidr_range(self) -> pulumi.Output[builtins.str]:
|
@@ -38,7 +38,7 @@ class RegionalEndpointArgs:
|
|
38
38
|
|
39
39
|
|
40
40
|
- - -
|
41
|
-
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
41
|
+
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
42
42
|
:param pulumi.Input[builtins.str] address: The IP Address of the Regional Endpoint. When no address is provided, an IP from the subnetwork is allocated. Use one of the following formats: * IPv4 address as in `10.0.0.1` * Address resource URI as in `projects/{project}/regions/{region}/addresses/{address_name}`
|
43
43
|
> **Note:** This field accepts both a reference to a Compute Address resource, which is the resource name of which format is given in the description, and IP literal value. If the user chooses to input a reserved address value; they need to make sure that the reserved address is in IPv4 version, its purpose is GCE_ENDPOINT, its type is INTERNAL and its status is RESERVED. If the user chooses to input an IP literal, they need to make sure that it's a valid IPv4 address (x.x.x.x) within the subnetwork.
|
44
44
|
:param pulumi.Input[builtins.str] description: A description of this resource.
|
@@ -102,7 +102,7 @@ class RegionalEndpointArgs:
|
|
102
102
|
@pulumi.getter(name="targetGoogleApi")
|
103
103
|
def target_google_api(self) -> pulumi.Input[builtins.str]:
|
104
104
|
"""
|
105
|
-
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
105
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
106
106
|
"""
|
107
107
|
return pulumi.get(self, "target_google_api")
|
108
108
|
|
@@ -243,7 +243,7 @@ class _RegionalEndpointState:
|
|
243
243
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
244
244
|
and default labels configured on the provider.
|
245
245
|
:param pulumi.Input[builtins.str] subnetwork: The name of the subnetwork from which the IP address will be allocated. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`
|
246
|
-
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
246
|
+
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
247
247
|
:param pulumi.Input[builtins.str] update_time: Time when the RegionalEndpoint was updated.
|
248
248
|
"""
|
249
249
|
if access_type is not None:
|
@@ -447,7 +447,7 @@ class _RegionalEndpointState:
|
|
447
447
|
@pulumi.getter(name="targetGoogleApi")
|
448
448
|
def target_google_api(self) -> Optional[pulumi.Input[builtins.str]]:
|
449
449
|
"""
|
450
|
-
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
450
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
451
451
|
"""
|
452
452
|
return pulumi.get(self, "target_google_api")
|
453
453
|
|
@@ -513,12 +513,12 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
513
513
|
default = gcp.networkconnectivity.RegionalEndpoint("default",
|
514
514
|
name="my-rep",
|
515
515
|
location="us-central1",
|
516
|
-
target_google_api="storage.us-central1.rep.googleapis.com",
|
516
|
+
target_google_api="storage.us-central1.p.rep.googleapis.com",
|
517
517
|
access_type="REGIONAL",
|
518
518
|
address="192.168.0.5",
|
519
519
|
network=my_network.id,
|
520
520
|
subnetwork=my_subnetwork.id,
|
521
|
-
description="My RegionalEndpoint targeting Google API storage.us-central1.rep.googleapis.com",
|
521
|
+
description="My RegionalEndpoint targeting Google API storage.us-central1.p.rep.googleapis.com",
|
522
522
|
labels={
|
523
523
|
"env": "default",
|
524
524
|
})
|
@@ -540,7 +540,7 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
540
540
|
default = gcp.networkconnectivity.RegionalEndpoint("default",
|
541
541
|
name="my-rep",
|
542
542
|
location="us-central1",
|
543
|
-
target_google_api="storage.us-central1.rep.googleapis.com",
|
543
|
+
target_google_api="storage.us-central1.p.rep.googleapis.com",
|
544
544
|
access_type="GLOBAL",
|
545
545
|
address="192.168.0.4",
|
546
546
|
network=my_network.id,
|
@@ -591,7 +591,7 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
591
591
|
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
592
592
|
If it is not provided, the provider project is used.
|
593
593
|
:param pulumi.Input[builtins.str] subnetwork: The name of the subnetwork from which the IP address will be allocated. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`
|
594
|
-
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
594
|
+
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
595
595
|
"""
|
596
596
|
...
|
597
597
|
@overload
|
@@ -627,12 +627,12 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
627
627
|
default = gcp.networkconnectivity.RegionalEndpoint("default",
|
628
628
|
name="my-rep",
|
629
629
|
location="us-central1",
|
630
|
-
target_google_api="storage.us-central1.rep.googleapis.com",
|
630
|
+
target_google_api="storage.us-central1.p.rep.googleapis.com",
|
631
631
|
access_type="REGIONAL",
|
632
632
|
address="192.168.0.5",
|
633
633
|
network=my_network.id,
|
634
634
|
subnetwork=my_subnetwork.id,
|
635
|
-
description="My RegionalEndpoint targeting Google API storage.us-central1.rep.googleapis.com",
|
635
|
+
description="My RegionalEndpoint targeting Google API storage.us-central1.p.rep.googleapis.com",
|
636
636
|
labels={
|
637
637
|
"env": "default",
|
638
638
|
})
|
@@ -654,7 +654,7 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
654
654
|
default = gcp.networkconnectivity.RegionalEndpoint("default",
|
655
655
|
name="my-rep",
|
656
656
|
location="us-central1",
|
657
|
-
target_google_api="storage.us-central1.rep.googleapis.com",
|
657
|
+
target_google_api="storage.us-central1.p.rep.googleapis.com",
|
658
658
|
access_type="GLOBAL",
|
659
659
|
address="192.168.0.4",
|
660
660
|
network=my_network.id,
|
@@ -797,7 +797,7 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
797
797
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
798
798
|
and default labels configured on the provider.
|
799
799
|
:param pulumi.Input[builtins.str] subnetwork: The name of the subnetwork from which the IP address will be allocated. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`
|
800
|
-
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
800
|
+
:param pulumi.Input[builtins.str] target_google_api: The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
801
801
|
:param pulumi.Input[builtins.str] update_time: Time when the RegionalEndpoint was updated.
|
802
802
|
"""
|
803
803
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -939,7 +939,7 @@ class RegionalEndpoint(pulumi.CustomResource):
|
|
939
939
|
@pulumi.getter(name="targetGoogleApi")
|
940
940
|
def target_google_api(self) -> pulumi.Output[builtins.str]:
|
941
941
|
"""
|
942
|
-
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
942
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.p.rep.googleapis.com` Example: \\"cloudkms.us-central1.p.rep.googleapis.com\\".
|
943
943
|
"""
|
944
944
|
return pulumi.get(self, "target_google_api")
|
945
945
|
|
@@ -22,8 +22,6 @@ __all__ = [
|
|
22
22
|
'EdgeCacheKeysetValidationSharedKeyArgsDict',
|
23
23
|
'EdgeCacheOriginAwsV4AuthenticationArgs',
|
24
24
|
'EdgeCacheOriginAwsV4AuthenticationArgsDict',
|
25
|
-
'EdgeCacheOriginFlexShieldingArgs',
|
26
|
-
'EdgeCacheOriginFlexShieldingArgsDict',
|
27
25
|
'EdgeCacheOriginOriginOverrideActionArgs',
|
28
26
|
'EdgeCacheOriginOriginOverrideActionArgsDict',
|
29
27
|
'EdgeCacheOriginOriginOverrideActionHeaderActionArgs',
|
@@ -384,47 +382,6 @@ class EdgeCacheOriginAwsV4AuthenticationArgs:
|
|
384
382
|
pulumi.set(self, "secret_access_key_version", value)
|
385
383
|
|
386
384
|
|
387
|
-
if not MYPY:
|
388
|
-
class EdgeCacheOriginFlexShieldingArgsDict(TypedDict):
|
389
|
-
flex_shielding_regions: NotRequired[pulumi.Input[builtins.str]]
|
390
|
-
"""
|
391
|
-
Whenever possible, content will be fetched from origin and cached in or
|
392
|
-
near the specified origin. Best effort.
|
393
|
-
You must specify exactly one FlexShieldingRegion.
|
394
|
-
Each value may be one of: `AFRICA_SOUTH1`, `ME_CENTRAL1`.
|
395
|
-
"""
|
396
|
-
elif False:
|
397
|
-
EdgeCacheOriginFlexShieldingArgsDict: TypeAlias = Mapping[str, Any]
|
398
|
-
|
399
|
-
@pulumi.input_type
|
400
|
-
class EdgeCacheOriginFlexShieldingArgs:
|
401
|
-
def __init__(__self__, *,
|
402
|
-
flex_shielding_regions: Optional[pulumi.Input[builtins.str]] = None):
|
403
|
-
"""
|
404
|
-
:param pulumi.Input[builtins.str] flex_shielding_regions: Whenever possible, content will be fetched from origin and cached in or
|
405
|
-
near the specified origin. Best effort.
|
406
|
-
You must specify exactly one FlexShieldingRegion.
|
407
|
-
Each value may be one of: `AFRICA_SOUTH1`, `ME_CENTRAL1`.
|
408
|
-
"""
|
409
|
-
if flex_shielding_regions is not None:
|
410
|
-
pulumi.set(__self__, "flex_shielding_regions", flex_shielding_regions)
|
411
|
-
|
412
|
-
@property
|
413
|
-
@pulumi.getter(name="flexShieldingRegions")
|
414
|
-
def flex_shielding_regions(self) -> Optional[pulumi.Input[builtins.str]]:
|
415
|
-
"""
|
416
|
-
Whenever possible, content will be fetched from origin and cached in or
|
417
|
-
near the specified origin. Best effort.
|
418
|
-
You must specify exactly one FlexShieldingRegion.
|
419
|
-
Each value may be one of: `AFRICA_SOUTH1`, `ME_CENTRAL1`.
|
420
|
-
"""
|
421
|
-
return pulumi.get(self, "flex_shielding_regions")
|
422
|
-
|
423
|
-
@flex_shielding_regions.setter
|
424
|
-
def flex_shielding_regions(self, value: Optional[pulumi.Input[builtins.str]]):
|
425
|
-
pulumi.set(self, "flex_shielding_regions", value)
|
426
|
-
|
427
|
-
|
428
385
|
if not MYPY:
|
429
386
|
class EdgeCacheOriginOriginOverrideActionArgsDict(TypedDict):
|
430
387
|
header_action: NotRequired[pulumi.Input['EdgeCacheOriginOriginOverrideActionHeaderActionArgsDict']]
|
@@ -26,7 +26,6 @@ class EdgeCacheOriginArgs:
|
|
26
26
|
aws_v4_authentication: Optional[pulumi.Input['EdgeCacheOriginAwsV4AuthenticationArgs']] = None,
|
27
27
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
28
28
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
29
|
-
flex_shielding: Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']] = None,
|
30
29
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
31
30
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
32
31
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -50,9 +49,6 @@ class EdgeCacheOriginArgs:
|
|
50
49
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
51
50
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
52
51
|
A reference to a Topic resource.
|
53
|
-
:param pulumi.Input['EdgeCacheOriginFlexShieldingArgs'] flex_shielding: The FlexShieldingOptions to be used for all routes to this origin.
|
54
|
-
If not set, defaults to a global caching layer in front of the origin.
|
55
|
-
Structure is documented below.
|
56
52
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
57
53
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
58
54
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -106,8 +102,6 @@ class EdgeCacheOriginArgs:
|
|
106
102
|
pulumi.set(__self__, "description", description)
|
107
103
|
if failover_origin is not None:
|
108
104
|
pulumi.set(__self__, "failover_origin", failover_origin)
|
109
|
-
if flex_shielding is not None:
|
110
|
-
pulumi.set(__self__, "flex_shielding", flex_shielding)
|
111
105
|
if labels is not None:
|
112
106
|
pulumi.set(__self__, "labels", labels)
|
113
107
|
if max_attempts is not None:
|
@@ -184,20 +178,6 @@ class EdgeCacheOriginArgs:
|
|
184
178
|
def failover_origin(self, value: Optional[pulumi.Input[builtins.str]]):
|
185
179
|
pulumi.set(self, "failover_origin", value)
|
186
180
|
|
187
|
-
@property
|
188
|
-
@pulumi.getter(name="flexShielding")
|
189
|
-
def flex_shielding(self) -> Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']]:
|
190
|
-
"""
|
191
|
-
The FlexShieldingOptions to be used for all routes to this origin.
|
192
|
-
If not set, defaults to a global caching layer in front of the origin.
|
193
|
-
Structure is documented below.
|
194
|
-
"""
|
195
|
-
return pulumi.get(self, "flex_shielding")
|
196
|
-
|
197
|
-
@flex_shielding.setter
|
198
|
-
def flex_shielding(self, value: Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']]):
|
199
|
-
pulumi.set(self, "flex_shielding", value)
|
200
|
-
|
201
181
|
@property
|
202
182
|
@pulumi.getter
|
203
183
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -361,7 +341,6 @@ class _EdgeCacheOriginState:
|
|
361
341
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
362
342
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
363
343
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
364
|
-
flex_shielding: Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']] = None,
|
365
344
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
366
345
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
367
346
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -384,9 +363,6 @@ class _EdgeCacheOriginState:
|
|
384
363
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
385
364
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
386
365
|
A reference to a Topic resource.
|
387
|
-
:param pulumi.Input['EdgeCacheOriginFlexShieldingArgs'] flex_shielding: The FlexShieldingOptions to be used for all routes to this origin.
|
388
|
-
If not set, defaults to a global caching layer in front of the origin.
|
389
|
-
Structure is documented below.
|
390
366
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
391
367
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
392
368
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -447,8 +423,6 @@ class _EdgeCacheOriginState:
|
|
447
423
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
448
424
|
if failover_origin is not None:
|
449
425
|
pulumi.set(__self__, "failover_origin", failover_origin)
|
450
|
-
if flex_shielding is not None:
|
451
|
-
pulumi.set(__self__, "flex_shielding", flex_shielding)
|
452
426
|
if labels is not None:
|
453
427
|
pulumi.set(__self__, "labels", labels)
|
454
428
|
if max_attempts is not None:
|
@@ -526,20 +500,6 @@ class _EdgeCacheOriginState:
|
|
526
500
|
def failover_origin(self, value: Optional[pulumi.Input[builtins.str]]):
|
527
501
|
pulumi.set(self, "failover_origin", value)
|
528
502
|
|
529
|
-
@property
|
530
|
-
@pulumi.getter(name="flexShielding")
|
531
|
-
def flex_shielding(self) -> Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']]:
|
532
|
-
"""
|
533
|
-
The FlexShieldingOptions to be used for all routes to this origin.
|
534
|
-
If not set, defaults to a global caching layer in front of the origin.
|
535
|
-
Structure is documented below.
|
536
|
-
"""
|
537
|
-
return pulumi.get(self, "flex_shielding")
|
538
|
-
|
539
|
-
@flex_shielding.setter
|
540
|
-
def flex_shielding(self, value: Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']]):
|
541
|
-
pulumi.set(self, "flex_shielding", value)
|
542
|
-
|
543
503
|
@property
|
544
504
|
@pulumi.getter
|
545
505
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -733,7 +693,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
733
693
|
aws_v4_authentication: Optional[pulumi.Input[Union['EdgeCacheOriginAwsV4AuthenticationArgs', 'EdgeCacheOriginAwsV4AuthenticationArgsDict']]] = None,
|
734
694
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
735
695
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
736
|
-
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
737
696
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
738
697
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
739
698
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -883,9 +842,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
883
842
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
884
843
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
885
844
|
A reference to a Topic resource.
|
886
|
-
:param pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']] flex_shielding: The FlexShieldingOptions to be used for all routes to this origin.
|
887
|
-
If not set, defaults to a global caching layer in front of the origin.
|
888
|
-
Structure is documented below.
|
889
845
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
890
846
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
891
847
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1088,7 +1044,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1088
1044
|
aws_v4_authentication: Optional[pulumi.Input[Union['EdgeCacheOriginAwsV4AuthenticationArgs', 'EdgeCacheOriginAwsV4AuthenticationArgsDict']]] = None,
|
1089
1045
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1090
1046
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
1091
|
-
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
1092
1047
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1093
1048
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
1094
1049
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1112,7 +1067,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1112
1067
|
__props__.__dict__["aws_v4_authentication"] = aws_v4_authentication
|
1113
1068
|
__props__.__dict__["description"] = description
|
1114
1069
|
__props__.__dict__["failover_origin"] = failover_origin
|
1115
|
-
__props__.__dict__["flex_shielding"] = flex_shielding
|
1116
1070
|
__props__.__dict__["labels"] = labels
|
1117
1071
|
__props__.__dict__["max_attempts"] = max_attempts
|
1118
1072
|
__props__.__dict__["name"] = name
|
@@ -1144,7 +1098,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1144
1098
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1145
1099
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1146
1100
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
1147
|
-
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
1148
1101
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1149
1102
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
1150
1103
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1172,9 +1125,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1172
1125
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
1173
1126
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
1174
1127
|
A reference to a Topic resource.
|
1175
|
-
:param pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']] flex_shielding: The FlexShieldingOptions to be used for all routes to this origin.
|
1176
|
-
If not set, defaults to a global caching layer in front of the origin.
|
1177
|
-
Structure is documented below.
|
1178
1128
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
1179
1129
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1180
1130
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1235,7 +1185,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1235
1185
|
__props__.__dict__["description"] = description
|
1236
1186
|
__props__.__dict__["effective_labels"] = effective_labels
|
1237
1187
|
__props__.__dict__["failover_origin"] = failover_origin
|
1238
|
-
__props__.__dict__["flex_shielding"] = flex_shielding
|
1239
1188
|
__props__.__dict__["labels"] = labels
|
1240
1189
|
__props__.__dict__["max_attempts"] = max_attempts
|
1241
1190
|
__props__.__dict__["name"] = name
|
@@ -1286,16 +1235,6 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1286
1235
|
"""
|
1287
1236
|
return pulumi.get(self, "failover_origin")
|
1288
1237
|
|
1289
|
-
@property
|
1290
|
-
@pulumi.getter(name="flexShielding")
|
1291
|
-
def flex_shielding(self) -> pulumi.Output[Optional['outputs.EdgeCacheOriginFlexShielding']]:
|
1292
|
-
"""
|
1293
|
-
The FlexShieldingOptions to be used for all routes to this origin.
|
1294
|
-
If not set, defaults to a global caching layer in front of the origin.
|
1295
|
-
Structure is documented below.
|
1296
|
-
"""
|
1297
|
-
return pulumi.get(self, "flex_shielding")
|
1298
|
-
|
1299
1238
|
@property
|
1300
1239
|
@pulumi.getter
|
1301
1240
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
@@ -20,7 +20,6 @@ __all__ = [
|
|
20
20
|
'EdgeCacheKeysetPublicKey',
|
21
21
|
'EdgeCacheKeysetValidationSharedKey',
|
22
22
|
'EdgeCacheOriginAwsV4Authentication',
|
23
|
-
'EdgeCacheOriginFlexShielding',
|
24
23
|
'EdgeCacheOriginOriginOverrideAction',
|
25
24
|
'EdgeCacheOriginOriginOverrideActionHeaderAction',
|
26
25
|
'EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAdd',
|
@@ -259,48 +258,6 @@ class EdgeCacheOriginAwsV4Authentication(dict):
|
|
259
258
|
return pulumi.get(self, "secret_access_key_version")
|
260
259
|
|
261
260
|
|
262
|
-
@pulumi.output_type
|
263
|
-
class EdgeCacheOriginFlexShielding(dict):
|
264
|
-
@staticmethod
|
265
|
-
def __key_warning(key: str):
|
266
|
-
suggest = None
|
267
|
-
if key == "flexShieldingRegions":
|
268
|
-
suggest = "flex_shielding_regions"
|
269
|
-
|
270
|
-
if suggest:
|
271
|
-
pulumi.log.warn(f"Key '{key}' not found in EdgeCacheOriginFlexShielding. Access the value via the '{suggest}' property getter instead.")
|
272
|
-
|
273
|
-
def __getitem__(self, key: str) -> Any:
|
274
|
-
EdgeCacheOriginFlexShielding.__key_warning(key)
|
275
|
-
return super().__getitem__(key)
|
276
|
-
|
277
|
-
def get(self, key: str, default = None) -> Any:
|
278
|
-
EdgeCacheOriginFlexShielding.__key_warning(key)
|
279
|
-
return super().get(key, default)
|
280
|
-
|
281
|
-
def __init__(__self__, *,
|
282
|
-
flex_shielding_regions: Optional[builtins.str] = None):
|
283
|
-
"""
|
284
|
-
:param builtins.str flex_shielding_regions: Whenever possible, content will be fetched from origin and cached in or
|
285
|
-
near the specified origin. Best effort.
|
286
|
-
You must specify exactly one FlexShieldingRegion.
|
287
|
-
Each value may be one of: `AFRICA_SOUTH1`, `ME_CENTRAL1`.
|
288
|
-
"""
|
289
|
-
if flex_shielding_regions is not None:
|
290
|
-
pulumi.set(__self__, "flex_shielding_regions", flex_shielding_regions)
|
291
|
-
|
292
|
-
@property
|
293
|
-
@pulumi.getter(name="flexShieldingRegions")
|
294
|
-
def flex_shielding_regions(self) -> Optional[builtins.str]:
|
295
|
-
"""
|
296
|
-
Whenever possible, content will be fetched from origin and cached in or
|
297
|
-
near the specified origin. Best effort.
|
298
|
-
You must specify exactly one FlexShieldingRegion.
|
299
|
-
Each value may be one of: `AFRICA_SOUTH1`, `ME_CENTRAL1`.
|
300
|
-
"""
|
301
|
-
return pulumi.get(self, "flex_shielding_regions")
|
302
|
-
|
303
|
-
|
304
261
|
@pulumi.output_type
|
305
262
|
class EdgeCacheOriginOriginOverrideAction(dict):
|
306
263
|
@staticmethod
|
pulumi_gcp/pulumi-plugin.json
CHANGED
pulumi_gcp/redis/get_instance.py
CHANGED
@@ -28,7 +28,7 @@ class GetInstanceResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getInstance.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, alternative_location_id=None, auth_enabled=None, auth_string=None, authorized_network=None, connect_mode=None, create_time=None, current_location_id=None, customer_managed_key=None, display_name=None, effective_labels=None, host=None, id=None, labels=None, location_id=None, maintenance_policies=None, maintenance_schedules=None, maintenance_version=None, memory_size_gb=None, name=None, nodes=None, persistence_configs=None, persistence_iam_identity=None, port=None, project=None, pulumi_labels=None, read_endpoint=None, read_endpoint_port=None, read_replicas_mode=None, redis_configs=None, redis_version=None, region=None, replica_count=None, reserved_ip_range=None, secondary_ip_range=None, server_ca_certs=None, tier=None, transit_encryption_mode=None):
|
31
|
+
def __init__(__self__, alternative_location_id=None, auth_enabled=None, auth_string=None, authorized_network=None, connect_mode=None, create_time=None, current_location_id=None, customer_managed_key=None, display_name=None, effective_labels=None, host=None, id=None, labels=None, location_id=None, maintenance_policies=None, maintenance_schedules=None, maintenance_version=None, memory_size_gb=None, name=None, nodes=None, persistence_configs=None, persistence_iam_identity=None, port=None, project=None, pulumi_labels=None, read_endpoint=None, read_endpoint_port=None, read_replicas_mode=None, redis_configs=None, redis_version=None, region=None, replica_count=None, reserved_ip_range=None, secondary_ip_range=None, server_ca_certs=None, tags=None, tier=None, transit_encryption_mode=None):
|
32
32
|
if alternative_location_id and not isinstance(alternative_location_id, str):
|
33
33
|
raise TypeError("Expected argument 'alternative_location_id' to be a str")
|
34
34
|
pulumi.set(__self__, "alternative_location_id", alternative_location_id)
|
@@ -134,6 +134,9 @@ class GetInstanceResult:
|
|
134
134
|
if server_ca_certs and not isinstance(server_ca_certs, list):
|
135
135
|
raise TypeError("Expected argument 'server_ca_certs' to be a list")
|
136
136
|
pulumi.set(__self__, "server_ca_certs", server_ca_certs)
|
137
|
+
if tags and not isinstance(tags, dict):
|
138
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
139
|
+
pulumi.set(__self__, "tags", tags)
|
137
140
|
if tier and not isinstance(tier, str):
|
138
141
|
raise TypeError("Expected argument 'tier' to be a str")
|
139
142
|
pulumi.set(__self__, "tier", tier)
|
@@ -319,6 +322,11 @@ class GetInstanceResult:
|
|
319
322
|
def server_ca_certs(self) -> Sequence['outputs.GetInstanceServerCaCertResult']:
|
320
323
|
return pulumi.get(self, "server_ca_certs")
|
321
324
|
|
325
|
+
@property
|
326
|
+
@pulumi.getter
|
327
|
+
def tags(self) -> Mapping[str, builtins.str]:
|
328
|
+
return pulumi.get(self, "tags")
|
329
|
+
|
322
330
|
@property
|
323
331
|
@pulumi.getter
|
324
332
|
def tier(self) -> builtins.str:
|
@@ -371,6 +379,7 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
371
379
|
reserved_ip_range=self.reserved_ip_range,
|
372
380
|
secondary_ip_range=self.secondary_ip_range,
|
373
381
|
server_ca_certs=self.server_ca_certs,
|
382
|
+
tags=self.tags,
|
374
383
|
tier=self.tier,
|
375
384
|
transit_encryption_mode=self.transit_encryption_mode)
|
376
385
|
|
@@ -446,6 +455,7 @@ def get_instance(name: Optional[builtins.str] = None,
|
|
446
455
|
reserved_ip_range=pulumi.get(__ret__, 'reserved_ip_range'),
|
447
456
|
secondary_ip_range=pulumi.get(__ret__, 'secondary_ip_range'),
|
448
457
|
server_ca_certs=pulumi.get(__ret__, 'server_ca_certs'),
|
458
|
+
tags=pulumi.get(__ret__, 'tags'),
|
449
459
|
tier=pulumi.get(__ret__, 'tier'),
|
450
460
|
transit_encryption_mode=pulumi.get(__ret__, 'transit_encryption_mode'))
|
451
461
|
def get_instance_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -518,5 +528,6 @@ def get_instance_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
518
528
|
reserved_ip_range=pulumi.get(__response__, 'reserved_ip_range'),
|
519
529
|
secondary_ip_range=pulumi.get(__response__, 'secondary_ip_range'),
|
520
530
|
server_ca_certs=pulumi.get(__response__, 'server_ca_certs'),
|
531
|
+
tags=pulumi.get(__response__, 'tags'),
|
521
532
|
tier=pulumi.get(__response__, 'tier'),
|
522
533
|
transit_encryption_mode=pulumi.get(__response__, 'transit_encryption_mode')))
|