pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.0__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 +96 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +6 -0
- pulumi_gcp/compute/_inputs.py +1370 -17
- pulumi_gcp/compute/backend_service.py +209 -14
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +403 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +78 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1952 -29
- pulumi_gcp/compute/region_backend_service.py +207 -14
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +2 -0
- pulumi_gcp/eventarc/_inputs.py +80 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +82 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +84 -27
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +56 -18
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +128 -12
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +110 -95
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/subnetwork.py
CHANGED
@@ -26,6 +26,7 @@ class SubnetworkArgs:
|
|
26
26
|
description: Optional[pulumi.Input[str]] = None,
|
27
27
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
28
28
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
29
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
29
30
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
30
31
|
log_config: Optional[pulumi.Input['SubnetworkLogConfigArgs']] = None,
|
31
32
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -59,6 +60,15 @@ class SubnetworkArgs:
|
|
59
60
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
60
61
|
non-overlapping within a network. Only IPv4 is supported.
|
61
62
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
63
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
64
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
65
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
66
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
67
|
+
Full resource URL, as in:
|
68
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
69
|
+
Partial URL, as in:
|
70
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
71
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
62
72
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
63
73
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
64
74
|
cannot enable direct path.
|
@@ -121,6 +131,8 @@ class SubnetworkArgs:
|
|
121
131
|
pulumi.set(__self__, "external_ipv6_prefix", external_ipv6_prefix)
|
122
132
|
if ip_cidr_range is not None:
|
123
133
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
134
|
+
if ip_collection is not None:
|
135
|
+
pulumi.set(__self__, "ip_collection", ip_collection)
|
124
136
|
if ipv6_access_type is not None:
|
125
137
|
pulumi.set(__self__, "ipv6_access_type", ipv6_access_type)
|
126
138
|
if log_config is not None:
|
@@ -221,6 +233,26 @@ class SubnetworkArgs:
|
|
221
233
|
def ip_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
222
234
|
pulumi.set(self, "ip_cidr_range", value)
|
223
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="ipCollection")
|
238
|
+
def ip_collection(self) -> Optional[pulumi.Input[str]]:
|
239
|
+
"""
|
240
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
241
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
242
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
243
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
244
|
+
Full resource URL, as in:
|
245
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
246
|
+
Partial URL, as in:
|
247
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
248
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "ip_collection")
|
251
|
+
|
252
|
+
@ip_collection.setter
|
253
|
+
def ip_collection(self, value: Optional[pulumi.Input[str]]):
|
254
|
+
pulumi.set(self, "ip_collection", value)
|
255
|
+
|
224
256
|
@property
|
225
257
|
@pulumi.getter(name="ipv6AccessType")
|
226
258
|
def ipv6_access_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -428,8 +460,10 @@ class _SubnetworkState:
|
|
428
460
|
gateway_address: Optional[pulumi.Input[str]] = None,
|
429
461
|
internal_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
430
462
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
463
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
431
464
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
432
465
|
ipv6_cidr_range: Optional[pulumi.Input[str]] = None,
|
466
|
+
ipv6_gce_endpoint: Optional[pulumi.Input[str]] = None,
|
433
467
|
log_config: Optional[pulumi.Input['SubnetworkLogConfigArgs']] = None,
|
434
468
|
name: Optional[pulumi.Input[str]] = None,
|
435
469
|
network: Optional[pulumi.Input[str]] = None,
|
@@ -465,11 +499,25 @@ class _SubnetworkState:
|
|
465
499
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
466
500
|
non-overlapping within a network. Only IPv4 is supported.
|
467
501
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
502
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
503
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
504
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
505
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
506
|
+
Full resource URL, as in:
|
507
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
508
|
+
Partial URL, as in:
|
509
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
510
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
468
511
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
469
512
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
470
513
|
cannot enable direct path.
|
471
514
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
472
515
|
:param pulumi.Input[str] ipv6_cidr_range: The range of internal IPv6 addresses that are owned by this subnetwork.
|
516
|
+
:param pulumi.Input[str] ipv6_gce_endpoint: Possible endpoints of this subnetwork. It can be one of the following:
|
517
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
518
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
519
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
520
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
473
521
|
:param pulumi.Input['SubnetworkLogConfigArgs'] log_config: This field denotes the VPC flow logging options for this subnetwork. If
|
474
522
|
logging is enabled, logs are exported to Cloud Logging. Flow logging
|
475
523
|
isn't supported if the subnet `purpose` field is set to subnetwork is
|
@@ -545,10 +593,14 @@ class _SubnetworkState:
|
|
545
593
|
pulumi.set(__self__, "internal_ipv6_prefix", internal_ipv6_prefix)
|
546
594
|
if ip_cidr_range is not None:
|
547
595
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
596
|
+
if ip_collection is not None:
|
597
|
+
pulumi.set(__self__, "ip_collection", ip_collection)
|
548
598
|
if ipv6_access_type is not None:
|
549
599
|
pulumi.set(__self__, "ipv6_access_type", ipv6_access_type)
|
550
600
|
if ipv6_cidr_range is not None:
|
551
601
|
pulumi.set(__self__, "ipv6_cidr_range", ipv6_cidr_range)
|
602
|
+
if ipv6_gce_endpoint is not None:
|
603
|
+
pulumi.set(__self__, "ipv6_gce_endpoint", ipv6_gce_endpoint)
|
552
604
|
if log_config is not None:
|
553
605
|
pulumi.set(__self__, "log_config", log_config)
|
554
606
|
if name is not None:
|
@@ -687,6 +739,26 @@ class _SubnetworkState:
|
|
687
739
|
def ip_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
688
740
|
pulumi.set(self, "ip_cidr_range", value)
|
689
741
|
|
742
|
+
@property
|
743
|
+
@pulumi.getter(name="ipCollection")
|
744
|
+
def ip_collection(self) -> Optional[pulumi.Input[str]]:
|
745
|
+
"""
|
746
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
747
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
748
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
749
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
750
|
+
Full resource URL, as in:
|
751
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
752
|
+
Partial URL, as in:
|
753
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
754
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
755
|
+
"""
|
756
|
+
return pulumi.get(self, "ip_collection")
|
757
|
+
|
758
|
+
@ip_collection.setter
|
759
|
+
def ip_collection(self, value: Optional[pulumi.Input[str]]):
|
760
|
+
pulumi.set(self, "ip_collection", value)
|
761
|
+
|
690
762
|
@property
|
691
763
|
@pulumi.getter(name="ipv6AccessType")
|
692
764
|
def ipv6_access_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -714,6 +786,22 @@ class _SubnetworkState:
|
|
714
786
|
def ipv6_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
715
787
|
pulumi.set(self, "ipv6_cidr_range", value)
|
716
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="ipv6GceEndpoint")
|
791
|
+
def ipv6_gce_endpoint(self) -> Optional[pulumi.Input[str]]:
|
792
|
+
"""
|
793
|
+
Possible endpoints of this subnetwork. It can be one of the following:
|
794
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
795
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
796
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
797
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
798
|
+
"""
|
799
|
+
return pulumi.get(self, "ipv6_gce_endpoint")
|
800
|
+
|
801
|
+
@ipv6_gce_endpoint.setter
|
802
|
+
def ipv6_gce_endpoint(self, value: Optional[pulumi.Input[str]]):
|
803
|
+
pulumi.set(self, "ipv6_gce_endpoint", value)
|
804
|
+
|
717
805
|
@property
|
718
806
|
@pulumi.getter(name="logConfig")
|
719
807
|
def log_config(self) -> Optional[pulumi.Input['SubnetworkLogConfigArgs']]:
|
@@ -944,6 +1032,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
944
1032
|
description: Optional[pulumi.Input[str]] = None,
|
945
1033
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
946
1034
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1035
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
947
1036
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
948
1037
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
949
1038
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1216,6 +1305,15 @@ class Subnetwork(pulumi.CustomResource):
|
|
1216
1305
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
1217
1306
|
non-overlapping within a network. Only IPv4 is supported.
|
1218
1307
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
1308
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1309
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1310
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1311
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1312
|
+
Full resource URL, as in:
|
1313
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1314
|
+
Partial URL, as in:
|
1315
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1316
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1219
1317
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
1220
1318
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
1221
1319
|
cannot enable direct path.
|
@@ -1541,6 +1639,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1541
1639
|
description: Optional[pulumi.Input[str]] = None,
|
1542
1640
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
1543
1641
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1642
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
1544
1643
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
1545
1644
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
1546
1645
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1568,6 +1667,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1568
1667
|
__props__.__dict__["description"] = description
|
1569
1668
|
__props__.__dict__["external_ipv6_prefix"] = external_ipv6_prefix
|
1570
1669
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1670
|
+
__props__.__dict__["ip_collection"] = ip_collection
|
1571
1671
|
__props__.__dict__["ipv6_access_type"] = ipv6_access_type
|
1572
1672
|
__props__.__dict__["log_config"] = log_config
|
1573
1673
|
__props__.__dict__["name"] = name
|
@@ -1589,6 +1689,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1589
1689
|
__props__.__dict__["gateway_address"] = None
|
1590
1690
|
__props__.__dict__["internal_ipv6_prefix"] = None
|
1591
1691
|
__props__.__dict__["ipv6_cidr_range"] = None
|
1692
|
+
__props__.__dict__["ipv6_gce_endpoint"] = None
|
1592
1693
|
__props__.__dict__["self_link"] = None
|
1593
1694
|
__props__.__dict__["subnetwork_id"] = None
|
1594
1695
|
super(Subnetwork, __self__).__init__(
|
@@ -1609,8 +1710,10 @@ class Subnetwork(pulumi.CustomResource):
|
|
1609
1710
|
gateway_address: Optional[pulumi.Input[str]] = None,
|
1610
1711
|
internal_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
1611
1712
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1713
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
1612
1714
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
1613
1715
|
ipv6_cidr_range: Optional[pulumi.Input[str]] = None,
|
1716
|
+
ipv6_gce_endpoint: Optional[pulumi.Input[str]] = None,
|
1614
1717
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
1615
1718
|
name: Optional[pulumi.Input[str]] = None,
|
1616
1719
|
network: Optional[pulumi.Input[str]] = None,
|
@@ -1651,11 +1754,25 @@ class Subnetwork(pulumi.CustomResource):
|
|
1651
1754
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
1652
1755
|
non-overlapping within a network. Only IPv4 is supported.
|
1653
1756
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
1757
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1758
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1759
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1760
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1761
|
+
Full resource URL, as in:
|
1762
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1763
|
+
Partial URL, as in:
|
1764
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1765
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1654
1766
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
1655
1767
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
1656
1768
|
cannot enable direct path.
|
1657
1769
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1658
1770
|
:param pulumi.Input[str] ipv6_cidr_range: The range of internal IPv6 addresses that are owned by this subnetwork.
|
1771
|
+
:param pulumi.Input[str] ipv6_gce_endpoint: Possible endpoints of this subnetwork. It can be one of the following:
|
1772
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
1773
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
1774
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
1775
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
1659
1776
|
:param pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']] log_config: This field denotes the VPC flow logging options for this subnetwork. If
|
1660
1777
|
logging is enabled, logs are exported to Cloud Logging. Flow logging
|
1661
1778
|
isn't supported if the subnet `purpose` field is set to subnetwork is
|
@@ -1724,8 +1841,10 @@ class Subnetwork(pulumi.CustomResource):
|
|
1724
1841
|
__props__.__dict__["gateway_address"] = gateway_address
|
1725
1842
|
__props__.__dict__["internal_ipv6_prefix"] = internal_ipv6_prefix
|
1726
1843
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1844
|
+
__props__.__dict__["ip_collection"] = ip_collection
|
1727
1845
|
__props__.__dict__["ipv6_access_type"] = ipv6_access_type
|
1728
1846
|
__props__.__dict__["ipv6_cidr_range"] = ipv6_cidr_range
|
1847
|
+
__props__.__dict__["ipv6_gce_endpoint"] = ipv6_gce_endpoint
|
1729
1848
|
__props__.__dict__["log_config"] = log_config
|
1730
1849
|
__props__.__dict__["name"] = name
|
1731
1850
|
__props__.__dict__["network"] = network
|
@@ -1818,6 +1937,22 @@ class Subnetwork(pulumi.CustomResource):
|
|
1818
1937
|
"""
|
1819
1938
|
return pulumi.get(self, "ip_cidr_range")
|
1820
1939
|
|
1940
|
+
@property
|
1941
|
+
@pulumi.getter(name="ipCollection")
|
1942
|
+
def ip_collection(self) -> pulumi.Output[Optional[str]]:
|
1943
|
+
"""
|
1944
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1945
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1946
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1947
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1948
|
+
Full resource URL, as in:
|
1949
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1950
|
+
Partial URL, as in:
|
1951
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1952
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1953
|
+
"""
|
1954
|
+
return pulumi.get(self, "ip_collection")
|
1955
|
+
|
1821
1956
|
@property
|
1822
1957
|
@pulumi.getter(name="ipv6AccessType")
|
1823
1958
|
def ipv6_access_type(self) -> pulumi.Output[Optional[str]]:
|
@@ -1837,6 +1972,18 @@ class Subnetwork(pulumi.CustomResource):
|
|
1837
1972
|
"""
|
1838
1973
|
return pulumi.get(self, "ipv6_cidr_range")
|
1839
1974
|
|
1975
|
+
@property
|
1976
|
+
@pulumi.getter(name="ipv6GceEndpoint")
|
1977
|
+
def ipv6_gce_endpoint(self) -> pulumi.Output[str]:
|
1978
|
+
"""
|
1979
|
+
Possible endpoints of this subnetwork. It can be one of the following:
|
1980
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
1981
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
1982
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
1983
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
1984
|
+
"""
|
1985
|
+
return pulumi.get(self, "ipv6_gce_endpoint")
|
1986
|
+
|
1840
1987
|
@property
|
1841
1988
|
@pulumi.getter(name="logConfig")
|
1842
1989
|
def log_config(self) -> pulumi.Output[Optional['outputs.SubnetworkLogConfig']]:
|
pulumi_gcp/compute/url_map.py
CHANGED
@@ -979,6 +979,10 @@ class URLMap(pulumi.CustomResource):
|
|
979
979
|
}],
|
980
980
|
},
|
981
981
|
}],
|
982
|
+
"max_stream_duration": {
|
983
|
+
"nanos": 500000,
|
984
|
+
"seconds": "9",
|
985
|
+
},
|
982
986
|
},
|
983
987
|
}],
|
984
988
|
}],
|
@@ -1719,6 +1723,10 @@ class URLMap(pulumi.CustomResource):
|
|
1719
1723
|
}],
|
1720
1724
|
},
|
1721
1725
|
}],
|
1726
|
+
"max_stream_duration": {
|
1727
|
+
"nanos": 500000,
|
1728
|
+
"seconds": "9",
|
1729
|
+
},
|
1722
1730
|
},
|
1723
1731
|
}],
|
1724
1732
|
}],
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -8164,7 +8164,7 @@ if not MYPY:
|
|
8164
8164
|
"""
|
8165
8165
|
enable_components: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8166
8166
|
"""
|
8167
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8167
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8168
8168
|
"""
|
8169
8169
|
managed_prometheus: NotRequired[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgsDict']]
|
8170
8170
|
"""
|
@@ -8181,7 +8181,7 @@ class ClusterMonitoringConfigArgs:
|
|
8181
8181
|
managed_prometheus: Optional[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs']] = None):
|
8182
8182
|
"""
|
8183
8183
|
:param pulumi.Input['ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_config: Configuration for Advanced Datapath Monitoring. Structure is documented below.
|
8184
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8184
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8185
8185
|
:param pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
|
8186
8186
|
"""
|
8187
8187
|
if advanced_datapath_observability_config is not None:
|
@@ -8207,7 +8207,7 @@ class ClusterMonitoringConfigArgs:
|
|
8207
8207
|
@pulumi.getter(name="enableComponents")
|
8208
8208
|
def enable_components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
8209
8209
|
"""
|
8210
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8210
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8211
8211
|
"""
|
8212
8212
|
return pulumi.get(self, "enable_components")
|
8213
8213
|
|
@@ -15699,7 +15699,7 @@ if not MYPY:
|
|
15699
15699
|
class ClusterNotificationConfigPubsubFilterArgsDict(TypedDict):
|
15700
15700
|
event_types: pulumi.Input[Sequence[pulumi.Input[str]]]
|
15701
15701
|
"""
|
15702
|
-
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT` and `
|
15702
|
+
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT`, `SECURITY_BULLETIN_EVENT` and `UPGRADE_INFO_EVENT`. See [Filtering notifications](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-notifications#filtering) for more details.
|
15703
15703
|
"""
|
15704
15704
|
elif False:
|
15705
15705
|
ClusterNotificationConfigPubsubFilterArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -15709,7 +15709,7 @@ class ClusterNotificationConfigPubsubFilterArgs:
|
|
15709
15709
|
def __init__(__self__, *,
|
15710
15710
|
event_types: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
15711
15711
|
"""
|
15712
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] event_types: Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT` and `
|
15712
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] event_types: Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT`, `SECURITY_BULLETIN_EVENT` and `UPGRADE_INFO_EVENT`. See [Filtering notifications](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-notifications#filtering) for more details.
|
15713
15713
|
"""
|
15714
15714
|
pulumi.set(__self__, "event_types", event_types)
|
15715
15715
|
|
@@ -15717,7 +15717,7 @@ class ClusterNotificationConfigPubsubFilterArgs:
|
|
15717
15717
|
@pulumi.getter(name="eventTypes")
|
15718
15718
|
def event_types(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
15719
15719
|
"""
|
15720
|
-
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT` and `
|
15720
|
+
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT`, `SECURITY_BULLETIN_EVENT` and `UPGRADE_INFO_EVENT`. See [Filtering notifications](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-notifications#filtering) for more details.
|
15721
15721
|
"""
|
15722
15722
|
return pulumi.get(self, "event_types")
|
15723
15723
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -6746,7 +6746,7 @@ class ClusterMonitoringConfig(dict):
|
|
6746
6746
|
managed_prometheus: Optional['outputs.ClusterMonitoringConfigManagedPrometheus'] = None):
|
6747
6747
|
"""
|
6748
6748
|
:param 'ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs' advanced_datapath_observability_config: Configuration for Advanced Datapath Monitoring. Structure is documented below.
|
6749
|
-
:param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
6749
|
+
:param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
6750
6750
|
:param 'ClusterMonitoringConfigManagedPrometheusArgs' managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
|
6751
6751
|
"""
|
6752
6752
|
if advanced_datapath_observability_config is not None:
|
@@ -6768,7 +6768,7 @@ class ClusterMonitoringConfig(dict):
|
|
6768
6768
|
@pulumi.getter(name="enableComponents")
|
6769
6769
|
def enable_components(self) -> Optional[Sequence[str]]:
|
6770
6770
|
"""
|
6771
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
6771
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
6772
6772
|
"""
|
6773
6773
|
return pulumi.get(self, "enable_components")
|
6774
6774
|
|
@@ -12643,7 +12643,7 @@ class ClusterNotificationConfigPubsubFilter(dict):
|
|
12643
12643
|
def __init__(__self__, *,
|
12644
12644
|
event_types: Sequence[str]):
|
12645
12645
|
"""
|
12646
|
-
:param Sequence[str] event_types: Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT` and `
|
12646
|
+
:param Sequence[str] event_types: Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT`, `SECURITY_BULLETIN_EVENT` and `UPGRADE_INFO_EVENT`. See [Filtering notifications](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-notifications#filtering) for more details.
|
12647
12647
|
"""
|
12648
12648
|
pulumi.set(__self__, "event_types", event_types)
|
12649
12649
|
|
@@ -12651,7 +12651,7 @@ class ClusterNotificationConfigPubsubFilter(dict):
|
|
12651
12651
|
@pulumi.getter(name="eventTypes")
|
12652
12652
|
def event_types(self) -> Sequence[str]:
|
12653
12653
|
"""
|
12654
|
-
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT` and `
|
12654
|
+
Can be used to filter what notifications are sent. Accepted values are `UPGRADE_AVAILABLE_EVENT`, `UPGRADE_EVENT`, `SECURITY_BULLETIN_EVENT` and `UPGRADE_INFO_EVENT`. See [Filtering notifications](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-notifications#filtering) for more details.
|
12655
12655
|
"""
|
12656
12656
|
return pulumi.get(self, "event_types")
|
12657
12657
|
|
@@ -17790,7 +17790,7 @@ class GetClusterMonitoringConfigResult(dict):
|
|
17790
17790
|
managed_prometheuses: Sequence['outputs.GetClusterMonitoringConfigManagedPrometheusResult']):
|
17791
17791
|
"""
|
17792
17792
|
:param Sequence['GetClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_configs: Configuration of Advanced Datapath Observability features.
|
17793
|
-
:param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and
|
17793
|
+
:param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR, DCGM and JOBSET.
|
17794
17794
|
:param Sequence['GetClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheuses: Configuration for Google Cloud Managed Services for Prometheus.
|
17795
17795
|
"""
|
17796
17796
|
pulumi.set(__self__, "advanced_datapath_observability_configs", advanced_datapath_observability_configs)
|
@@ -17809,7 +17809,7 @@ class GetClusterMonitoringConfigResult(dict):
|
|
17809
17809
|
@pulumi.getter(name="enableComponents")
|
17810
17810
|
def enable_components(self) -> Sequence[str]:
|
17811
17811
|
"""
|
17812
|
-
GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and
|
17812
|
+
GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR, DCGM and JOBSET.
|
17813
17813
|
"""
|
17814
17814
|
return pulumi.get(self, "enable_components")
|
17815
17815
|
|
@@ -21590,7 +21590,7 @@ class GetClusterNotificationConfigPubsubFilterResult(dict):
|
|
21590
21590
|
def __init__(__self__, *,
|
21591
21591
|
event_types: Sequence[str]):
|
21592
21592
|
"""
|
21593
|
-
:param Sequence[str] event_types: Can be used to filter what notifications are sent. Valid values include include UPGRADE_AVAILABLE_EVENT, UPGRADE_EVENT and
|
21593
|
+
:param Sequence[str] event_types: Can be used to filter what notifications are sent. Valid values include include UPGRADE_AVAILABLE_EVENT, UPGRADE_EVENT, SECURITY_BULLETIN_EVENT, and UPGRADE_INFO_EVENT
|
21594
21594
|
"""
|
21595
21595
|
pulumi.set(__self__, "event_types", event_types)
|
21596
21596
|
|
@@ -21598,7 +21598,7 @@ class GetClusterNotificationConfigPubsubFilterResult(dict):
|
|
21598
21598
|
@pulumi.getter(name="eventTypes")
|
21599
21599
|
def event_types(self) -> Sequence[str]:
|
21600
21600
|
"""
|
21601
|
-
Can be used to filter what notifications are sent. Valid values include include UPGRADE_AVAILABLE_EVENT, UPGRADE_EVENT and
|
21601
|
+
Can be used to filter what notifications are sent. Valid values include include UPGRADE_AVAILABLE_EVENT, UPGRADE_EVENT, SECURITY_BULLETIN_EVENT, and UPGRADE_INFO_EVENT
|
21602
21602
|
"""
|
21603
21603
|
return pulumi.get(self, "event_types")
|
21604
21604
|
|
pulumi_gcp/datacatalog/entry.py
CHANGED
@@ -527,6 +527,8 @@ class Entry(pulumi.CustomResource):
|
|
527
527
|
user_specified_type: Optional[pulumi.Input[str]] = None,
|
528
528
|
__props__=None):
|
529
529
|
"""
|
530
|
+
> **Warning:** `datacatalog.Entry` is deprecated and will be removed in a future major release. Data Catalog is deprecated and will be discontinued on January 30, 2026. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
531
|
+
|
530
532
|
Entry Metadata. A Data Catalog Entry resource represents another resource in Google Cloud Platform
|
531
533
|
(such as a BigQuery dataset or a Pub/Sub topic) or outside of Google Cloud Platform. Clients can use
|
532
534
|
the linkedResource field in the Entry resource to refer to the original resource ID of the source system.
|
@@ -677,6 +679,8 @@ class Entry(pulumi.CustomResource):
|
|
677
679
|
args: EntryArgs,
|
678
680
|
opts: Optional[pulumi.ResourceOptions] = None):
|
679
681
|
"""
|
682
|
+
> **Warning:** `datacatalog.Entry` is deprecated and will be removed in a future major release. Data Catalog is deprecated and will be discontinued on January 30, 2026. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
683
|
+
|
680
684
|
Entry Metadata. A Data Catalog Entry resource represents another resource in Google Cloud Platform
|
681
685
|
(such as a BigQuery dataset or a Pub/Sub topic) or outside of Google Cloud Platform. Clients can use
|
682
686
|
the linkedResource field in the Entry resource to refer to the original resource ID of the source system.
|
pulumi_gcp/datacatalog/tag.py
CHANGED
@@ -237,6 +237,8 @@ class Tag(pulumi.CustomResource):
|
|
237
237
|
template: Optional[pulumi.Input[str]] = None,
|
238
238
|
__props__=None):
|
239
239
|
"""
|
240
|
+
> **Warning:** `datacatalog.Tag` is deprecated and will be removed in a future major release. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
241
|
+
|
240
242
|
Tags are used to attach custom metadata to Data Catalog resources. Tags conform to the specifications within their tag template.
|
241
243
|
|
242
244
|
See [Data Catalog IAM](https://cloud.google.com/data-catalog/docs/concepts/iam) for information on the permissions needed to create or view tags.
|
@@ -533,6 +535,8 @@ class Tag(pulumi.CustomResource):
|
|
533
535
|
args: TagArgs,
|
534
536
|
opts: Optional[pulumi.ResourceOptions] = None):
|
535
537
|
"""
|
538
|
+
> **Warning:** `datacatalog.Tag` is deprecated and will be removed in a future major release. For steps to transition your Data Catalog users, workloads, and content to Dataplex Catalog, see https://cloud.google.com/dataplex/docs/transition-to-dataplex-catalog.
|
539
|
+
|
536
540
|
Tags are used to attach custom metadata to Data Catalog resources. Tags conform to the specifications within their tag template.
|
537
541
|
|
538
542
|
See [Data Catalog IAM](https://cloud.google.com/data-catalog/docs/concepts/iam) for information on the permissions needed to create or view tags.
|
pulumi_gcp/dataproc/_inputs.py
CHANGED
@@ -4816,7 +4816,7 @@ if not MYPY:
|
|
4816
4816
|
"""
|
4817
4817
|
provisioning_model_mix: NotRequired[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict']]
|
4818
4818
|
"""
|
4819
|
-
Defines how
|
4819
|
+
Defines how the Group selects the provisioning model to ensure required reliability.
|
4820
4820
|
"""
|
4821
4821
|
elif False:
|
4822
4822
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4830,7 +4830,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
|
4830
4830
|
"""
|
4831
4831
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgs']]] instance_selection_lists: List of instance selection options that the group will use when creating new VMs.
|
4832
4832
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgs']]] instance_selection_results: A list of instance selection results in the group.
|
4833
|
-
:param pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs'] provisioning_model_mix: Defines how
|
4833
|
+
:param pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs'] provisioning_model_mix: Defines how the Group selects the provisioning model to ensure required reliability.
|
4834
4834
|
"""
|
4835
4835
|
if instance_selection_lists is not None:
|
4836
4836
|
pulumi.set(__self__, "instance_selection_lists", instance_selection_lists)
|
@@ -4867,7 +4867,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
|
4867
4867
|
@pulumi.getter(name="provisioningModelMix")
|
4868
4868
|
def provisioning_model_mix(self) -> Optional[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs']]:
|
4869
4869
|
"""
|
4870
|
-
Defines how
|
4870
|
+
Defines how the Group selects the provisioning model to ensure required reliability.
|
4871
4871
|
"""
|
4872
4872
|
return pulumi.get(self, "provisioning_model_mix")
|
4873
4873
|
|
@@ -4885,8 +4885,6 @@ if not MYPY:
|
|
4885
4885
|
rank: NotRequired[pulumi.Input[int]]
|
4886
4886
|
"""
|
4887
4887
|
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4888
|
-
|
4889
|
-
- - -
|
4890
4888
|
"""
|
4891
4889
|
elif False:
|
4892
4890
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4899,8 +4897,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
4899
4897
|
"""
|
4900
4898
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] machine_types: Full machine-type names, e.g. `"n1-standard-16"`.
|
4901
4899
|
:param pulumi.Input[int] rank: Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4902
|
-
|
4903
|
-
- - -
|
4904
4900
|
"""
|
4905
4901
|
if machine_types is not None:
|
4906
4902
|
pulumi.set(__self__, "machine_types", machine_types)
|
@@ -4924,8 +4920,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
4924
4920
|
def rank(self) -> Optional[pulumi.Input[int]]:
|
4925
4921
|
"""
|
4926
4922
|
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4927
|
-
|
4928
|
-
- - -
|
4929
4923
|
"""
|
4930
4924
|
return pulumi.get(self, "rank")
|
4931
4925
|
|
@@ -4990,11 +4984,12 @@ if not MYPY:
|
|
4990
4984
|
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict(TypedDict):
|
4991
4985
|
standard_capacity_base: NotRequired[pulumi.Input[int]]
|
4992
4986
|
"""
|
4993
|
-
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
4987
|
+
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
4994
4988
|
"""
|
4995
4989
|
standard_capacity_percent_above_base: NotRequired[pulumi.Input[int]]
|
4996
4990
|
"""
|
4997
|
-
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
4991
|
+
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
4992
|
+
- - -
|
4998
4993
|
"""
|
4999
4994
|
elif False:
|
5000
4995
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5005,8 +5000,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5005
5000
|
standard_capacity_base: Optional[pulumi.Input[int]] = None,
|
5006
5001
|
standard_capacity_percent_above_base: Optional[pulumi.Input[int]] = None):
|
5007
5002
|
"""
|
5008
|
-
:param pulumi.Input[int] standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
5009
|
-
:param pulumi.Input[int] standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
5003
|
+
:param pulumi.Input[int] standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
5004
|
+
:param pulumi.Input[int] standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
5005
|
+
- - -
|
5010
5006
|
"""
|
5011
5007
|
if standard_capacity_base is not None:
|
5012
5008
|
pulumi.set(__self__, "standard_capacity_base", standard_capacity_base)
|
@@ -5017,7 +5013,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5017
5013
|
@pulumi.getter(name="standardCapacityBase")
|
5018
5014
|
def standard_capacity_base(self) -> Optional[pulumi.Input[int]]:
|
5019
5015
|
"""
|
5020
|
-
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
5016
|
+
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
5021
5017
|
"""
|
5022
5018
|
return pulumi.get(self, "standard_capacity_base")
|
5023
5019
|
|
@@ -5029,7 +5025,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5029
5025
|
@pulumi.getter(name="standardCapacityPercentAboveBase")
|
5030
5026
|
def standard_capacity_percent_above_base(self) -> Optional[pulumi.Input[int]]:
|
5031
5027
|
"""
|
5032
|
-
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
5028
|
+
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
5029
|
+
- - -
|
5033
5030
|
"""
|
5034
5031
|
return pulumi.get(self, "standard_capacity_percent_above_base")
|
5035
5032
|
|