pulumi-gcp 8.40.0a1754636117__py3-none-any.whl → 8.40.0a1754951145__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 +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -177,6 +177,8 @@ __all__ = [
|
|
177
177
|
'ClusterAddonsConfigIstioConfigArgsDict',
|
178
178
|
'ClusterAddonsConfigKalmConfigArgs',
|
179
179
|
'ClusterAddonsConfigKalmConfigArgsDict',
|
180
|
+
'ClusterAddonsConfigLustreCsiDriverConfigArgs',
|
181
|
+
'ClusterAddonsConfigLustreCsiDriverConfigArgsDict',
|
180
182
|
'ClusterAddonsConfigNetworkPolicyConfigArgs',
|
181
183
|
'ClusterAddonsConfigNetworkPolicyConfigArgsDict',
|
182
184
|
'ClusterAddonsConfigParallelstoreCsiDriverConfigArgs',
|
@@ -245,6 +247,8 @@ __all__ = [
|
|
245
247
|
'ClusterIdentityServiceConfigArgsDict',
|
246
248
|
'ClusterIpAllocationPolicyArgs',
|
247
249
|
'ClusterIpAllocationPolicyArgsDict',
|
250
|
+
'ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs',
|
251
|
+
'ClusterIpAllocationPolicyAdditionalIpRangesConfigArgsDict',
|
248
252
|
'ClusterIpAllocationPolicyAdditionalPodRangesConfigArgs',
|
249
253
|
'ClusterIpAllocationPolicyAdditionalPodRangesConfigArgsDict',
|
250
254
|
'ClusterIpAllocationPolicyPodCidrOverprovisionConfigArgs',
|
@@ -469,6 +473,8 @@ __all__ = [
|
|
469
473
|
'ClusterProtectConfigArgsDict',
|
470
474
|
'ClusterProtectConfigWorkloadConfigArgs',
|
471
475
|
'ClusterProtectConfigWorkloadConfigArgsDict',
|
476
|
+
'ClusterRbacBindingConfigArgs',
|
477
|
+
'ClusterRbacBindingConfigArgsDict',
|
472
478
|
'ClusterReleaseChannelArgs',
|
473
479
|
'ClusterReleaseChannelArgsDict',
|
474
480
|
'ClusterResourceUsageExportConfigArgs',
|
@@ -4636,6 +4642,19 @@ if not MYPY:
|
|
4636
4642
|
.
|
4637
4643
|
Configuration for the KALM addon, which manages the lifecycle of k8s. It is disabled by default; Set `enabled = true` to enable.
|
4638
4644
|
"""
|
4645
|
+
lustre_csi_driver_config: NotRequired[pulumi.Input['ClusterAddonsConfigLustreCsiDriverConfigArgsDict']]
|
4646
|
+
"""
|
4647
|
+
The status of the Lustre CSI driver addon,
|
4648
|
+
which allows the usage of a Lustre instances as volumes.
|
4649
|
+
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4650
|
+
It is disabled by default for Autopilot clusters; set `enabled = true` to enable.
|
4651
|
+
Lustre CSI Driver Config has optional subfield
|
4652
|
+
`enable_legacy_lustre_port` which allows the Lustre CSI driver to initialize LNet (the virtual networklayer for Lustre kernel module) using port 6988.
|
4653
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
4654
|
+
See [Enable Lustre CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/lustre-csi-driver-new-volume) for more information.
|
4655
|
+
|
4656
|
+
This example `addons_config` disables two addons:
|
4657
|
+
"""
|
4639
4658
|
network_policy_config: NotRequired[pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgsDict']]
|
4640
4659
|
"""
|
4641
4660
|
Whether we should enable the network policy addon
|
@@ -4652,8 +4671,6 @@ if not MYPY:
|
|
4652
4671
|
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4653
4672
|
It is enabled by default for Autopilot clusters with version 1.29 or later; set `enabled = true` to enable it explicitly.
|
4654
4673
|
See [Enable the Parallelstore CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/parallelstore-csi-new-volume#enable) for more information.
|
4655
|
-
|
4656
|
-
This example `addons_config` disables two addons:
|
4657
4674
|
"""
|
4658
4675
|
ray_operator_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgsDict']]]]
|
4659
4676
|
"""
|
@@ -4693,6 +4710,7 @@ class ClusterAddonsConfigArgs:
|
|
4693
4710
|
http_load_balancing: Optional[pulumi.Input['ClusterAddonsConfigHttpLoadBalancingArgs']] = None,
|
4694
4711
|
istio_config: Optional[pulumi.Input['ClusterAddonsConfigIstioConfigArgs']] = None,
|
4695
4712
|
kalm_config: Optional[pulumi.Input['ClusterAddonsConfigKalmConfigArgs']] = None,
|
4713
|
+
lustre_csi_driver_config: Optional[pulumi.Input['ClusterAddonsConfigLustreCsiDriverConfigArgs']] = None,
|
4696
4714
|
network_policy_config: Optional[pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgs']] = None,
|
4697
4715
|
parallelstore_csi_driver_config: Optional[pulumi.Input['ClusterAddonsConfigParallelstoreCsiDriverConfigArgs']] = None,
|
4698
4716
|
ray_operator_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]]] = None,
|
@@ -4733,6 +4751,16 @@ class ClusterAddonsConfigArgs:
|
|
4733
4751
|
Structure is documented below.
|
4734
4752
|
:param pulumi.Input['ClusterAddonsConfigKalmConfigArgs'] kalm_config: .
|
4735
4753
|
Configuration for the KALM addon, which manages the lifecycle of k8s. It is disabled by default; Set `enabled = true` to enable.
|
4754
|
+
:param pulumi.Input['ClusterAddonsConfigLustreCsiDriverConfigArgs'] lustre_csi_driver_config: The status of the Lustre CSI driver addon,
|
4755
|
+
which allows the usage of a Lustre instances as volumes.
|
4756
|
+
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4757
|
+
It is disabled by default for Autopilot clusters; set `enabled = true` to enable.
|
4758
|
+
Lustre CSI Driver Config has optional subfield
|
4759
|
+
`enable_legacy_lustre_port` which allows the Lustre CSI driver to initialize LNet (the virtual networklayer for Lustre kernel module) using port 6988.
|
4760
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
4761
|
+
See [Enable Lustre CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/lustre-csi-driver-new-volume) for more information.
|
4762
|
+
|
4763
|
+
This example `addons_config` disables two addons:
|
4736
4764
|
:param pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgs'] network_policy_config: Whether we should enable the network policy addon
|
4737
4765
|
for the master. This must be enabled in order to enable network policy for the nodes.
|
4738
4766
|
To enable this, you must also define a `network_policy` block,
|
@@ -4744,8 +4772,6 @@ class ClusterAddonsConfigArgs:
|
|
4744
4772
|
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4745
4773
|
It is enabled by default for Autopilot clusters with version 1.29 or later; set `enabled = true` to enable it explicitly.
|
4746
4774
|
See [Enable the Parallelstore CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/parallelstore-csi-new-volume#enable) for more information.
|
4747
|
-
|
4748
|
-
This example `addons_config` disables two addons:
|
4749
4775
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]] ray_operator_configs: . The status of the [Ray Operator
|
4750
4776
|
addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
|
4751
4777
|
It is disabled by default. Set `enabled = true` to enable. The minimum
|
@@ -4784,6 +4810,8 @@ class ClusterAddonsConfigArgs:
|
|
4784
4810
|
pulumi.set(__self__, "istio_config", istio_config)
|
4785
4811
|
if kalm_config is not None:
|
4786
4812
|
pulumi.set(__self__, "kalm_config", kalm_config)
|
4813
|
+
if lustre_csi_driver_config is not None:
|
4814
|
+
pulumi.set(__self__, "lustre_csi_driver_config", lustre_csi_driver_config)
|
4787
4815
|
if network_policy_config is not None:
|
4788
4816
|
pulumi.set(__self__, "network_policy_config", network_policy_config)
|
4789
4817
|
if parallelstore_csi_driver_config is not None:
|
@@ -4949,6 +4977,27 @@ class ClusterAddonsConfigArgs:
|
|
4949
4977
|
def kalm_config(self, value: Optional[pulumi.Input['ClusterAddonsConfigKalmConfigArgs']]):
|
4950
4978
|
pulumi.set(self, "kalm_config", value)
|
4951
4979
|
|
4980
|
+
@_builtins.property
|
4981
|
+
@pulumi.getter(name="lustreCsiDriverConfig")
|
4982
|
+
def lustre_csi_driver_config(self) -> Optional[pulumi.Input['ClusterAddonsConfigLustreCsiDriverConfigArgs']]:
|
4983
|
+
"""
|
4984
|
+
The status of the Lustre CSI driver addon,
|
4985
|
+
which allows the usage of a Lustre instances as volumes.
|
4986
|
+
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4987
|
+
It is disabled by default for Autopilot clusters; set `enabled = true` to enable.
|
4988
|
+
Lustre CSI Driver Config has optional subfield
|
4989
|
+
`enable_legacy_lustre_port` which allows the Lustre CSI driver to initialize LNet (the virtual networklayer for Lustre kernel module) using port 6988.
|
4990
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
4991
|
+
See [Enable Lustre CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/lustre-csi-driver-new-volume) for more information.
|
4992
|
+
|
4993
|
+
This example `addons_config` disables two addons:
|
4994
|
+
"""
|
4995
|
+
return pulumi.get(self, "lustre_csi_driver_config")
|
4996
|
+
|
4997
|
+
@lustre_csi_driver_config.setter
|
4998
|
+
def lustre_csi_driver_config(self, value: Optional[pulumi.Input['ClusterAddonsConfigLustreCsiDriverConfigArgs']]):
|
4999
|
+
pulumi.set(self, "lustre_csi_driver_config", value)
|
5000
|
+
|
4952
5001
|
@_builtins.property
|
4953
5002
|
@pulumi.getter(name="networkPolicyConfig")
|
4954
5003
|
def network_policy_config(self) -> Optional[pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgs']]:
|
@@ -4975,8 +5024,6 @@ class ClusterAddonsConfigArgs:
|
|
4975
5024
|
It is disabled by default for Standard clusters; set `enabled = true` to enable.
|
4976
5025
|
It is enabled by default for Autopilot clusters with version 1.29 or later; set `enabled = true` to enable it explicitly.
|
4977
5026
|
See [Enable the Parallelstore CSI driver](https://cloud.google.com/kubernetes-engine/docs/how-to/persistent-volumes/parallelstore-csi-new-volume#enable) for more information.
|
4978
|
-
|
4979
|
-
This example `addons_config` disables two addons:
|
4980
5027
|
"""
|
4981
5028
|
return pulumi.get(self, "parallelstore_csi_driver_config")
|
4982
5029
|
|
@@ -5358,6 +5405,60 @@ class ClusterAddonsConfigKalmConfigArgs:
|
|
5358
5405
|
pulumi.set(self, "enabled", value)
|
5359
5406
|
|
5360
5407
|
|
5408
|
+
if not MYPY:
|
5409
|
+
class ClusterAddonsConfigLustreCsiDriverConfigArgsDict(TypedDict):
|
5410
|
+
enabled: pulumi.Input[_builtins.bool]
|
5411
|
+
"""
|
5412
|
+
Whether the Lustre CSI driver is enabled for this cluster.
|
5413
|
+
"""
|
5414
|
+
enable_legacy_lustre_port: NotRequired[pulumi.Input[_builtins.bool]]
|
5415
|
+
"""
|
5416
|
+
If set to true, the Lustre CSI driver will initialize LNet (the virtual network layer for Lustre kernel module) using port 6988.
|
5417
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
5418
|
+
"""
|
5419
|
+
elif False:
|
5420
|
+
ClusterAddonsConfigLustreCsiDriverConfigArgsDict: TypeAlias = Mapping[str, Any]
|
5421
|
+
|
5422
|
+
@pulumi.input_type
|
5423
|
+
class ClusterAddonsConfigLustreCsiDriverConfigArgs:
|
5424
|
+
def __init__(__self__, *,
|
5425
|
+
enabled: pulumi.Input[_builtins.bool],
|
5426
|
+
enable_legacy_lustre_port: Optional[pulumi.Input[_builtins.bool]] = None):
|
5427
|
+
"""
|
5428
|
+
:param pulumi.Input[_builtins.bool] enabled: Whether the Lustre CSI driver is enabled for this cluster.
|
5429
|
+
:param pulumi.Input[_builtins.bool] enable_legacy_lustre_port: If set to true, the Lustre CSI driver will initialize LNet (the virtual network layer for Lustre kernel module) using port 6988.
|
5430
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
5431
|
+
"""
|
5432
|
+
pulumi.set(__self__, "enabled", enabled)
|
5433
|
+
if enable_legacy_lustre_port is not None:
|
5434
|
+
pulumi.set(__self__, "enable_legacy_lustre_port", enable_legacy_lustre_port)
|
5435
|
+
|
5436
|
+
@_builtins.property
|
5437
|
+
@pulumi.getter
|
5438
|
+
def enabled(self) -> pulumi.Input[_builtins.bool]:
|
5439
|
+
"""
|
5440
|
+
Whether the Lustre CSI driver is enabled for this cluster.
|
5441
|
+
"""
|
5442
|
+
return pulumi.get(self, "enabled")
|
5443
|
+
|
5444
|
+
@enabled.setter
|
5445
|
+
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
5446
|
+
pulumi.set(self, "enabled", value)
|
5447
|
+
|
5448
|
+
@_builtins.property
|
5449
|
+
@pulumi.getter(name="enableLegacyLustrePort")
|
5450
|
+
def enable_legacy_lustre_port(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
5451
|
+
"""
|
5452
|
+
If set to true, the Lustre CSI driver will initialize LNet (the virtual network layer for Lustre kernel module) using port 6988.
|
5453
|
+
This flag is required to workaround a port conflict with the gke-metadata-server on GKE nodes.
|
5454
|
+
"""
|
5455
|
+
return pulumi.get(self, "enable_legacy_lustre_port")
|
5456
|
+
|
5457
|
+
@enable_legacy_lustre_port.setter
|
5458
|
+
def enable_legacy_lustre_port(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
5459
|
+
pulumi.set(self, "enable_legacy_lustre_port", value)
|
5460
|
+
|
5461
|
+
|
5361
5462
|
if not MYPY:
|
5362
5463
|
class ClusterAddonsConfigNetworkPolicyConfigArgsDict(TypedDict):
|
5363
5464
|
disabled: pulumi.Input[_builtins.bool]
|
@@ -7261,6 +7362,11 @@ class ClusterIdentityServiceConfigArgs:
|
|
7261
7362
|
|
7262
7363
|
if not MYPY:
|
7263
7364
|
class ClusterIpAllocationPolicyArgsDict(TypedDict):
|
7365
|
+
additional_ip_ranges_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterIpAllocationPolicyAdditionalIpRangesConfigArgsDict']]]]
|
7366
|
+
"""
|
7367
|
+
The configuration for individual additional subnetworks attached to the cluster.
|
7368
|
+
Structure is documented below.
|
7369
|
+
"""
|
7264
7370
|
additional_pod_ranges_config: NotRequired[pulumi.Input['ClusterIpAllocationPolicyAdditionalPodRangesConfigArgsDict']]
|
7265
7371
|
"""
|
7266
7372
|
The configuration for additional pod secondary ranges at
|
@@ -7312,6 +7418,7 @@ elif False:
|
|
7312
7418
|
@pulumi.input_type
|
7313
7419
|
class ClusterIpAllocationPolicyArgs:
|
7314
7420
|
def __init__(__self__, *,
|
7421
|
+
additional_ip_ranges_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs']]]] = None,
|
7315
7422
|
additional_pod_ranges_config: Optional[pulumi.Input['ClusterIpAllocationPolicyAdditionalPodRangesConfigArgs']] = None,
|
7316
7423
|
cluster_ipv4_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
|
7317
7424
|
cluster_secondary_range_name: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -7320,6 +7427,8 @@ class ClusterIpAllocationPolicyArgs:
|
|
7320
7427
|
services_secondary_range_name: Optional[pulumi.Input[_builtins.str]] = None,
|
7321
7428
|
stack_type: Optional[pulumi.Input[_builtins.str]] = None):
|
7322
7429
|
"""
|
7430
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs']]] additional_ip_ranges_configs: The configuration for individual additional subnetworks attached to the cluster.
|
7431
|
+
Structure is documented below.
|
7323
7432
|
:param pulumi.Input['ClusterIpAllocationPolicyAdditionalPodRangesConfigArgs'] additional_pod_ranges_config: The configuration for additional pod secondary ranges at
|
7324
7433
|
the cluster level. Used for Autopilot clusters and Standard clusters with which control of the
|
7325
7434
|
secondary Pod IP address assignment to node pools isn't needed. Structure is documented below.
|
@@ -7345,6 +7454,8 @@ class ClusterIpAllocationPolicyArgs:
|
|
7345
7454
|
Default value is `IPV4`.
|
7346
7455
|
Possible values are `IPV4` and `IPV4_IPV6`.
|
7347
7456
|
"""
|
7457
|
+
if additional_ip_ranges_configs is not None:
|
7458
|
+
pulumi.set(__self__, "additional_ip_ranges_configs", additional_ip_ranges_configs)
|
7348
7459
|
if additional_pod_ranges_config is not None:
|
7349
7460
|
pulumi.set(__self__, "additional_pod_ranges_config", additional_pod_ranges_config)
|
7350
7461
|
if cluster_ipv4_cidr_block is not None:
|
@@ -7360,6 +7471,19 @@ class ClusterIpAllocationPolicyArgs:
|
|
7360
7471
|
if stack_type is not None:
|
7361
7472
|
pulumi.set(__self__, "stack_type", stack_type)
|
7362
7473
|
|
7474
|
+
@_builtins.property
|
7475
|
+
@pulumi.getter(name="additionalIpRangesConfigs")
|
7476
|
+
def additional_ip_ranges_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs']]]]:
|
7477
|
+
"""
|
7478
|
+
The configuration for individual additional subnetworks attached to the cluster.
|
7479
|
+
Structure is documented below.
|
7480
|
+
"""
|
7481
|
+
return pulumi.get(self, "additional_ip_ranges_configs")
|
7482
|
+
|
7483
|
+
@additional_ip_ranges_configs.setter
|
7484
|
+
def additional_ip_ranges_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs']]]]):
|
7485
|
+
pulumi.set(self, "additional_ip_ranges_configs", value)
|
7486
|
+
|
7363
7487
|
@_builtins.property
|
7364
7488
|
@pulumi.getter(name="additionalPodRangesConfig")
|
7365
7489
|
def additional_pod_ranges_config(self) -> Optional[pulumi.Input['ClusterIpAllocationPolicyAdditionalPodRangesConfigArgs']]:
|
@@ -7462,6 +7586,57 @@ class ClusterIpAllocationPolicyArgs:
|
|
7462
7586
|
pulumi.set(self, "stack_type", value)
|
7463
7587
|
|
7464
7588
|
|
7589
|
+
if not MYPY:
|
7590
|
+
class ClusterIpAllocationPolicyAdditionalIpRangesConfigArgsDict(TypedDict):
|
7591
|
+
subnetwork: pulumi.Input[_builtins.str]
|
7592
|
+
"""
|
7593
|
+
Name of the subnetwork. This can be the full path of the subnetwork or just the name.
|
7594
|
+
"""
|
7595
|
+
pod_ipv4_range_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
7596
|
+
"""
|
7597
|
+
List of secondary ranges names within this subnetwork that can be used for pod IPs.
|
7598
|
+
"""
|
7599
|
+
elif False:
|
7600
|
+
ClusterIpAllocationPolicyAdditionalIpRangesConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7601
|
+
|
7602
|
+
@pulumi.input_type
|
7603
|
+
class ClusterIpAllocationPolicyAdditionalIpRangesConfigArgs:
|
7604
|
+
def __init__(__self__, *,
|
7605
|
+
subnetwork: pulumi.Input[_builtins.str],
|
7606
|
+
pod_ipv4_range_names: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
7607
|
+
"""
|
7608
|
+
:param pulumi.Input[_builtins.str] subnetwork: Name of the subnetwork. This can be the full path of the subnetwork or just the name.
|
7609
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] pod_ipv4_range_names: List of secondary ranges names within this subnetwork that can be used for pod IPs.
|
7610
|
+
"""
|
7611
|
+
pulumi.set(__self__, "subnetwork", subnetwork)
|
7612
|
+
if pod_ipv4_range_names is not None:
|
7613
|
+
pulumi.set(__self__, "pod_ipv4_range_names", pod_ipv4_range_names)
|
7614
|
+
|
7615
|
+
@_builtins.property
|
7616
|
+
@pulumi.getter
|
7617
|
+
def subnetwork(self) -> pulumi.Input[_builtins.str]:
|
7618
|
+
"""
|
7619
|
+
Name of the subnetwork. This can be the full path of the subnetwork or just the name.
|
7620
|
+
"""
|
7621
|
+
return pulumi.get(self, "subnetwork")
|
7622
|
+
|
7623
|
+
@subnetwork.setter
|
7624
|
+
def subnetwork(self, value: pulumi.Input[_builtins.str]):
|
7625
|
+
pulumi.set(self, "subnetwork", value)
|
7626
|
+
|
7627
|
+
@_builtins.property
|
7628
|
+
@pulumi.getter(name="podIpv4RangeNames")
|
7629
|
+
def pod_ipv4_range_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
7630
|
+
"""
|
7631
|
+
List of secondary ranges names within this subnetwork that can be used for pod IPs.
|
7632
|
+
"""
|
7633
|
+
return pulumi.get(self, "pod_ipv4_range_names")
|
7634
|
+
|
7635
|
+
@pod_ipv4_range_names.setter
|
7636
|
+
def pod_ipv4_range_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
7637
|
+
pulumi.set(self, "pod_ipv4_range_names", value)
|
7638
|
+
|
7639
|
+
|
7465
7640
|
if not MYPY:
|
7466
7641
|
class ClusterIpAllocationPolicyAdditionalPodRangesConfigArgsDict(TypedDict):
|
7467
7642
|
pod_range_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
@@ -12555,6 +12730,11 @@ if not MYPY:
|
|
12555
12730
|
"""
|
12556
12731
|
The ID of the secondary range for pod IPs. If create_pod_range is true, this ID is used for the new range. If create_pod_range is false, uses an existing secondary range with this ID.
|
12557
12732
|
"""
|
12733
|
+
subnetwork: NotRequired[pulumi.Input[_builtins.str]]
|
12734
|
+
"""
|
12735
|
+
The name or self_link of the Google Compute Engine
|
12736
|
+
subnetwork in which the cluster's instances are launched.
|
12737
|
+
"""
|
12558
12738
|
elif False:
|
12559
12739
|
ClusterNodePoolNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
12560
12740
|
|
@@ -12568,7 +12748,8 @@ class ClusterNodePoolNetworkConfigArgs:
|
|
12568
12748
|
network_performance_config: Optional[pulumi.Input['ClusterNodePoolNetworkConfigNetworkPerformanceConfigArgs']] = None,
|
12569
12749
|
pod_cidr_overprovision_config: Optional[pulumi.Input['ClusterNodePoolNetworkConfigPodCidrOverprovisionConfigArgs']] = None,
|
12570
12750
|
pod_ipv4_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
|
12571
|
-
pod_range: Optional[pulumi.Input[_builtins.str]] = None
|
12751
|
+
pod_range: Optional[pulumi.Input[_builtins.str]] = None,
|
12752
|
+
subnetwork: Optional[pulumi.Input[_builtins.str]] = None):
|
12572
12753
|
"""
|
12573
12754
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNetworkConfigAdditionalNodeNetworkConfigArgs']]] additional_node_network_configs: We specify the additional node networks for this node pool using this list. Each node network corresponds to an additional interface
|
12574
12755
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNetworkConfigAdditionalPodNetworkConfigArgs']]] additional_pod_network_configs: We specify the additional pod networks for this node pool using this list. Each pod network corresponds to an additional alias IP range for the node
|
@@ -12578,6 +12759,8 @@ class ClusterNodePoolNetworkConfigArgs:
|
|
12578
12759
|
:param pulumi.Input['ClusterNodePoolNetworkConfigPodCidrOverprovisionConfigArgs'] pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited
|
12579
12760
|
:param pulumi.Input[_builtins.str] pod_ipv4_cidr_block: The IP address range for pod IPs in this node pool. Only applicable if create_pod_range is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) to pick a specific range to use.
|
12580
12761
|
:param pulumi.Input[_builtins.str] pod_range: The ID of the secondary range for pod IPs. If create_pod_range is true, this ID is used for the new range. If create_pod_range is false, uses an existing secondary range with this ID.
|
12762
|
+
:param pulumi.Input[_builtins.str] subnetwork: The name or self_link of the Google Compute Engine
|
12763
|
+
subnetwork in which the cluster's instances are launched.
|
12581
12764
|
"""
|
12582
12765
|
if additional_node_network_configs is not None:
|
12583
12766
|
pulumi.set(__self__, "additional_node_network_configs", additional_node_network_configs)
|
@@ -12595,6 +12778,8 @@ class ClusterNodePoolNetworkConfigArgs:
|
|
12595
12778
|
pulumi.set(__self__, "pod_ipv4_cidr_block", pod_ipv4_cidr_block)
|
12596
12779
|
if pod_range is not None:
|
12597
12780
|
pulumi.set(__self__, "pod_range", pod_range)
|
12781
|
+
if subnetwork is not None:
|
12782
|
+
pulumi.set(__self__, "subnetwork", subnetwork)
|
12598
12783
|
|
12599
12784
|
@_builtins.property
|
12600
12785
|
@pulumi.getter(name="additionalNodeNetworkConfigs")
|
@@ -12692,6 +12877,19 @@ class ClusterNodePoolNetworkConfigArgs:
|
|
12692
12877
|
def pod_range(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12693
12878
|
pulumi.set(self, "pod_range", value)
|
12694
12879
|
|
12880
|
+
@_builtins.property
|
12881
|
+
@pulumi.getter
|
12882
|
+
def subnetwork(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12883
|
+
"""
|
12884
|
+
The name or self_link of the Google Compute Engine
|
12885
|
+
subnetwork in which the cluster's instances are launched.
|
12886
|
+
"""
|
12887
|
+
return pulumi.get(self, "subnetwork")
|
12888
|
+
|
12889
|
+
@subnetwork.setter
|
12890
|
+
def subnetwork(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12891
|
+
pulumi.set(self, "subnetwork", value)
|
12892
|
+
|
12695
12893
|
|
12696
12894
|
if not MYPY:
|
12697
12895
|
class ClusterNodePoolNetworkConfigAdditionalNodeNetworkConfigArgsDict(TypedDict):
|
@@ -16605,6 +16803,58 @@ class ClusterProtectConfigWorkloadConfigArgs:
|
|
16605
16803
|
pulumi.set(self, "audit_mode", value)
|
16606
16804
|
|
16607
16805
|
|
16806
|
+
if not MYPY:
|
16807
|
+
class ClusterRbacBindingConfigArgsDict(TypedDict):
|
16808
|
+
enable_insecure_binding_system_authenticated: NotRequired[pulumi.Input[_builtins.bool]]
|
16809
|
+
"""
|
16810
|
+
Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:authenticated.
|
16811
|
+
"""
|
16812
|
+
enable_insecure_binding_system_unauthenticated: NotRequired[pulumi.Input[_builtins.bool]]
|
16813
|
+
"""
|
16814
|
+
Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:anonymous or system:unauthenticated.
|
16815
|
+
"""
|
16816
|
+
elif False:
|
16817
|
+
ClusterRbacBindingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
16818
|
+
|
16819
|
+
@pulumi.input_type
|
16820
|
+
class ClusterRbacBindingConfigArgs:
|
16821
|
+
def __init__(__self__, *,
|
16822
|
+
enable_insecure_binding_system_authenticated: Optional[pulumi.Input[_builtins.bool]] = None,
|
16823
|
+
enable_insecure_binding_system_unauthenticated: Optional[pulumi.Input[_builtins.bool]] = None):
|
16824
|
+
"""
|
16825
|
+
:param pulumi.Input[_builtins.bool] enable_insecure_binding_system_authenticated: Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:authenticated.
|
16826
|
+
:param pulumi.Input[_builtins.bool] enable_insecure_binding_system_unauthenticated: Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:anonymous or system:unauthenticated.
|
16827
|
+
"""
|
16828
|
+
if enable_insecure_binding_system_authenticated is not None:
|
16829
|
+
pulumi.set(__self__, "enable_insecure_binding_system_authenticated", enable_insecure_binding_system_authenticated)
|
16830
|
+
if enable_insecure_binding_system_unauthenticated is not None:
|
16831
|
+
pulumi.set(__self__, "enable_insecure_binding_system_unauthenticated", enable_insecure_binding_system_unauthenticated)
|
16832
|
+
|
16833
|
+
@_builtins.property
|
16834
|
+
@pulumi.getter(name="enableInsecureBindingSystemAuthenticated")
|
16835
|
+
def enable_insecure_binding_system_authenticated(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
16836
|
+
"""
|
16837
|
+
Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:authenticated.
|
16838
|
+
"""
|
16839
|
+
return pulumi.get(self, "enable_insecure_binding_system_authenticated")
|
16840
|
+
|
16841
|
+
@enable_insecure_binding_system_authenticated.setter
|
16842
|
+
def enable_insecure_binding_system_authenticated(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
16843
|
+
pulumi.set(self, "enable_insecure_binding_system_authenticated", value)
|
16844
|
+
|
16845
|
+
@_builtins.property
|
16846
|
+
@pulumi.getter(name="enableInsecureBindingSystemUnauthenticated")
|
16847
|
+
def enable_insecure_binding_system_unauthenticated(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
16848
|
+
"""
|
16849
|
+
Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:anonymous or system:unauthenticated.
|
16850
|
+
"""
|
16851
|
+
return pulumi.get(self, "enable_insecure_binding_system_unauthenticated")
|
16852
|
+
|
16853
|
+
@enable_insecure_binding_system_unauthenticated.setter
|
16854
|
+
def enable_insecure_binding_system_unauthenticated(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
16855
|
+
pulumi.set(self, "enable_insecure_binding_system_unauthenticated", value)
|
16856
|
+
|
16857
|
+
|
16608
16858
|
if not MYPY:
|
16609
16859
|
class ClusterReleaseChannelArgsDict(TypedDict):
|
16610
16860
|
channel: pulumi.Input[_builtins.str]
|
@@ -17529,6 +17779,10 @@ if not MYPY:
|
|
17529
17779
|
"""
|
17530
17780
|
The ID of the secondary range for pod IPs. If `create_pod_range` is true, this ID is used for the new range. If `create_pod_range` is false, uses an existing secondary range with this ID.
|
17531
17781
|
"""
|
17782
|
+
subnetwork: NotRequired[pulumi.Input[_builtins.str]]
|
17783
|
+
"""
|
17784
|
+
The subnetwork path for the node pool. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`. If the cluster is associated with multiple subnetworks, the subnetwork for the node pool is picked based on the IP utilization during node pool creation and is immutable
|
17785
|
+
"""
|
17532
17786
|
elif False:
|
17533
17787
|
NodePoolNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
17534
17788
|
|
@@ -17542,7 +17796,8 @@ class NodePoolNetworkConfigArgs:
|
|
17542
17796
|
network_performance_config: Optional[pulumi.Input['NodePoolNetworkConfigNetworkPerformanceConfigArgs']] = None,
|
17543
17797
|
pod_cidr_overprovision_config: Optional[pulumi.Input['NodePoolNetworkConfigPodCidrOverprovisionConfigArgs']] = None,
|
17544
17798
|
pod_ipv4_cidr_block: Optional[pulumi.Input[_builtins.str]] = None,
|
17545
|
-
pod_range: Optional[pulumi.Input[_builtins.str]] = None
|
17799
|
+
pod_range: Optional[pulumi.Input[_builtins.str]] = None,
|
17800
|
+
subnetwork: Optional[pulumi.Input[_builtins.str]] = None):
|
17546
17801
|
"""
|
17547
17802
|
:param pulumi.Input[Sequence[pulumi.Input['NodePoolNetworkConfigAdditionalNodeNetworkConfigArgs']]] additional_node_network_configs: We specify the additional node networks for this node pool using this list. Each node network corresponds to an additional interface.
|
17548
17803
|
Structure is documented below
|
@@ -17554,6 +17809,7 @@ class NodePoolNetworkConfigArgs:
|
|
17554
17809
|
:param pulumi.Input['NodePoolNetworkConfigPodCidrOverprovisionConfigArgs'] pod_cidr_overprovision_config: Configuration for node-pool level pod cidr overprovision. If not set, the cluster level setting will be inherited. Structure is documented below.
|
17555
17810
|
:param pulumi.Input[_builtins.str] pod_ipv4_cidr_block: The IP address range for pod IPs in this node pool. Only applicable if createPodRange is true. Set to blank to have a range chosen with the default size. Set to /netmask (e.g. /14) to have a range chosen with a specific netmask. Set to a CIDR notation (e.g. 10.96.0.0/14) to pick a specific range to use.
|
17556
17811
|
:param pulumi.Input[_builtins.str] pod_range: The ID of the secondary range for pod IPs. If `create_pod_range` is true, this ID is used for the new range. If `create_pod_range` is false, uses an existing secondary range with this ID.
|
17812
|
+
:param pulumi.Input[_builtins.str] subnetwork: The subnetwork path for the node pool. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`. If the cluster is associated with multiple subnetworks, the subnetwork for the node pool is picked based on the IP utilization during node pool creation and is immutable
|
17557
17813
|
"""
|
17558
17814
|
if additional_node_network_configs is not None:
|
17559
17815
|
pulumi.set(__self__, "additional_node_network_configs", additional_node_network_configs)
|
@@ -17571,6 +17827,8 @@ class NodePoolNetworkConfigArgs:
|
|
17571
17827
|
pulumi.set(__self__, "pod_ipv4_cidr_block", pod_ipv4_cidr_block)
|
17572
17828
|
if pod_range is not None:
|
17573
17829
|
pulumi.set(__self__, "pod_range", pod_range)
|
17830
|
+
if subnetwork is not None:
|
17831
|
+
pulumi.set(__self__, "subnetwork", subnetwork)
|
17574
17832
|
|
17575
17833
|
@_builtins.property
|
17576
17834
|
@pulumi.getter(name="additionalNodeNetworkConfigs")
|
@@ -17670,6 +17928,18 @@ class NodePoolNetworkConfigArgs:
|
|
17670
17928
|
def pod_range(self, value: Optional[pulumi.Input[_builtins.str]]):
|
17671
17929
|
pulumi.set(self, "pod_range", value)
|
17672
17930
|
|
17931
|
+
@_builtins.property
|
17932
|
+
@pulumi.getter
|
17933
|
+
def subnetwork(self) -> Optional[pulumi.Input[_builtins.str]]:
|
17934
|
+
"""
|
17935
|
+
The subnetwork path for the node pool. Format: `projects/{project}/regions/{region}/subnetworks/{subnetwork}`. If the cluster is associated with multiple subnetworks, the subnetwork for the node pool is picked based on the IP utilization during node pool creation and is immutable
|
17936
|
+
"""
|
17937
|
+
return pulumi.get(self, "subnetwork")
|
17938
|
+
|
17939
|
+
@subnetwork.setter
|
17940
|
+
def subnetwork(self, value: Optional[pulumi.Input[_builtins.str]]):
|
17941
|
+
pulumi.set(self, "subnetwork", value)
|
17942
|
+
|
17673
17943
|
|
17674
17944
|
if not MYPY:
|
17675
17945
|
class NodePoolNetworkConfigAdditionalNodeNetworkConfigArgsDict(TypedDict):
|