pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.11.0a1734385115__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 +91 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +128 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +28 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- 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/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +4 -0
- pulumi_gcp/networksecurity/_inputs.py +115 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +70 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +188 -6
- pulumi_gcp/tpu/outputs.py +164 -4
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
pulumi_gcp/config/vars.py
CHANGED
@@ -385,6 +385,10 @@ class _ExportableConfig(types.ModuleType):
|
|
385
385
|
def firestore_custom_endpoint(self) -> Optional[str]:
|
386
386
|
return __config__.get('firestoreCustomEndpoint')
|
387
387
|
|
388
|
+
@property
|
389
|
+
def gemini_custom_endpoint(self) -> Optional[str]:
|
390
|
+
return __config__.get('geminiCustomEndpoint')
|
391
|
+
|
388
392
|
@property
|
389
393
|
def gke_backup_custom_endpoint(self) -> Optional[str]:
|
390
394
|
return __config__.get('gkeBackupCustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -229,6 +229,8 @@ __all__ = [
|
|
229
229
|
'ClusterDnsConfigArgsDict',
|
230
230
|
'ClusterEnableK8sBetaApisArgs',
|
231
231
|
'ClusterEnableK8sBetaApisArgsDict',
|
232
|
+
'ClusterEnterpriseConfigArgs',
|
233
|
+
'ClusterEnterpriseConfigArgsDict',
|
232
234
|
'ClusterFleetArgs',
|
233
235
|
'ClusterFleetArgsDict',
|
234
236
|
'ClusterGatewayApiConfigArgs',
|
@@ -333,6 +335,8 @@ __all__ = [
|
|
333
335
|
'ClusterNodePoolArgsDict',
|
334
336
|
'ClusterNodePoolAutoConfigArgs',
|
335
337
|
'ClusterNodePoolAutoConfigArgsDict',
|
338
|
+
'ClusterNodePoolAutoConfigLinuxNodeConfigArgs',
|
339
|
+
'ClusterNodePoolAutoConfigLinuxNodeConfigArgsDict',
|
336
340
|
'ClusterNodePoolAutoConfigNetworkTagsArgs',
|
337
341
|
'ClusterNodePoolAutoConfigNetworkTagsArgsDict',
|
338
342
|
'ClusterNodePoolAutoConfigNodeKubeletConfigArgs',
|
@@ -5770,7 +5774,7 @@ if not MYPY:
|
|
5770
5774
|
"""
|
5771
5775
|
disk_type: NotRequired[pulumi.Input[str]]
|
5772
5776
|
"""
|
5773
|
-
Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or '
|
5777
|
+
Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd', 'pd-balanced', or 'hyperdisk-balanced'). Defaults to `hyperdisk-balanced` if `hyperdisk-balanced` is supported and `pd-balanced` is not supported for the machine type; otherwise defaults to `pd-balanced`.
|
5774
5778
|
"""
|
5775
5779
|
image_type: NotRequired[pulumi.Input[str]]
|
5776
5780
|
"""
|
@@ -5823,7 +5827,7 @@ class ClusterClusterAutoscalingAutoProvisioningDefaultsArgs:
|
|
5823
5827
|
"""
|
5824
5828
|
:param pulumi.Input[str] boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool. This should be of the form projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For more information about protecting resources with Cloud KMS Keys please see: https://cloud.google.com/compute/docs/disks/customer-managed-encryption
|
5825
5829
|
:param pulumi.Input[int] disk_size: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB. Defaults to `100`
|
5826
|
-
:param pulumi.Input[str] disk_type: Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or '
|
5830
|
+
:param pulumi.Input[str] disk_type: Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd', 'pd-balanced', or 'hyperdisk-balanced'). Defaults to `hyperdisk-balanced` if `hyperdisk-balanced` is supported and `pd-balanced` is not supported for the machine type; otherwise defaults to `pd-balanced`.
|
5827
5831
|
:param pulumi.Input[str] image_type: The default image type used by NAP once a new node pool is being created. Please note that according to the [official documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning#default-image-type) the value must be one of the [COS_CONTAINERD, COS, UBUNTU_CONTAINERD, UBUNTU]. __NOTE__ : COS AND UBUNTU are deprecated as of `GKE 1.24`
|
5828
5832
|
:param pulumi.Input['ClusterClusterAutoscalingAutoProvisioningDefaultsManagementArgs'] management: NodeManagement configuration for this NodePool. Structure is documented below.
|
5829
5833
|
:param pulumi.Input[str] min_cpu_platform: Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the
|
@@ -5885,7 +5889,7 @@ class ClusterClusterAutoscalingAutoProvisioningDefaultsArgs:
|
|
5885
5889
|
@pulumi.getter(name="diskType")
|
5886
5890
|
def disk_type(self) -> Optional[pulumi.Input[str]]:
|
5887
5891
|
"""
|
5888
|
-
Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd' or '
|
5892
|
+
Type of the disk attached to each node (e.g. 'pd-standard', 'pd-ssd', 'pd-balanced', or 'hyperdisk-balanced'). Defaults to `hyperdisk-balanced` if `hyperdisk-balanced` is supported and `pd-balanced` is not supported for the machine type; otherwise defaults to `pd-balanced`.
|
5889
5893
|
"""
|
5890
5894
|
return pulumi.get(self, "disk_type")
|
5891
5895
|
|
@@ -6869,6 +6873,58 @@ class ClusterEnableK8sBetaApisArgs:
|
|
6869
6873
|
pulumi.set(self, "enabled_apis", value)
|
6870
6874
|
|
6871
6875
|
|
6876
|
+
if not MYPY:
|
6877
|
+
class ClusterEnterpriseConfigArgsDict(TypedDict):
|
6878
|
+
cluster_tier: NotRequired[pulumi.Input[str]]
|
6879
|
+
"""
|
6880
|
+
The effective tier of the cluster.
|
6881
|
+
"""
|
6882
|
+
desired_tier: NotRequired[pulumi.Input[str]]
|
6883
|
+
"""
|
6884
|
+
Sets the tier of the cluster. Available options include `STANDARD` and `ENTERPRISE`.
|
6885
|
+
"""
|
6886
|
+
elif False:
|
6887
|
+
ClusterEnterpriseConfigArgsDict: TypeAlias = Mapping[str, Any]
|
6888
|
+
|
6889
|
+
@pulumi.input_type
|
6890
|
+
class ClusterEnterpriseConfigArgs:
|
6891
|
+
def __init__(__self__, *,
|
6892
|
+
cluster_tier: Optional[pulumi.Input[str]] = None,
|
6893
|
+
desired_tier: Optional[pulumi.Input[str]] = None):
|
6894
|
+
"""
|
6895
|
+
:param pulumi.Input[str] cluster_tier: The effective tier of the cluster.
|
6896
|
+
:param pulumi.Input[str] desired_tier: Sets the tier of the cluster. Available options include `STANDARD` and `ENTERPRISE`.
|
6897
|
+
"""
|
6898
|
+
if cluster_tier is not None:
|
6899
|
+
pulumi.set(__self__, "cluster_tier", cluster_tier)
|
6900
|
+
if desired_tier is not None:
|
6901
|
+
pulumi.set(__self__, "desired_tier", desired_tier)
|
6902
|
+
|
6903
|
+
@property
|
6904
|
+
@pulumi.getter(name="clusterTier")
|
6905
|
+
def cluster_tier(self) -> Optional[pulumi.Input[str]]:
|
6906
|
+
"""
|
6907
|
+
The effective tier of the cluster.
|
6908
|
+
"""
|
6909
|
+
return pulumi.get(self, "cluster_tier")
|
6910
|
+
|
6911
|
+
@cluster_tier.setter
|
6912
|
+
def cluster_tier(self, value: Optional[pulumi.Input[str]]):
|
6913
|
+
pulumi.set(self, "cluster_tier", value)
|
6914
|
+
|
6915
|
+
@property
|
6916
|
+
@pulumi.getter(name="desiredTier")
|
6917
|
+
def desired_tier(self) -> Optional[pulumi.Input[str]]:
|
6918
|
+
"""
|
6919
|
+
Sets the tier of the cluster. Available options include `STANDARD` and `ENTERPRISE`.
|
6920
|
+
"""
|
6921
|
+
return pulumi.get(self, "desired_tier")
|
6922
|
+
|
6923
|
+
@desired_tier.setter
|
6924
|
+
def desired_tier(self, value: Optional[pulumi.Input[str]]):
|
6925
|
+
pulumi.set(self, "desired_tier", value)
|
6926
|
+
|
6927
|
+
|
6872
6928
|
if not MYPY:
|
6873
6929
|
class ClusterFleetArgsDict(TypedDict):
|
6874
6930
|
membership: NotRequired[pulumi.Input[str]]
|
@@ -8418,6 +8474,13 @@ if not MYPY:
|
|
8418
8474
|
The amount of local SSD disks that will be
|
8419
8475
|
attached to each cluster node. Defaults to 0.
|
8420
8476
|
"""
|
8477
|
+
local_ssd_encryption_mode: NotRequired[pulumi.Input[str]]
|
8478
|
+
"""
|
8479
|
+
Possible Local SSD encryption modes:
|
8480
|
+
Accepted values are:
|
8481
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
8482
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
8483
|
+
"""
|
8421
8484
|
logging_variant: NotRequired[pulumi.Input[str]]
|
8422
8485
|
"""
|
8423
8486
|
Parameter for specifying the type of logging agent used in a node pool. This will override any cluster-wide default value. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
@@ -8554,6 +8617,7 @@ class ClusterNodeConfigArgs:
|
|
8554
8617
|
linux_node_config: Optional[pulumi.Input['ClusterNodeConfigLinuxNodeConfigArgs']] = None,
|
8555
8618
|
local_nvme_ssd_block_config: Optional[pulumi.Input['ClusterNodeConfigLocalNvmeSsdBlockConfigArgs']] = None,
|
8556
8619
|
local_ssd_count: Optional[pulumi.Input[int]] = None,
|
8620
|
+
local_ssd_encryption_mode: Optional[pulumi.Input[str]] = None,
|
8557
8621
|
logging_variant: Optional[pulumi.Input[str]] = None,
|
8558
8622
|
machine_type: Optional[pulumi.Input[str]] = None,
|
8559
8623
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -8625,6 +8689,10 @@ class ClusterNodeConfigArgs:
|
|
8625
8689
|
:param pulumi.Input['ClusterNodeConfigLocalNvmeSsdBlockConfigArgs'] local_nvme_ssd_block_config: Parameters for the local NVMe SSDs. Structure is documented below.
|
8626
8690
|
:param pulumi.Input[int] local_ssd_count: The amount of local SSD disks that will be
|
8627
8691
|
attached to each cluster node. Defaults to 0.
|
8692
|
+
:param pulumi.Input[str] local_ssd_encryption_mode: Possible Local SSD encryption modes:
|
8693
|
+
Accepted values are:
|
8694
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
8695
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
8628
8696
|
:param pulumi.Input[str] logging_variant: Parameter for specifying the type of logging agent used in a node pool. This will override any cluster-wide default value. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
8629
8697
|
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type.
|
8630
8698
|
Defaults to `e2-medium`. To create a custom machine type, value should be set as specified
|
@@ -8717,6 +8785,8 @@ class ClusterNodeConfigArgs:
|
|
8717
8785
|
pulumi.set(__self__, "local_nvme_ssd_block_config", local_nvme_ssd_block_config)
|
8718
8786
|
if local_ssd_count is not None:
|
8719
8787
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
8788
|
+
if local_ssd_encryption_mode is not None:
|
8789
|
+
pulumi.set(__self__, "local_ssd_encryption_mode", local_ssd_encryption_mode)
|
8720
8790
|
if logging_variant is not None:
|
8721
8791
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
8722
8792
|
if machine_type is not None:
|
@@ -9039,6 +9109,21 @@ class ClusterNodeConfigArgs:
|
|
9039
9109
|
def local_ssd_count(self, value: Optional[pulumi.Input[int]]):
|
9040
9110
|
pulumi.set(self, "local_ssd_count", value)
|
9041
9111
|
|
9112
|
+
@property
|
9113
|
+
@pulumi.getter(name="localSsdEncryptionMode")
|
9114
|
+
def local_ssd_encryption_mode(self) -> Optional[pulumi.Input[str]]:
|
9115
|
+
"""
|
9116
|
+
Possible Local SSD encryption modes:
|
9117
|
+
Accepted values are:
|
9118
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
9119
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
9120
|
+
"""
|
9121
|
+
return pulumi.get(self, "local_ssd_encryption_mode")
|
9122
|
+
|
9123
|
+
@local_ssd_encryption_mode.setter
|
9124
|
+
def local_ssd_encryption_mode(self, value: Optional[pulumi.Input[str]]):
|
9125
|
+
pulumi.set(self, "local_ssd_encryption_mode", value)
|
9126
|
+
|
9042
9127
|
@property
|
9043
9128
|
@pulumi.getter(name="loggingVariant")
|
9044
9129
|
def logging_variant(self) -> Optional[pulumi.Input[str]]:
|
@@ -11198,6 +11283,10 @@ class ClusterNodePoolArgs:
|
|
11198
11283
|
|
11199
11284
|
if not MYPY:
|
11200
11285
|
class ClusterNodePoolAutoConfigArgsDict(TypedDict):
|
11286
|
+
linux_node_config: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigLinuxNodeConfigArgsDict']]
|
11287
|
+
"""
|
11288
|
+
Linux system configuration for the cluster's automatically provisioned node pools. Only `cgroup_mode` field is supported in `node_pool_auto_config`. Structure is documented below.
|
11289
|
+
"""
|
11201
11290
|
network_tags: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgsDict']]
|
11202
11291
|
"""
|
11203
11292
|
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
@@ -11217,15 +11306,19 @@ elif False:
|
|
11217
11306
|
@pulumi.input_type
|
11218
11307
|
class ClusterNodePoolAutoConfigArgs:
|
11219
11308
|
def __init__(__self__, *,
|
11309
|
+
linux_node_config: Optional[pulumi.Input['ClusterNodePoolAutoConfigLinuxNodeConfigArgs']] = None,
|
11220
11310
|
network_tags: Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']] = None,
|
11221
11311
|
node_kubelet_config: Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']] = None,
|
11222
11312
|
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
11223
11313
|
"""
|
11314
|
+
:param pulumi.Input['ClusterNodePoolAutoConfigLinuxNodeConfigArgs'] linux_node_config: Linux system configuration for the cluster's automatically provisioned node pools. Only `cgroup_mode` field is supported in `node_pool_auto_config`. Structure is documented below.
|
11224
11315
|
:param pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs'] network_tags: The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
11225
11316
|
:param pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs'] node_kubelet_config: Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
11226
11317
|
Structure is documented below.
|
11227
11318
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
11228
11319
|
"""
|
11320
|
+
if linux_node_config is not None:
|
11321
|
+
pulumi.set(__self__, "linux_node_config", linux_node_config)
|
11229
11322
|
if network_tags is not None:
|
11230
11323
|
pulumi.set(__self__, "network_tags", network_tags)
|
11231
11324
|
if node_kubelet_config is not None:
|
@@ -11233,6 +11326,18 @@ class ClusterNodePoolAutoConfigArgs:
|
|
11233
11326
|
if resource_manager_tags is not None:
|
11234
11327
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
11235
11328
|
|
11329
|
+
@property
|
11330
|
+
@pulumi.getter(name="linuxNodeConfig")
|
11331
|
+
def linux_node_config(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigLinuxNodeConfigArgs']]:
|
11332
|
+
"""
|
11333
|
+
Linux system configuration for the cluster's automatically provisioned node pools. Only `cgroup_mode` field is supported in `node_pool_auto_config`. Structure is documented below.
|
11334
|
+
"""
|
11335
|
+
return pulumi.get(self, "linux_node_config")
|
11336
|
+
|
11337
|
+
@linux_node_config.setter
|
11338
|
+
def linux_node_config(self, value: Optional[pulumi.Input['ClusterNodePoolAutoConfigLinuxNodeConfigArgs']]):
|
11339
|
+
pulumi.set(self, "linux_node_config", value)
|
11340
|
+
|
11236
11341
|
@property
|
11237
11342
|
@pulumi.getter(name="networkTags")
|
11238
11343
|
def network_tags(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']]:
|
@@ -11271,6 +11376,50 @@ class ClusterNodePoolAutoConfigArgs:
|
|
11271
11376
|
pulumi.set(self, "resource_manager_tags", value)
|
11272
11377
|
|
11273
11378
|
|
11379
|
+
if not MYPY:
|
11380
|
+
class ClusterNodePoolAutoConfigLinuxNodeConfigArgsDict(TypedDict):
|
11381
|
+
cgroup_mode: NotRequired[pulumi.Input[str]]
|
11382
|
+
"""
|
11383
|
+
Possible cgroup modes that can be used.
|
11384
|
+
Accepted values are:
|
11385
|
+
* `CGROUP_MODE_UNSPECIFIED`: CGROUP_MODE_UNSPECIFIED is when unspecified cgroup configuration is used. The default for the GKE node OS image will be used.
|
11386
|
+
* `CGROUP_MODE_V1`: CGROUP_MODE_V1 specifies to use cgroupv1 for the cgroup configuration on the node image.
|
11387
|
+
* `CGROUP_MODE_V2`: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image.
|
11388
|
+
"""
|
11389
|
+
elif False:
|
11390
|
+
ClusterNodePoolAutoConfigLinuxNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
11391
|
+
|
11392
|
+
@pulumi.input_type
|
11393
|
+
class ClusterNodePoolAutoConfigLinuxNodeConfigArgs:
|
11394
|
+
def __init__(__self__, *,
|
11395
|
+
cgroup_mode: Optional[pulumi.Input[str]] = None):
|
11396
|
+
"""
|
11397
|
+
:param pulumi.Input[str] cgroup_mode: Possible cgroup modes that can be used.
|
11398
|
+
Accepted values are:
|
11399
|
+
* `CGROUP_MODE_UNSPECIFIED`: CGROUP_MODE_UNSPECIFIED is when unspecified cgroup configuration is used. The default for the GKE node OS image will be used.
|
11400
|
+
* `CGROUP_MODE_V1`: CGROUP_MODE_V1 specifies to use cgroupv1 for the cgroup configuration on the node image.
|
11401
|
+
* `CGROUP_MODE_V2`: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image.
|
11402
|
+
"""
|
11403
|
+
if cgroup_mode is not None:
|
11404
|
+
pulumi.set(__self__, "cgroup_mode", cgroup_mode)
|
11405
|
+
|
11406
|
+
@property
|
11407
|
+
@pulumi.getter(name="cgroupMode")
|
11408
|
+
def cgroup_mode(self) -> Optional[pulumi.Input[str]]:
|
11409
|
+
"""
|
11410
|
+
Possible cgroup modes that can be used.
|
11411
|
+
Accepted values are:
|
11412
|
+
* `CGROUP_MODE_UNSPECIFIED`: CGROUP_MODE_UNSPECIFIED is when unspecified cgroup configuration is used. The default for the GKE node OS image will be used.
|
11413
|
+
* `CGROUP_MODE_V1`: CGROUP_MODE_V1 specifies to use cgroupv1 for the cgroup configuration on the node image.
|
11414
|
+
* `CGROUP_MODE_V2`: CGROUP_MODE_V2 specifies to use cgroupv2 for the cgroup configuration on the node image.
|
11415
|
+
"""
|
11416
|
+
return pulumi.get(self, "cgroup_mode")
|
11417
|
+
|
11418
|
+
@cgroup_mode.setter
|
11419
|
+
def cgroup_mode(self, value: Optional[pulumi.Input[str]]):
|
11420
|
+
pulumi.set(self, "cgroup_mode", value)
|
11421
|
+
|
11422
|
+
|
11274
11423
|
if not MYPY:
|
11275
11424
|
class ClusterNodePoolAutoConfigNetworkTagsArgsDict(TypedDict):
|
11276
11425
|
tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
@@ -12315,6 +12464,13 @@ if not MYPY:
|
|
12315
12464
|
The amount of local SSD disks that will be
|
12316
12465
|
attached to each cluster node. Defaults to 0.
|
12317
12466
|
"""
|
12467
|
+
local_ssd_encryption_mode: NotRequired[pulumi.Input[str]]
|
12468
|
+
"""
|
12469
|
+
Possible Local SSD encryption modes:
|
12470
|
+
Accepted values are:
|
12471
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
12472
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
12473
|
+
"""
|
12318
12474
|
logging_variant: NotRequired[pulumi.Input[str]]
|
12319
12475
|
"""
|
12320
12476
|
Parameter for specifying the type of logging agent used in a node pool. This will override any cluster-wide default value. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
@@ -12451,6 +12607,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12451
12607
|
linux_node_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigLinuxNodeConfigArgs']] = None,
|
12452
12608
|
local_nvme_ssd_block_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigLocalNvmeSsdBlockConfigArgs']] = None,
|
12453
12609
|
local_ssd_count: Optional[pulumi.Input[int]] = None,
|
12610
|
+
local_ssd_encryption_mode: Optional[pulumi.Input[str]] = None,
|
12454
12611
|
logging_variant: Optional[pulumi.Input[str]] = None,
|
12455
12612
|
machine_type: Optional[pulumi.Input[str]] = None,
|
12456
12613
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -12522,6 +12679,10 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12522
12679
|
:param pulumi.Input['ClusterNodePoolNodeConfigLocalNvmeSsdBlockConfigArgs'] local_nvme_ssd_block_config: Parameters for the local NVMe SSDs. Structure is documented below.
|
12523
12680
|
:param pulumi.Input[int] local_ssd_count: The amount of local SSD disks that will be
|
12524
12681
|
attached to each cluster node. Defaults to 0.
|
12682
|
+
:param pulumi.Input[str] local_ssd_encryption_mode: Possible Local SSD encryption modes:
|
12683
|
+
Accepted values are:
|
12684
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
12685
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
12525
12686
|
:param pulumi.Input[str] logging_variant: Parameter for specifying the type of logging agent used in a node pool. This will override any cluster-wide default value. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
12526
12687
|
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type.
|
12527
12688
|
Defaults to `e2-medium`. To create a custom machine type, value should be set as specified
|
@@ -12614,6 +12775,8 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12614
12775
|
pulumi.set(__self__, "local_nvme_ssd_block_config", local_nvme_ssd_block_config)
|
12615
12776
|
if local_ssd_count is not None:
|
12616
12777
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
12778
|
+
if local_ssd_encryption_mode is not None:
|
12779
|
+
pulumi.set(__self__, "local_ssd_encryption_mode", local_ssd_encryption_mode)
|
12617
12780
|
if logging_variant is not None:
|
12618
12781
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
12619
12782
|
if machine_type is not None:
|
@@ -12936,6 +13099,21 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12936
13099
|
def local_ssd_count(self, value: Optional[pulumi.Input[int]]):
|
12937
13100
|
pulumi.set(self, "local_ssd_count", value)
|
12938
13101
|
|
13102
|
+
@property
|
13103
|
+
@pulumi.getter(name="localSsdEncryptionMode")
|
13104
|
+
def local_ssd_encryption_mode(self) -> Optional[pulumi.Input[str]]:
|
13105
|
+
"""
|
13106
|
+
Possible Local SSD encryption modes:
|
13107
|
+
Accepted values are:
|
13108
|
+
* `STANDARD_ENCRYPTION`: The given node will be encrypted using keys managed by Google infrastructure and the keys wll be deleted when the node is deleted.
|
13109
|
+
* `EPHEMERAL_KEY_ENCRYPTION`: The given node will opt-in for using ephemeral key for encrypting Local SSDs. The Local SSDs will not be able to recover data in case of node crash.
|
13110
|
+
"""
|
13111
|
+
return pulumi.get(self, "local_ssd_encryption_mode")
|
13112
|
+
|
13113
|
+
@local_ssd_encryption_mode.setter
|
13114
|
+
def local_ssd_encryption_mode(self, value: Optional[pulumi.Input[str]]):
|
13115
|
+
pulumi.set(self, "local_ssd_encryption_mode", value)
|
13116
|
+
|
12939
13117
|
@property
|
12940
13118
|
@pulumi.getter(name="loggingVariant")
|
12941
13119
|
def logging_variant(self) -> Optional[pulumi.Input[str]]:
|
@@ -16796,6 +16974,10 @@ if not MYPY:
|
|
16796
16974
|
"""
|
16797
16975
|
The number of local SSD disks to be attached to the node.
|
16798
16976
|
"""
|
16977
|
+
local_ssd_encryption_mode: NotRequired[pulumi.Input[str]]
|
16978
|
+
"""
|
16979
|
+
LocalSsdEncryptionMode specified the method used for encrypting the local SSDs attached to the node.
|
16980
|
+
"""
|
16799
16981
|
logging_variant: NotRequired[pulumi.Input[str]]
|
16800
16982
|
"""
|
16801
16983
|
Type of logging agent that is used as the default value for node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT.
|
@@ -16906,6 +17088,7 @@ class NodePoolNodeConfigArgs:
|
|
16906
17088
|
linux_node_config: Optional[pulumi.Input['NodePoolNodeConfigLinuxNodeConfigArgs']] = None,
|
16907
17089
|
local_nvme_ssd_block_config: Optional[pulumi.Input['NodePoolNodeConfigLocalNvmeSsdBlockConfigArgs']] = None,
|
16908
17090
|
local_ssd_count: Optional[pulumi.Input[int]] = None,
|
17091
|
+
local_ssd_encryption_mode: Optional[pulumi.Input[str]] = None,
|
16909
17092
|
logging_variant: Optional[pulumi.Input[str]] = None,
|
16910
17093
|
machine_type: Optional[pulumi.Input[str]] = None,
|
16911
17094
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -16948,6 +17131,7 @@ class NodePoolNodeConfigArgs:
|
|
16948
17131
|
:param pulumi.Input['NodePoolNodeConfigLinuxNodeConfigArgs'] linux_node_config: Parameters that can be configured on Linux nodes.
|
16949
17132
|
:param pulumi.Input['NodePoolNodeConfigLocalNvmeSsdBlockConfigArgs'] local_nvme_ssd_block_config: Parameters for raw-block local NVMe SSDs.
|
16950
17133
|
:param pulumi.Input[int] local_ssd_count: The number of local SSD disks to be attached to the node.
|
17134
|
+
:param pulumi.Input[str] local_ssd_encryption_mode: LocalSsdEncryptionMode specified the method used for encrypting the local SSDs attached to the node.
|
16951
17135
|
:param pulumi.Input[str] logging_variant: Type of logging agent that is used as the default value for node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT.
|
16952
17136
|
:param pulumi.Input[str] machine_type: The name of a Google Compute Engine machine type.
|
16953
17137
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] metadata: The metadata key/value pairs assigned to instances in the cluster.
|
@@ -17014,6 +17198,8 @@ class NodePoolNodeConfigArgs:
|
|
17014
17198
|
pulumi.set(__self__, "local_nvme_ssd_block_config", local_nvme_ssd_block_config)
|
17015
17199
|
if local_ssd_count is not None:
|
17016
17200
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
17201
|
+
if local_ssd_encryption_mode is not None:
|
17202
|
+
pulumi.set(__self__, "local_ssd_encryption_mode", local_ssd_encryption_mode)
|
17017
17203
|
if logging_variant is not None:
|
17018
17204
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
17019
17205
|
if machine_type is not None:
|
@@ -17307,6 +17493,18 @@ class NodePoolNodeConfigArgs:
|
|
17307
17493
|
def local_ssd_count(self, value: Optional[pulumi.Input[int]]):
|
17308
17494
|
pulumi.set(self, "local_ssd_count", value)
|
17309
17495
|
|
17496
|
+
@property
|
17497
|
+
@pulumi.getter(name="localSsdEncryptionMode")
|
17498
|
+
def local_ssd_encryption_mode(self) -> Optional[pulumi.Input[str]]:
|
17499
|
+
"""
|
17500
|
+
LocalSsdEncryptionMode specified the method used for encrypting the local SSDs attached to the node.
|
17501
|
+
"""
|
17502
|
+
return pulumi.get(self, "local_ssd_encryption_mode")
|
17503
|
+
|
17504
|
+
@local_ssd_encryption_mode.setter
|
17505
|
+
def local_ssd_encryption_mode(self, value: Optional[pulumi.Input[str]]):
|
17506
|
+
pulumi.set(self, "local_ssd_encryption_mode", value)
|
17507
|
+
|
17310
17508
|
@property
|
17311
17509
|
@pulumi.getter(name="loggingVariant")
|
17312
17510
|
def logging_variant(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/container/cluster.py
CHANGED
@@ -49,6 +49,7 @@ class ClusterArgs:
|
|
49
49
|
enable_multi_networking: Optional[pulumi.Input[bool]] = None,
|
50
50
|
enable_shielded_nodes: Optional[pulumi.Input[bool]] = None,
|
51
51
|
enable_tpu: Optional[pulumi.Input[bool]] = None,
|
52
|
+
enterprise_config: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']] = None,
|
52
53
|
fleet: Optional[pulumi.Input['ClusterFleetArgs']] = None,
|
53
54
|
gateway_api_config: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']] = None,
|
54
55
|
identity_service_config: Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']] = None,
|
@@ -153,6 +154,10 @@ class ClusterArgs:
|
|
153
154
|
:param pulumi.Input[bool] enable_shielded_nodes: Enable Shielded Nodes features on all nodes in this cluster. Defaults to `true`.
|
154
155
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
155
156
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
157
|
+
:param pulumi.Input['ClusterEnterpriseConfigArgs'] enterprise_config: Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
158
|
+
|
159
|
+
|
160
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
156
161
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
157
162
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
158
163
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
@@ -300,8 +305,6 @@ class ClusterArgs:
|
|
300
305
|
:param pulumi.Input['ClusterVerticalPodAutoscalingArgs'] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
301
306
|
Structure is documented below.
|
302
307
|
:param pulumi.Input['ClusterWorkloadAltsConfigArgs'] workload_alts_config: Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
303
|
-
|
304
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
305
308
|
:param pulumi.Input['ClusterWorkloadIdentityConfigArgs'] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
306
309
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
307
310
|
Structure is documented below.
|
@@ -362,6 +365,8 @@ class ClusterArgs:
|
|
362
365
|
pulumi.set(__self__, "enable_shielded_nodes", enable_shielded_nodes)
|
363
366
|
if enable_tpu is not None:
|
364
367
|
pulumi.set(__self__, "enable_tpu", enable_tpu)
|
368
|
+
if enterprise_config is not None:
|
369
|
+
pulumi.set(__self__, "enterprise_config", enterprise_config)
|
365
370
|
if fleet is not None:
|
366
371
|
pulumi.set(__self__, "fleet", fleet)
|
367
372
|
if gateway_api_config is not None:
|
@@ -815,6 +820,21 @@ class ClusterArgs:
|
|
815
820
|
def enable_tpu(self, value: Optional[pulumi.Input[bool]]):
|
816
821
|
pulumi.set(self, "enable_tpu", value)
|
817
822
|
|
823
|
+
@property
|
824
|
+
@pulumi.getter(name="enterpriseConfig")
|
825
|
+
def enterprise_config(self) -> Optional[pulumi.Input['ClusterEnterpriseConfigArgs']]:
|
826
|
+
"""
|
827
|
+
Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
828
|
+
|
829
|
+
|
830
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
831
|
+
"""
|
832
|
+
return pulumi.get(self, "enterprise_config")
|
833
|
+
|
834
|
+
@enterprise_config.setter
|
835
|
+
def enterprise_config(self, value: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']]):
|
836
|
+
pulumi.set(self, "enterprise_config", value)
|
837
|
+
|
818
838
|
@property
|
819
839
|
@pulumi.getter
|
820
840
|
def fleet(self) -> Optional[pulumi.Input['ClusterFleetArgs']]:
|
@@ -1428,8 +1448,6 @@ class ClusterArgs:
|
|
1428
1448
|
def workload_alts_config(self) -> Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]:
|
1429
1449
|
"""
|
1430
1450
|
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
1431
|
-
|
1432
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1433
1451
|
"""
|
1434
1452
|
return pulumi.get(self, "workload_alts_config")
|
1435
1453
|
|
@@ -1485,6 +1503,7 @@ class _ClusterState:
|
|
1485
1503
|
enable_shielded_nodes: Optional[pulumi.Input[bool]] = None,
|
1486
1504
|
enable_tpu: Optional[pulumi.Input[bool]] = None,
|
1487
1505
|
endpoint: Optional[pulumi.Input[str]] = None,
|
1506
|
+
enterprise_config: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']] = None,
|
1488
1507
|
fleet: Optional[pulumi.Input['ClusterFleetArgs']] = None,
|
1489
1508
|
gateway_api_config: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']] = None,
|
1490
1509
|
identity_service_config: Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']] = None,
|
@@ -1598,6 +1617,10 @@ class _ClusterState:
|
|
1598
1617
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
1599
1618
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
1600
1619
|
:param pulumi.Input[str] endpoint: The IP address of this cluster's Kubernetes master.
|
1620
|
+
:param pulumi.Input['ClusterEnterpriseConfigArgs'] enterprise_config: Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
1621
|
+
|
1622
|
+
|
1623
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1601
1624
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
1602
1625
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
1603
1626
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
@@ -1758,8 +1781,6 @@ class _ClusterState:
|
|
1758
1781
|
:param pulumi.Input['ClusterVerticalPodAutoscalingArgs'] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
1759
1782
|
Structure is documented below.
|
1760
1783
|
:param pulumi.Input['ClusterWorkloadAltsConfigArgs'] workload_alts_config: Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
1761
|
-
|
1762
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1763
1784
|
:param pulumi.Input['ClusterWorkloadIdentityConfigArgs'] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
1764
1785
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
1765
1786
|
Structure is documented below.
|
@@ -1824,6 +1845,8 @@ class _ClusterState:
|
|
1824
1845
|
pulumi.set(__self__, "enable_tpu", enable_tpu)
|
1825
1846
|
if endpoint is not None:
|
1826
1847
|
pulumi.set(__self__, "endpoint", endpoint)
|
1848
|
+
if enterprise_config is not None:
|
1849
|
+
pulumi.set(__self__, "enterprise_config", enterprise_config)
|
1827
1850
|
if fleet is not None:
|
1828
1851
|
pulumi.set(__self__, "fleet", fleet)
|
1829
1852
|
if gateway_api_config is not None:
|
@@ -2315,6 +2338,21 @@ class _ClusterState:
|
|
2315
2338
|
def endpoint(self, value: Optional[pulumi.Input[str]]):
|
2316
2339
|
pulumi.set(self, "endpoint", value)
|
2317
2340
|
|
2341
|
+
@property
|
2342
|
+
@pulumi.getter(name="enterpriseConfig")
|
2343
|
+
def enterprise_config(self) -> Optional[pulumi.Input['ClusterEnterpriseConfigArgs']]:
|
2344
|
+
"""
|
2345
|
+
Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
2346
|
+
|
2347
|
+
|
2348
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
2349
|
+
"""
|
2350
|
+
return pulumi.get(self, "enterprise_config")
|
2351
|
+
|
2352
|
+
@enterprise_config.setter
|
2353
|
+
def enterprise_config(self, value: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']]):
|
2354
|
+
pulumi.set(self, "enterprise_config", value)
|
2355
|
+
|
2318
2356
|
@property
|
2319
2357
|
@pulumi.getter
|
2320
2358
|
def fleet(self) -> Optional[pulumi.Input['ClusterFleetArgs']]:
|
@@ -3016,8 +3054,6 @@ class _ClusterState:
|
|
3016
3054
|
def workload_alts_config(self) -> Optional[pulumi.Input['ClusterWorkloadAltsConfigArgs']]:
|
3017
3055
|
"""
|
3018
3056
|
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
3019
|
-
|
3020
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3021
3057
|
"""
|
3022
3058
|
return pulumi.get(self, "workload_alts_config")
|
3023
3059
|
|
@@ -3073,6 +3109,7 @@ class Cluster(pulumi.CustomResource):
|
|
3073
3109
|
enable_multi_networking: Optional[pulumi.Input[bool]] = None,
|
3074
3110
|
enable_shielded_nodes: Optional[pulumi.Input[bool]] = None,
|
3075
3111
|
enable_tpu: Optional[pulumi.Input[bool]] = None,
|
3112
|
+
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3076
3113
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3077
3114
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
3078
3115
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
@@ -3299,6 +3336,10 @@ class Cluster(pulumi.CustomResource):
|
|
3299
3336
|
:param pulumi.Input[bool] enable_shielded_nodes: Enable Shielded Nodes features on all nodes in this cluster. Defaults to `true`.
|
3300
3337
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
3301
3338
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
3339
|
+
:param pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']] enterprise_config: Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
3340
|
+
|
3341
|
+
|
3342
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3302
3343
|
:param pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
3303
3344
|
:param pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
3304
3345
|
:param pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']] identity_service_config: . Structure is documented below.
|
@@ -3446,8 +3487,6 @@ class Cluster(pulumi.CustomResource):
|
|
3446
3487
|
:param pulumi.Input[Union['ClusterVerticalPodAutoscalingArgs', 'ClusterVerticalPodAutoscalingArgsDict']] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
3447
3488
|
Structure is documented below.
|
3448
3489
|
:param pulumi.Input[Union['ClusterWorkloadAltsConfigArgs', 'ClusterWorkloadAltsConfigArgsDict']] workload_alts_config: Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
3449
|
-
|
3450
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3451
3490
|
:param pulumi.Input[Union['ClusterWorkloadIdentityConfigArgs', 'ClusterWorkloadIdentityConfigArgsDict']] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
3452
3491
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
3453
3492
|
Structure is documented below.
|
@@ -3622,6 +3661,7 @@ class Cluster(pulumi.CustomResource):
|
|
3622
3661
|
enable_multi_networking: Optional[pulumi.Input[bool]] = None,
|
3623
3662
|
enable_shielded_nodes: Optional[pulumi.Input[bool]] = None,
|
3624
3663
|
enable_tpu: Optional[pulumi.Input[bool]] = None,
|
3664
|
+
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3625
3665
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3626
3666
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
3627
3667
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
@@ -3703,6 +3743,7 @@ class Cluster(pulumi.CustomResource):
|
|
3703
3743
|
__props__.__dict__["enable_multi_networking"] = enable_multi_networking
|
3704
3744
|
__props__.__dict__["enable_shielded_nodes"] = enable_shielded_nodes
|
3705
3745
|
__props__.__dict__["enable_tpu"] = enable_tpu
|
3746
|
+
__props__.__dict__["enterprise_config"] = enterprise_config
|
3706
3747
|
__props__.__dict__["fleet"] = fleet
|
3707
3748
|
__props__.__dict__["gateway_api_config"] = gateway_api_config
|
3708
3749
|
__props__.__dict__["identity_service_config"] = identity_service_config
|
@@ -3798,6 +3839,7 @@ class Cluster(pulumi.CustomResource):
|
|
3798
3839
|
enable_shielded_nodes: Optional[pulumi.Input[bool]] = None,
|
3799
3840
|
enable_tpu: Optional[pulumi.Input[bool]] = None,
|
3800
3841
|
endpoint: Optional[pulumi.Input[str]] = None,
|
3842
|
+
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3801
3843
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3802
3844
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
3803
3845
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
@@ -3916,6 +3958,10 @@ class Cluster(pulumi.CustomResource):
|
|
3916
3958
|
:param pulumi.Input[bool] enable_tpu: Whether to enable Cloud TPU resources in this cluster.
|
3917
3959
|
See the [official documentation](https://cloud.google.com/tpu/docs/kubernetes-engine-setup).
|
3918
3960
|
:param pulumi.Input[str] endpoint: The IP address of this cluster's Kubernetes master.
|
3961
|
+
:param pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']] enterprise_config: Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
3962
|
+
|
3963
|
+
|
3964
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3919
3965
|
:param pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
3920
3966
|
:param pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
3921
3967
|
:param pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']] identity_service_config: . Structure is documented below.
|
@@ -4076,8 +4122,6 @@ class Cluster(pulumi.CustomResource):
|
|
4076
4122
|
:param pulumi.Input[Union['ClusterVerticalPodAutoscalingArgs', 'ClusterVerticalPodAutoscalingArgsDict']] vertical_pod_autoscaling: Vertical Pod Autoscaling automatically adjusts the resources of pods controlled by it.
|
4077
4123
|
Structure is documented below.
|
4078
4124
|
:param pulumi.Input[Union['ClusterWorkloadAltsConfigArgs', 'ClusterWorkloadAltsConfigArgsDict']] workload_alts_config: Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
4079
|
-
|
4080
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4081
4125
|
:param pulumi.Input[Union['ClusterWorkloadIdentityConfigArgs', 'ClusterWorkloadIdentityConfigArgsDict']] workload_identity_config: Workload Identity allows Kubernetes service accounts to act as a user-managed
|
4082
4126
|
[Google IAM Service Account](https://cloud.google.com/iam/docs/service-accounts#user-managed_service_accounts).
|
4083
4127
|
Structure is documented below.
|
@@ -4116,6 +4160,7 @@ class Cluster(pulumi.CustomResource):
|
|
4116
4160
|
__props__.__dict__["enable_shielded_nodes"] = enable_shielded_nodes
|
4117
4161
|
__props__.__dict__["enable_tpu"] = enable_tpu
|
4118
4162
|
__props__.__dict__["endpoint"] = endpoint
|
4163
|
+
__props__.__dict__["enterprise_config"] = enterprise_config
|
4119
4164
|
__props__.__dict__["fleet"] = fleet
|
4120
4165
|
__props__.__dict__["gateway_api_config"] = gateway_api_config
|
4121
4166
|
__props__.__dict__["identity_service_config"] = identity_service_config
|
@@ -4437,6 +4482,17 @@ class Cluster(pulumi.CustomResource):
|
|
4437
4482
|
"""
|
4438
4483
|
return pulumi.get(self, "endpoint")
|
4439
4484
|
|
4485
|
+
@property
|
4486
|
+
@pulumi.getter(name="enterpriseConfig")
|
4487
|
+
def enterprise_config(self) -> pulumi.Output['outputs.ClusterEnterpriseConfig']:
|
4488
|
+
"""
|
4489
|
+
Configuration for [Enterprise edition].(https://cloud.google.com/kubernetes-engine/enterprise/docs/concepts/gke-editions). Structure is documented below.
|
4490
|
+
|
4491
|
+
|
4492
|
+
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4493
|
+
"""
|
4494
|
+
return pulumi.get(self, "enterprise_config")
|
4495
|
+
|
4440
4496
|
@property
|
4441
4497
|
@pulumi.getter
|
4442
4498
|
def fleet(self) -> pulumi.Output[Optional['outputs.ClusterFleet']]:
|
@@ -4942,8 +4998,6 @@ class Cluster(pulumi.CustomResource):
|
|
4942
4998
|
def workload_alts_config(self) -> pulumi.Output['outputs.ClusterWorkloadAltsConfig']:
|
4943
4999
|
"""
|
4944
5000
|
Configuration for [direct-path (via ALTS) with workload identity.](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#workloadaltsconfig). Structure is documented below.
|
4945
|
-
|
4946
|
-
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4947
5001
|
"""
|
4948
5002
|
return pulumi.get(self, "workload_alts_config")
|
4949
5003
|
|