pulumi-gcp 8.31.0a1747205151__py3-none-any.whl → 8.31.0a1747312116__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 +8 -0
- pulumi_gcp/alloydb/_inputs.py +164 -0
- pulumi_gcp/alloydb/outputs.py +211 -0
- pulumi_gcp/apigee/_inputs.py +20 -0
- pulumi_gcp/apigee/outputs.py +12 -0
- pulumi_gcp/bigquery/routine.py +56 -0
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/certificateauthority/_inputs.py +20 -19
- pulumi_gcp/certificateauthority/authority.py +70 -0
- pulumi_gcp/certificateauthority/outputs.py +12 -11
- pulumi_gcp/cloudfunctionsv2/function.py +4 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +312 -0
- pulumi_gcp/compute/cross_site_network.py +374 -0
- pulumi_gcp/compute/get_health_check.py +12 -1
- pulumi_gcp/compute/health_check.py +120 -0
- pulumi_gcp/compute/outputs.py +353 -0
- pulumi_gcp/compute/region_health_check.py +120 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataproc/get_metastore_service.py +1 -12
- pulumi_gcp/dataproc/metastore_service.py +0 -61
- pulumi_gcp/diagflow/_inputs.py +6280 -2644
- pulumi_gcp/diagflow/cx_flow.py +304 -0
- pulumi_gcp/diagflow/cx_page.py +290 -0
- pulumi_gcp/diagflow/outputs.py +4616 -1862
- pulumi_gcp/netapp/backup.py +56 -0
- pulumi_gcp/netapp/backup_vault.py +185 -0
- pulumi_gcp/netapp/storage_pool.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +47 -0
- pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
- pulumi_gcp/networkservices/_inputs.py +43 -0
- pulumi_gcp/networkservices/edge_cache_origin.py +61 -0
- pulumi_gcp/networkservices/outputs.py +43 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +1 -12
- pulumi_gcp/redis/instance.py +0 -61
- pulumi_gcp/spanner/database.py +56 -0
- pulumi_gcp/spanner/get_database.py +12 -1
- pulumi_gcp/storage/bucket.py +4 -4
- pulumi_gcp/storage/get_bucket_object_content.py +29 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/RECORD +45 -44
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.31.0a1747205151.dist-info → pulumi_gcp-8.31.0a1747312116.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ 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,
|
30
31
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
31
32
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
32
33
|
migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
|
@@ -48,6 +49,7 @@ class InternalRangeArgs:
|
|
48
49
|
:param pulumi.Input[builtins.str] description: An optional description of this resource.
|
49
50
|
: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.
|
50
51
|
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.
|
51
53
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
52
54
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
53
55
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -76,6 +78,8 @@ class InternalRangeArgs:
|
|
76
78
|
pulumi.set(__self__, "description", description)
|
77
79
|
if exclude_cidr_ranges is not None:
|
78
80
|
pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
|
81
|
+
if immutable is not None:
|
82
|
+
pulumi.set(__self__, "immutable", immutable)
|
79
83
|
if ip_cidr_range is not None:
|
80
84
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
81
85
|
if labels is not None:
|
@@ -159,6 +163,18 @@ class InternalRangeArgs:
|
|
159
163
|
def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
160
164
|
pulumi.set(self, "exclude_cidr_ranges", value)
|
161
165
|
|
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
|
+
|
162
178
|
@property
|
163
179
|
@pulumi.getter(name="ipCidrRange")
|
164
180
|
def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -274,6 +290,7 @@ class _InternalRangeState:
|
|
274
290
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
275
291
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
276
292
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
293
|
+
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
277
294
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
278
295
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
279
296
|
migration: Optional[pulumi.Input['InternalRangeMigrationArgs']] = None,
|
@@ -293,6 +310,7 @@ class _InternalRangeState:
|
|
293
310
|
: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.
|
294
311
|
: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.
|
295
312
|
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.
|
296
314
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
297
315
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
298
316
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -333,6 +351,8 @@ class _InternalRangeState:
|
|
333
351
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
334
352
|
if exclude_cidr_ranges is not None:
|
335
353
|
pulumi.set(__self__, "exclude_cidr_ranges", exclude_cidr_ranges)
|
354
|
+
if immutable is not None:
|
355
|
+
pulumi.set(__self__, "immutable", immutable)
|
336
356
|
if ip_cidr_range is not None:
|
337
357
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
338
358
|
if labels is not None:
|
@@ -397,6 +417,18 @@ class _InternalRangeState:
|
|
397
417
|
def exclude_cidr_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
398
418
|
pulumi.set(self, "exclude_cidr_ranges", value)
|
399
419
|
|
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
|
+
|
400
432
|
@property
|
401
433
|
@pulumi.getter(name="ipCidrRange")
|
402
434
|
def ip_cidr_range(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -582,6 +614,7 @@ class InternalRange(pulumi.CustomResource):
|
|
582
614
|
opts: Optional[pulumi.ResourceOptions] = None,
|
583
615
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
584
616
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
617
|
+
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
585
618
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
586
619
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
587
620
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -742,6 +775,7 @@ class InternalRange(pulumi.CustomResource):
|
|
742
775
|
:param pulumi.Input[builtins.str] description: An optional description of this resource.
|
743
776
|
: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.
|
744
777
|
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.
|
745
779
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
746
780
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
747
781
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -937,6 +971,7 @@ class InternalRange(pulumi.CustomResource):
|
|
937
971
|
opts: Optional[pulumi.ResourceOptions] = None,
|
938
972
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
939
973
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
974
|
+
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
940
975
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
941
976
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
942
977
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -959,6 +994,7 @@ class InternalRange(pulumi.CustomResource):
|
|
959
994
|
|
960
995
|
__props__.__dict__["description"] = description
|
961
996
|
__props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
|
997
|
+
__props__.__dict__["immutable"] = immutable
|
962
998
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
963
999
|
__props__.__dict__["labels"] = labels
|
964
1000
|
__props__.__dict__["migration"] = migration
|
@@ -994,6 +1030,7 @@ class InternalRange(pulumi.CustomResource):
|
|
994
1030
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
995
1031
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
996
1032
|
exclude_cidr_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1033
|
+
immutable: Optional[pulumi.Input[builtins.bool]] = None,
|
997
1034
|
ip_cidr_range: Optional[pulumi.Input[builtins.str]] = None,
|
998
1035
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
999
1036
|
migration: Optional[pulumi.Input[Union['InternalRangeMigrationArgs', 'InternalRangeMigrationArgsDict']]] = None,
|
@@ -1018,6 +1055,7 @@ class InternalRange(pulumi.CustomResource):
|
|
1018
1055
|
: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.
|
1019
1056
|
: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.
|
1020
1057
|
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.
|
1021
1059
|
:param pulumi.Input[builtins.str] ip_cidr_range: The IP range that this internal range defines.
|
1022
1060
|
NOTE: IPv6 ranges are limited to usage=EXTERNAL_TO_VPC and peering=FOR_SELF
|
1023
1061
|
NOTE: For IPv6 Ranges this field is compulsory, i.e. the address range must be specified explicitly.
|
@@ -1059,6 +1097,7 @@ class InternalRange(pulumi.CustomResource):
|
|
1059
1097
|
__props__.__dict__["description"] = description
|
1060
1098
|
__props__.__dict__["effective_labels"] = effective_labels
|
1061
1099
|
__props__.__dict__["exclude_cidr_ranges"] = exclude_cidr_ranges
|
1100
|
+
__props__.__dict__["immutable"] = immutable
|
1062
1101
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1063
1102
|
__props__.__dict__["labels"] = labels
|
1064
1103
|
__props__.__dict__["migration"] = migration
|
@@ -1099,6 +1138,14 @@ class InternalRange(pulumi.CustomResource):
|
|
1099
1138
|
"""
|
1100
1139
|
return pulumi.get(self, "exclude_cidr_ranges")
|
1101
1140
|
|
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
|
+
|
1102
1149
|
@property
|
1103
1150
|
@pulumi.getter(name="ipCidrRange")
|
1104
1151
|
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}.
|
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\\".
|
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}.
|
105
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.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}.
|
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\\".
|
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}.
|
450
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.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.
|
516
|
+
target_google_api="storage.us-central1.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.
|
521
|
+
description="My RegionalEndpoint targeting Google API storage.us-central1.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.
|
543
|
+
target_google_api="storage.us-central1.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}.
|
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\\".
|
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.
|
630
|
+
target_google_api="storage.us-central1.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.
|
635
|
+
description="My RegionalEndpoint targeting Google API storage.us-central1.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.
|
657
|
+
target_google_api="storage.us-central1.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}.
|
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\\".
|
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}.
|
942
|
+
The service endpoint this private regional endpoint connects to. Format: `{apiname}.{region}.rep.googleapis.com` Example: \\"cloudkms.us-central1.rep.googleapis.com\\".
|
943
943
|
"""
|
944
944
|
return pulumi.get(self, "target_google_api")
|
945
945
|
|
@@ -22,6 +22,8 @@ __all__ = [
|
|
22
22
|
'EdgeCacheKeysetValidationSharedKeyArgsDict',
|
23
23
|
'EdgeCacheOriginAwsV4AuthenticationArgs',
|
24
24
|
'EdgeCacheOriginAwsV4AuthenticationArgsDict',
|
25
|
+
'EdgeCacheOriginFlexShieldingArgs',
|
26
|
+
'EdgeCacheOriginFlexShieldingArgsDict',
|
25
27
|
'EdgeCacheOriginOriginOverrideActionArgs',
|
26
28
|
'EdgeCacheOriginOriginOverrideActionArgsDict',
|
27
29
|
'EdgeCacheOriginOriginOverrideActionHeaderActionArgs',
|
@@ -382,6 +384,47 @@ class EdgeCacheOriginAwsV4AuthenticationArgs:
|
|
382
384
|
pulumi.set(self, "secret_access_key_version", value)
|
383
385
|
|
384
386
|
|
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
|
+
|
385
428
|
if not MYPY:
|
386
429
|
class EdgeCacheOriginOriginOverrideActionArgsDict(TypedDict):
|
387
430
|
header_action: NotRequired[pulumi.Input['EdgeCacheOriginOriginOverrideActionHeaderActionArgsDict']]
|
@@ -26,6 +26,7 @@ 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,
|
29
30
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
30
31
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
31
32
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -49,6 +50,9 @@ class EdgeCacheOriginArgs:
|
|
49
50
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
50
51
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
51
52
|
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.
|
52
56
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
53
57
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
54
58
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -102,6 +106,8 @@ class EdgeCacheOriginArgs:
|
|
102
106
|
pulumi.set(__self__, "description", description)
|
103
107
|
if failover_origin is not None:
|
104
108
|
pulumi.set(__self__, "failover_origin", failover_origin)
|
109
|
+
if flex_shielding is not None:
|
110
|
+
pulumi.set(__self__, "flex_shielding", flex_shielding)
|
105
111
|
if labels is not None:
|
106
112
|
pulumi.set(__self__, "labels", labels)
|
107
113
|
if max_attempts is not None:
|
@@ -178,6 +184,20 @@ class EdgeCacheOriginArgs:
|
|
178
184
|
def failover_origin(self, value: Optional[pulumi.Input[builtins.str]]):
|
179
185
|
pulumi.set(self, "failover_origin", value)
|
180
186
|
|
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
|
+
|
181
201
|
@property
|
182
202
|
@pulumi.getter
|
183
203
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -341,6 +361,7 @@ class _EdgeCacheOriginState:
|
|
341
361
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
342
362
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
343
363
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
364
|
+
flex_shielding: Optional[pulumi.Input['EdgeCacheOriginFlexShieldingArgs']] = None,
|
344
365
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
345
366
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
346
367
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -363,6 +384,9 @@ class _EdgeCacheOriginState:
|
|
363
384
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
364
385
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
365
386
|
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.
|
366
390
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
367
391
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
368
392
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -423,6 +447,8 @@ class _EdgeCacheOriginState:
|
|
423
447
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
424
448
|
if failover_origin is not None:
|
425
449
|
pulumi.set(__self__, "failover_origin", failover_origin)
|
450
|
+
if flex_shielding is not None:
|
451
|
+
pulumi.set(__self__, "flex_shielding", flex_shielding)
|
426
452
|
if labels is not None:
|
427
453
|
pulumi.set(__self__, "labels", labels)
|
428
454
|
if max_attempts is not None:
|
@@ -500,6 +526,20 @@ class _EdgeCacheOriginState:
|
|
500
526
|
def failover_origin(self, value: Optional[pulumi.Input[builtins.str]]):
|
501
527
|
pulumi.set(self, "failover_origin", value)
|
502
528
|
|
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
|
+
|
503
543
|
@property
|
504
544
|
@pulumi.getter
|
505
545
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -693,6 +733,7 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
693
733
|
aws_v4_authentication: Optional[pulumi.Input[Union['EdgeCacheOriginAwsV4AuthenticationArgs', 'EdgeCacheOriginAwsV4AuthenticationArgsDict']]] = None,
|
694
734
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
695
735
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
736
|
+
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
696
737
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
697
738
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
698
739
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -842,6 +883,9 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
842
883
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
843
884
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
844
885
|
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.
|
845
889
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
846
890
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
847
891
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1044,6 +1088,7 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1044
1088
|
aws_v4_authentication: Optional[pulumi.Input[Union['EdgeCacheOriginAwsV4AuthenticationArgs', 'EdgeCacheOriginAwsV4AuthenticationArgsDict']]] = None,
|
1045
1089
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1046
1090
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
1091
|
+
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
1047
1092
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1048
1093
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
1049
1094
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1067,6 +1112,7 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1067
1112
|
__props__.__dict__["aws_v4_authentication"] = aws_v4_authentication
|
1068
1113
|
__props__.__dict__["description"] = description
|
1069
1114
|
__props__.__dict__["failover_origin"] = failover_origin
|
1115
|
+
__props__.__dict__["flex_shielding"] = flex_shielding
|
1070
1116
|
__props__.__dict__["labels"] = labels
|
1071
1117
|
__props__.__dict__["max_attempts"] = max_attempts
|
1072
1118
|
__props__.__dict__["name"] = name
|
@@ -1098,6 +1144,7 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1098
1144
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1099
1145
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1100
1146
|
failover_origin: Optional[pulumi.Input[builtins.str]] = None,
|
1147
|
+
flex_shielding: Optional[pulumi.Input[Union['EdgeCacheOriginFlexShieldingArgs', 'EdgeCacheOriginFlexShieldingArgsDict']]] = None,
|
1101
1148
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1102
1149
|
max_attempts: Optional[pulumi.Input[builtins.int]] = None,
|
1103
1150
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1125,6 +1172,9 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1125
1172
|
After maxAttempts is reached, the configured failoverOrigin will be used to fulfil the request.
|
1126
1173
|
The value of timeout.maxAttemptsTimeout dictates the timeout across all origins.
|
1127
1174
|
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.
|
1128
1178
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Set of label tags associated with the EdgeCache resource.
|
1129
1179
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
1130
1180
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1185,6 +1235,7 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1185
1235
|
__props__.__dict__["description"] = description
|
1186
1236
|
__props__.__dict__["effective_labels"] = effective_labels
|
1187
1237
|
__props__.__dict__["failover_origin"] = failover_origin
|
1238
|
+
__props__.__dict__["flex_shielding"] = flex_shielding
|
1188
1239
|
__props__.__dict__["labels"] = labels
|
1189
1240
|
__props__.__dict__["max_attempts"] = max_attempts
|
1190
1241
|
__props__.__dict__["name"] = name
|
@@ -1235,6 +1286,16 @@ class EdgeCacheOrigin(pulumi.CustomResource):
|
|
1235
1286
|
"""
|
1236
1287
|
return pulumi.get(self, "failover_origin")
|
1237
1288
|
|
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
|
+
|
1238
1299
|
@property
|
1239
1300
|
@pulumi.getter
|
1240
1301
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
@@ -20,6 +20,7 @@ __all__ = [
|
|
20
20
|
'EdgeCacheKeysetPublicKey',
|
21
21
|
'EdgeCacheKeysetValidationSharedKey',
|
22
22
|
'EdgeCacheOriginAwsV4Authentication',
|
23
|
+
'EdgeCacheOriginFlexShielding',
|
23
24
|
'EdgeCacheOriginOriginOverrideAction',
|
24
25
|
'EdgeCacheOriginOriginOverrideActionHeaderAction',
|
25
26
|
'EdgeCacheOriginOriginOverrideActionHeaderActionRequestHeadersToAdd',
|
@@ -258,6 +259,48 @@ class EdgeCacheOriginAwsV4Authentication(dict):
|
|
258
259
|
return pulumi.get(self, "secret_access_key_version")
|
259
260
|
|
260
261
|
|
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
|
+
|
261
304
|
@pulumi.output_type
|
262
305
|
class EdgeCacheOriginOriginOverrideAction(dict):
|
263
306
|
@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,
|
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):
|
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,9 +134,6 @@ 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)
|
140
137
|
if tier and not isinstance(tier, str):
|
141
138
|
raise TypeError("Expected argument 'tier' to be a str")
|
142
139
|
pulumi.set(__self__, "tier", tier)
|
@@ -322,11 +319,6 @@ class GetInstanceResult:
|
|
322
319
|
def server_ca_certs(self) -> Sequence['outputs.GetInstanceServerCaCertResult']:
|
323
320
|
return pulumi.get(self, "server_ca_certs")
|
324
321
|
|
325
|
-
@property
|
326
|
-
@pulumi.getter
|
327
|
-
def tags(self) -> Mapping[str, builtins.str]:
|
328
|
-
return pulumi.get(self, "tags")
|
329
|
-
|
330
322
|
@property
|
331
323
|
@pulumi.getter
|
332
324
|
def tier(self) -> builtins.str:
|
@@ -379,7 +371,6 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
379
371
|
reserved_ip_range=self.reserved_ip_range,
|
380
372
|
secondary_ip_range=self.secondary_ip_range,
|
381
373
|
server_ca_certs=self.server_ca_certs,
|
382
|
-
tags=self.tags,
|
383
374
|
tier=self.tier,
|
384
375
|
transit_encryption_mode=self.transit_encryption_mode)
|
385
376
|
|
@@ -455,7 +446,6 @@ def get_instance(name: Optional[builtins.str] = None,
|
|
455
446
|
reserved_ip_range=pulumi.get(__ret__, 'reserved_ip_range'),
|
456
447
|
secondary_ip_range=pulumi.get(__ret__, 'secondary_ip_range'),
|
457
448
|
server_ca_certs=pulumi.get(__ret__, 'server_ca_certs'),
|
458
|
-
tags=pulumi.get(__ret__, 'tags'),
|
459
449
|
tier=pulumi.get(__ret__, 'tier'),
|
460
450
|
transit_encryption_mode=pulumi.get(__ret__, 'transit_encryption_mode'))
|
461
451
|
def get_instance_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -528,6 +518,5 @@ def get_instance_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
528
518
|
reserved_ip_range=pulumi.get(__response__, 'reserved_ip_range'),
|
529
519
|
secondary_ip_range=pulumi.get(__response__, 'secondary_ip_range'),
|
530
520
|
server_ca_certs=pulumi.get(__response__, 'server_ca_certs'),
|
531
|
-
tags=pulumi.get(__response__, 'tags'),
|
532
521
|
tier=pulumi.get(__response__, 'tier'),
|
533
522
|
transit_encryption_mode=pulumi.get(__response__, 'transit_encryption_mode')))
|