pulumi-gcp 8.28.0a1745598508__py3-none-any.whl → 8.29.0a1746076904__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 +88 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +399 -0
- pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +54 -0
- pulumi_gcp/accesscontextmanager/outputs.py +369 -0
- pulumi_gcp/alloydb/_inputs.py +47 -1
- pulumi_gcp/alloydb/outputs.py +61 -3
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +8 -2
- pulumi_gcp/applicationintegration/client.py +34 -12
- pulumi_gcp/artifactregistry/outputs.py +2 -2
- pulumi_gcp/certificateauthority/_inputs.py +32 -0
- pulumi_gcp/certificateauthority/ca_pool.py +2 -0
- pulumi_gcp/certificateauthority/outputs.py +22 -0
- pulumi_gcp/clouddeploy/_inputs.py +0 -6
- pulumi_gcp/clouddeploy/delivery_pipeline.py +84 -77
- pulumi_gcp/clouddeploy/outputs.py +0 -4
- pulumi_gcp/cloudrunv2/_inputs.py +3 -3
- pulumi_gcp/cloudrunv2/outputs.py +4 -4
- pulumi_gcp/colab/runtime_template.py +3 -3
- pulumi_gcp/compute/__init__.py +7 -0
- pulumi_gcp/compute/_inputs.py +809 -1
- pulumi_gcp/compute/backend_service.py +89 -0
- pulumi_gcp/compute/firewall_policy_with_rules.py +2 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_storage_pool_iam_policy.py +183 -0
- pulumi_gcp/compute/get_storage_pool_types.py +268 -0
- pulumi_gcp/compute/outputs.py +743 -3
- pulumi_gcp/compute/resource_policy_attachment.py +476 -0
- pulumi_gcp/compute/storage_pool.py +1045 -0
- pulumi_gcp/compute/storage_pool_iam_binding.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_member.py +1088 -0
- pulumi_gcp/compute/storage_pool_iam_policy.py +907 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +63 -3
- pulumi_gcp/container/outputs.py +70 -6
- pulumi_gcp/dataproc/get_metastore_service.py +12 -1
- pulumi_gcp/dataproc/metastore_service.py +61 -0
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/discoveryengine/_inputs.py +38 -0
- pulumi_gcp/discoveryengine/chat_engine.py +6 -4
- pulumi_gcp/discoveryengine/outputs.py +26 -0
- pulumi_gcp/firebaserules/_inputs.py +6 -6
- pulumi_gcp/firebaserules/outputs.py +4 -4
- pulumi_gcp/gkebackup/__init__.py +2 -0
- pulumi_gcp/gkebackup/backup_channel.py +737 -0
- pulumi_gcp/gkebackup/restore_channel.py +737 -0
- pulumi_gcp/gkehub/_inputs.py +208 -0
- pulumi_gcp/gkehub/outputs.py +171 -1
- pulumi_gcp/healthcare/pipeline_job.py +2 -2
- pulumi_gcp/iap/__init__.py +4 -0
- pulumi_gcp/iap/_inputs.py +130 -0
- pulumi_gcp/iap/get_web_cloud_run_service_iam_policy.py +183 -0
- pulumi_gcp/iap/outputs.py +76 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_binding.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_member.py +1089 -0
- pulumi_gcp/iap/web_cloud_run_service_iam_policy.py +908 -0
- pulumi_gcp/kms/key_ring_import_job.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +8 -4
- pulumi_gcp/managedkafka/connector.py +8 -4
- pulumi_gcp/monitoring/uptime_check_config.py +49 -0
- pulumi_gcp/networkconnectivity/internal_range.py +82 -0
- pulumi_gcp/projects/_inputs.py +0 -6
- pulumi_gcp/projects/api_key.py +28 -0
- pulumi_gcp/projects/outputs.py +0 -4
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +61 -0
- pulumi_gcp/sql/_inputs.py +86 -6
- pulumi_gcp/sql/outputs.py +156 -12
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +457 -0
- pulumi_gcp/storage/batch_operations_job.py +776 -0
- pulumi_gcp/storage/outputs.py +403 -0
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/RECORD +78 -64
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.28.0a1745598508.dist-info → pulumi_gcp-8.29.0a1746076904.dist-info}/top_level.txt +0 -0
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -722,6 +722,10 @@ class _ExportableConfig(types.ModuleType):
|
|
722
722
|
def sql_custom_endpoint(self) -> Optional[str]:
|
723
723
|
return __config__.get('sqlCustomEndpoint')
|
724
724
|
|
725
|
+
@property
|
726
|
+
def storage_batch_operations_custom_endpoint(self) -> Optional[str]:
|
727
|
+
return __config__.get('storageBatchOperationsCustomEndpoint')
|
728
|
+
|
725
729
|
@property
|
726
730
|
def storage_control_custom_endpoint(self) -> Optional[str]:
|
727
731
|
return __config__.get('storageControlCustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -8526,6 +8526,10 @@ if not MYPY:
|
|
8526
8526
|
GKE version 1.25.2-gke.1700 or later.
|
8527
8527
|
Structure is documented below.
|
8528
8528
|
"""
|
8529
|
+
flex_start: NotRequired[pulumi.Input[builtins.bool]]
|
8530
|
+
"""
|
8531
|
+
Enables Flex Start provisioning model for the node pool.
|
8532
|
+
"""
|
8529
8533
|
gcfs_config: NotRequired[pulumi.Input['ClusterNodeConfigGcfsConfigArgsDict']]
|
8530
8534
|
"""
|
8531
8535
|
Parameters for the Google Container Filesystem (GCFS).
|
@@ -8730,6 +8734,7 @@ class ClusterNodeConfigArgs:
|
|
8730
8734
|
ephemeral_storage_config: Optional[pulumi.Input['ClusterNodeConfigEphemeralStorageConfigArgs']] = None,
|
8731
8735
|
ephemeral_storage_local_ssd_config: Optional[pulumi.Input['ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs']] = None,
|
8732
8736
|
fast_socket: Optional[pulumi.Input['ClusterNodeConfigFastSocketArgs']] = None,
|
8737
|
+
flex_start: Optional[pulumi.Input[builtins.bool]] = None,
|
8733
8738
|
gcfs_config: Optional[pulumi.Input['ClusterNodeConfigGcfsConfigArgs']] = None,
|
8734
8739
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigGuestAcceleratorArgs']]]] = None,
|
8735
8740
|
gvnic: Optional[pulumi.Input['ClusterNodeConfigGvnicArgs']] = None,
|
@@ -8781,6 +8786,7 @@ class ClusterNodeConfigArgs:
|
|
8781
8786
|
Node Pool must enable gvnic.
|
8782
8787
|
GKE version 1.25.2-gke.1700 or later.
|
8783
8788
|
Structure is documented below.
|
8789
|
+
:param pulumi.Input[builtins.bool] flex_start: Enables Flex Start provisioning model for the node pool.
|
8784
8790
|
:param pulumi.Input['ClusterNodeConfigGcfsConfigArgs'] gcfs_config: Parameters for the Google Container Filesystem (GCFS).
|
8785
8791
|
If unspecified, GCFS will not be enabled on the node pool. When enabling this feature you must specify `image_type = "COS_CONTAINERD"` and `node_version` from GKE versions 1.19 or later to use it.
|
8786
8792
|
For GKE versions 1.19, 1.20, and 1.21, the recommended minimum `node_version` would be 1.19.15-gke.1300, 1.20.11-gke.1300, and 1.21.5-gke.1300 respectively.
|
@@ -8892,6 +8898,8 @@ class ClusterNodeConfigArgs:
|
|
8892
8898
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
8893
8899
|
if fast_socket is not None:
|
8894
8900
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
8901
|
+
if flex_start is not None:
|
8902
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
8895
8903
|
if gcfs_config is not None:
|
8896
8904
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
8897
8905
|
if guest_accelerators is not None:
|
@@ -9097,6 +9105,18 @@ class ClusterNodeConfigArgs:
|
|
9097
9105
|
def fast_socket(self, value: Optional[pulumi.Input['ClusterNodeConfigFastSocketArgs']]):
|
9098
9106
|
pulumi.set(self, "fast_socket", value)
|
9099
9107
|
|
9108
|
+
@property
|
9109
|
+
@pulumi.getter(name="flexStart")
|
9110
|
+
def flex_start(self) -> Optional[pulumi.Input[builtins.bool]]:
|
9111
|
+
"""
|
9112
|
+
Enables Flex Start provisioning model for the node pool.
|
9113
|
+
"""
|
9114
|
+
return pulumi.get(self, "flex_start")
|
9115
|
+
|
9116
|
+
@flex_start.setter
|
9117
|
+
def flex_start(self, value: Optional[pulumi.Input[builtins.bool]]):
|
9118
|
+
pulumi.set(self, "flex_start", value)
|
9119
|
+
|
9100
9120
|
@property
|
9101
9121
|
@pulumi.getter(name="gcfsConfig")
|
9102
9122
|
def gcfs_config(self) -> Optional[pulumi.Input['ClusterNodeConfigGcfsConfigArgs']]:
|
@@ -12740,6 +12760,10 @@ if not MYPY:
|
|
12740
12760
|
GKE version 1.25.2-gke.1700 or later.
|
12741
12761
|
Structure is documented below.
|
12742
12762
|
"""
|
12763
|
+
flex_start: NotRequired[pulumi.Input[builtins.bool]]
|
12764
|
+
"""
|
12765
|
+
Enables Flex Start provisioning model for the node pool.
|
12766
|
+
"""
|
12743
12767
|
gcfs_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigGcfsConfigArgsDict']]
|
12744
12768
|
"""
|
12745
12769
|
Parameters for the Google Container Filesystem (GCFS).
|
@@ -12944,6 +12968,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12944
12968
|
ephemeral_storage_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigEphemeralStorageConfigArgs']] = None,
|
12945
12969
|
ephemeral_storage_local_ssd_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs']] = None,
|
12946
12970
|
fast_socket: Optional[pulumi.Input['ClusterNodePoolNodeConfigFastSocketArgs']] = None,
|
12971
|
+
flex_start: Optional[pulumi.Input[builtins.bool]] = None,
|
12947
12972
|
gcfs_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigGcfsConfigArgs']] = None,
|
12948
12973
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigGuestAcceleratorArgs']]]] = None,
|
12949
12974
|
gvnic: Optional[pulumi.Input['ClusterNodePoolNodeConfigGvnicArgs']] = None,
|
@@ -12995,6 +13020,7 @@ class ClusterNodePoolNodeConfigArgs:
|
|
12995
13020
|
Node Pool must enable gvnic.
|
12996
13021
|
GKE version 1.25.2-gke.1700 or later.
|
12997
13022
|
Structure is documented below.
|
13023
|
+
:param pulumi.Input[builtins.bool] flex_start: Enables Flex Start provisioning model for the node pool.
|
12998
13024
|
:param pulumi.Input['ClusterNodePoolNodeConfigGcfsConfigArgs'] gcfs_config: Parameters for the Google Container Filesystem (GCFS).
|
12999
13025
|
If unspecified, GCFS will not be enabled on the node pool. When enabling this feature you must specify `image_type = "COS_CONTAINERD"` and `node_version` from GKE versions 1.19 or later to use it.
|
13000
13026
|
For GKE versions 1.19, 1.20, and 1.21, the recommended minimum `node_version` would be 1.19.15-gke.1300, 1.20.11-gke.1300, and 1.21.5-gke.1300 respectively.
|
@@ -13106,6 +13132,8 @@ class ClusterNodePoolNodeConfigArgs:
|
|
13106
13132
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
13107
13133
|
if fast_socket is not None:
|
13108
13134
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
13135
|
+
if flex_start is not None:
|
13136
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
13109
13137
|
if gcfs_config is not None:
|
13110
13138
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
13111
13139
|
if guest_accelerators is not None:
|
@@ -13311,6 +13339,18 @@ class ClusterNodePoolNodeConfigArgs:
|
|
13311
13339
|
def fast_socket(self, value: Optional[pulumi.Input['ClusterNodePoolNodeConfigFastSocketArgs']]):
|
13312
13340
|
pulumi.set(self, "fast_socket", value)
|
13313
13341
|
|
13342
|
+
@property
|
13343
|
+
@pulumi.getter(name="flexStart")
|
13344
|
+
def flex_start(self) -> Optional[pulumi.Input[builtins.bool]]:
|
13345
|
+
"""
|
13346
|
+
Enables Flex Start provisioning model for the node pool.
|
13347
|
+
"""
|
13348
|
+
return pulumi.get(self, "flex_start")
|
13349
|
+
|
13350
|
+
@flex_start.setter
|
13351
|
+
def flex_start(self, value: Optional[pulumi.Input[builtins.bool]]):
|
13352
|
+
pulumi.set(self, "flex_start", value)
|
13353
|
+
|
13314
13354
|
@property
|
13315
13355
|
@pulumi.getter(name="gcfsConfig")
|
13316
13356
|
def gcfs_config(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigGcfsConfigArgs']]:
|
@@ -17506,7 +17546,7 @@ if not MYPY:
|
|
17506
17546
|
"""
|
17507
17547
|
confidential_nodes: NotRequired[pulumi.Input['NodePoolNodeConfigConfidentialNodesArgsDict']]
|
17508
17548
|
"""
|
17509
|
-
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17549
|
+
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17510
17550
|
"""
|
17511
17551
|
containerd_config: NotRequired[pulumi.Input['NodePoolNodeConfigContainerdConfigArgsDict']]
|
17512
17552
|
"""
|
@@ -17540,6 +17580,10 @@ if not MYPY:
|
|
17540
17580
|
"""
|
17541
17581
|
Enable or disable NCCL Fast Socket in the node pool.
|
17542
17582
|
"""
|
17583
|
+
flex_start: NotRequired[pulumi.Input[builtins.bool]]
|
17584
|
+
"""
|
17585
|
+
Enables Flex Start provisioning model for the node pool
|
17586
|
+
"""
|
17543
17587
|
gcfs_config: NotRequired[pulumi.Input['NodePoolNodeConfigGcfsConfigArgsDict']]
|
17544
17588
|
"""
|
17545
17589
|
GCFS configuration for this node.
|
@@ -17692,6 +17736,7 @@ class NodePoolNodeConfigArgs:
|
|
17692
17736
|
ephemeral_storage_config: Optional[pulumi.Input['NodePoolNodeConfigEphemeralStorageConfigArgs']] = None,
|
17693
17737
|
ephemeral_storage_local_ssd_config: Optional[pulumi.Input['NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs']] = None,
|
17694
17738
|
fast_socket: Optional[pulumi.Input['NodePoolNodeConfigFastSocketArgs']] = None,
|
17739
|
+
flex_start: Optional[pulumi.Input[builtins.bool]] = None,
|
17695
17740
|
gcfs_config: Optional[pulumi.Input['NodePoolNodeConfigGcfsConfigArgs']] = None,
|
17696
17741
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigGuestAcceleratorArgs']]]] = None,
|
17697
17742
|
gvnic: Optional[pulumi.Input['NodePoolNodeConfigGvnicArgs']] = None,
|
@@ -17728,7 +17773,7 @@ class NodePoolNodeConfigArgs:
|
|
17728
17773
|
"""
|
17729
17774
|
:param pulumi.Input['NodePoolNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling advanced machine features.
|
17730
17775
|
:param pulumi.Input[builtins.str] boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
|
17731
|
-
:param pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17776
|
+
:param pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17732
17777
|
:param pulumi.Input['NodePoolNodeConfigContainerdConfigArgs'] containerd_config: Parameters for containerd configuration.
|
17733
17778
|
:param pulumi.Input[builtins.int] disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
|
17734
17779
|
:param pulumi.Input[builtins.str] disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
|
@@ -17737,6 +17782,7 @@ class NodePoolNodeConfigArgs:
|
|
17737
17782
|
:param pulumi.Input['NodePoolNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
17738
17783
|
:param pulumi.Input['NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs'] ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
17739
17784
|
:param pulumi.Input['NodePoolNodeConfigFastSocketArgs'] fast_socket: Enable or disable NCCL Fast Socket in the node pool.
|
17785
|
+
:param pulumi.Input[builtins.bool] flex_start: Enables Flex Start provisioning model for the node pool
|
17740
17786
|
:param pulumi.Input['NodePoolNodeConfigGcfsConfigArgs'] gcfs_config: GCFS configuration for this node.
|
17741
17787
|
:param pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigGuestAcceleratorArgs']]] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
17742
17788
|
:param pulumi.Input['NodePoolNodeConfigGvnicArgs'] gvnic: Enable or disable gvnic in the node pool.
|
@@ -17796,6 +17842,8 @@ class NodePoolNodeConfigArgs:
|
|
17796
17842
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
17797
17843
|
if fast_socket is not None:
|
17798
17844
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
17845
|
+
if flex_start is not None:
|
17846
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
17799
17847
|
if gcfs_config is not None:
|
17800
17848
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
17801
17849
|
if guest_accelerators is not None:
|
@@ -17891,7 +17939,7 @@ class NodePoolNodeConfigArgs:
|
|
17891
17939
|
@pulumi.getter(name="confidentialNodes")
|
17892
17940
|
def confidential_nodes(self) -> Optional[pulumi.Input['NodePoolNodeConfigConfidentialNodesArgs']]:
|
17893
17941
|
"""
|
17894
|
-
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17942
|
+
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
17895
17943
|
"""
|
17896
17944
|
return pulumi.get(self, "confidential_nodes")
|
17897
17945
|
|
@@ -17995,6 +18043,18 @@ class NodePoolNodeConfigArgs:
|
|
17995
18043
|
def fast_socket(self, value: Optional[pulumi.Input['NodePoolNodeConfigFastSocketArgs']]):
|
17996
18044
|
pulumi.set(self, "fast_socket", value)
|
17997
18045
|
|
18046
|
+
@property
|
18047
|
+
@pulumi.getter(name="flexStart")
|
18048
|
+
def flex_start(self) -> Optional[pulumi.Input[builtins.bool]]:
|
18049
|
+
"""
|
18050
|
+
Enables Flex Start provisioning model for the node pool
|
18051
|
+
"""
|
18052
|
+
return pulumi.get(self, "flex_start")
|
18053
|
+
|
18054
|
+
@flex_start.setter
|
18055
|
+
def flex_start(self, value: Optional[pulumi.Input[builtins.bool]]):
|
18056
|
+
pulumi.set(self, "flex_start", value)
|
18057
|
+
|
17998
18058
|
@property
|
17999
18059
|
@pulumi.getter(name="gcfsConfig")
|
18000
18060
|
def gcfs_config(self) -> Optional[pulumi.Input['NodePoolNodeConfigGcfsConfigArgs']]:
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -6994,6 +6994,8 @@ class ClusterNodeConfig(dict):
|
|
6994
6994
|
suggest = "ephemeral_storage_local_ssd_config"
|
6995
6995
|
elif key == "fastSocket":
|
6996
6996
|
suggest = "fast_socket"
|
6997
|
+
elif key == "flexStart":
|
6998
|
+
suggest = "flex_start"
|
6997
6999
|
elif key == "gcfsConfig":
|
6998
7000
|
suggest = "gcfs_config"
|
6999
7001
|
elif key == "guestAccelerators":
|
@@ -7070,6 +7072,7 @@ class ClusterNodeConfig(dict):
|
|
7070
7072
|
ephemeral_storage_config: Optional['outputs.ClusterNodeConfigEphemeralStorageConfig'] = None,
|
7071
7073
|
ephemeral_storage_local_ssd_config: Optional['outputs.ClusterNodeConfigEphemeralStorageLocalSsdConfig'] = None,
|
7072
7074
|
fast_socket: Optional['outputs.ClusterNodeConfigFastSocket'] = None,
|
7075
|
+
flex_start: Optional[builtins.bool] = None,
|
7073
7076
|
gcfs_config: Optional['outputs.ClusterNodeConfigGcfsConfig'] = None,
|
7074
7077
|
guest_accelerators: Optional[Sequence['outputs.ClusterNodeConfigGuestAccelerator']] = None,
|
7075
7078
|
gvnic: Optional['outputs.ClusterNodeConfigGvnic'] = None,
|
@@ -7121,6 +7124,7 @@ class ClusterNodeConfig(dict):
|
|
7121
7124
|
Node Pool must enable gvnic.
|
7122
7125
|
GKE version 1.25.2-gke.1700 or later.
|
7123
7126
|
Structure is documented below.
|
7127
|
+
:param builtins.bool flex_start: Enables Flex Start provisioning model for the node pool.
|
7124
7128
|
:param 'ClusterNodeConfigGcfsConfigArgs' gcfs_config: Parameters for the Google Container Filesystem (GCFS).
|
7125
7129
|
If unspecified, GCFS will not be enabled on the node pool. When enabling this feature you must specify `image_type = "COS_CONTAINERD"` and `node_version` from GKE versions 1.19 or later to use it.
|
7126
7130
|
For GKE versions 1.19, 1.20, and 1.21, the recommended minimum `node_version` would be 1.19.15-gke.1300, 1.20.11-gke.1300, and 1.21.5-gke.1300 respectively.
|
@@ -7232,6 +7236,8 @@ class ClusterNodeConfig(dict):
|
|
7232
7236
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
7233
7237
|
if fast_socket is not None:
|
7234
7238
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
7239
|
+
if flex_start is not None:
|
7240
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
7235
7241
|
if gcfs_config is not None:
|
7236
7242
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
7237
7243
|
if guest_accelerators is not None:
|
@@ -7393,6 +7399,14 @@ class ClusterNodeConfig(dict):
|
|
7393
7399
|
"""
|
7394
7400
|
return pulumi.get(self, "fast_socket")
|
7395
7401
|
|
7402
|
+
@property
|
7403
|
+
@pulumi.getter(name="flexStart")
|
7404
|
+
def flex_start(self) -> Optional[builtins.bool]:
|
7405
|
+
"""
|
7406
|
+
Enables Flex Start provisioning model for the node pool.
|
7407
|
+
"""
|
7408
|
+
return pulumi.get(self, "flex_start")
|
7409
|
+
|
7396
7410
|
@property
|
7397
7411
|
@pulumi.getter(name="gcfsConfig")
|
7398
7412
|
def gcfs_config(self) -> Optional['outputs.ClusterNodeConfigGcfsConfig']:
|
@@ -10307,6 +10321,8 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10307
10321
|
suggest = "ephemeral_storage_local_ssd_config"
|
10308
10322
|
elif key == "fastSocket":
|
10309
10323
|
suggest = "fast_socket"
|
10324
|
+
elif key == "flexStart":
|
10325
|
+
suggest = "flex_start"
|
10310
10326
|
elif key == "gcfsConfig":
|
10311
10327
|
suggest = "gcfs_config"
|
10312
10328
|
elif key == "guestAccelerators":
|
@@ -10383,6 +10399,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10383
10399
|
ephemeral_storage_config: Optional['outputs.ClusterNodePoolNodeConfigEphemeralStorageConfig'] = None,
|
10384
10400
|
ephemeral_storage_local_ssd_config: Optional['outputs.ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfig'] = None,
|
10385
10401
|
fast_socket: Optional['outputs.ClusterNodePoolNodeConfigFastSocket'] = None,
|
10402
|
+
flex_start: Optional[builtins.bool] = None,
|
10386
10403
|
gcfs_config: Optional['outputs.ClusterNodePoolNodeConfigGcfsConfig'] = None,
|
10387
10404
|
guest_accelerators: Optional[Sequence['outputs.ClusterNodePoolNodeConfigGuestAccelerator']] = None,
|
10388
10405
|
gvnic: Optional['outputs.ClusterNodePoolNodeConfigGvnic'] = None,
|
@@ -10434,6 +10451,7 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10434
10451
|
Node Pool must enable gvnic.
|
10435
10452
|
GKE version 1.25.2-gke.1700 or later.
|
10436
10453
|
Structure is documented below.
|
10454
|
+
:param builtins.bool flex_start: Enables Flex Start provisioning model for the node pool.
|
10437
10455
|
:param 'ClusterNodePoolNodeConfigGcfsConfigArgs' gcfs_config: Parameters for the Google Container Filesystem (GCFS).
|
10438
10456
|
If unspecified, GCFS will not be enabled on the node pool. When enabling this feature you must specify `image_type = "COS_CONTAINERD"` and `node_version` from GKE versions 1.19 or later to use it.
|
10439
10457
|
For GKE versions 1.19, 1.20, and 1.21, the recommended minimum `node_version` would be 1.19.15-gke.1300, 1.20.11-gke.1300, and 1.21.5-gke.1300 respectively.
|
@@ -10545,6 +10563,8 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10545
10563
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
10546
10564
|
if fast_socket is not None:
|
10547
10565
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
10566
|
+
if flex_start is not None:
|
10567
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
10548
10568
|
if gcfs_config is not None:
|
10549
10569
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
10550
10570
|
if guest_accelerators is not None:
|
@@ -10706,6 +10726,14 @@ class ClusterNodePoolNodeConfig(dict):
|
|
10706
10726
|
"""
|
10707
10727
|
return pulumi.get(self, "fast_socket")
|
10708
10728
|
|
10729
|
+
@property
|
10730
|
+
@pulumi.getter(name="flexStart")
|
10731
|
+
def flex_start(self) -> Optional[builtins.bool]:
|
10732
|
+
"""
|
10733
|
+
Enables Flex Start provisioning model for the node pool.
|
10734
|
+
"""
|
10735
|
+
return pulumi.get(self, "flex_start")
|
10736
|
+
|
10709
10737
|
@property
|
10710
10738
|
@pulumi.getter(name="gcfsConfig")
|
10711
10739
|
def gcfs_config(self) -> Optional['outputs.ClusterNodePoolNodeConfigGcfsConfig']:
|
@@ -14086,6 +14114,8 @@ class NodePoolNodeConfig(dict):
|
|
14086
14114
|
suggest = "ephemeral_storage_local_ssd_config"
|
14087
14115
|
elif key == "fastSocket":
|
14088
14116
|
suggest = "fast_socket"
|
14117
|
+
elif key == "flexStart":
|
14118
|
+
suggest = "flex_start"
|
14089
14119
|
elif key == "gcfsConfig":
|
14090
14120
|
suggest = "gcfs_config"
|
14091
14121
|
elif key == "guestAccelerators":
|
@@ -14162,6 +14192,7 @@ class NodePoolNodeConfig(dict):
|
|
14162
14192
|
ephemeral_storage_config: Optional['outputs.NodePoolNodeConfigEphemeralStorageConfig'] = None,
|
14163
14193
|
ephemeral_storage_local_ssd_config: Optional['outputs.NodePoolNodeConfigEphemeralStorageLocalSsdConfig'] = None,
|
14164
14194
|
fast_socket: Optional['outputs.NodePoolNodeConfigFastSocket'] = None,
|
14195
|
+
flex_start: Optional[builtins.bool] = None,
|
14165
14196
|
gcfs_config: Optional['outputs.NodePoolNodeConfigGcfsConfig'] = None,
|
14166
14197
|
guest_accelerators: Optional[Sequence['outputs.NodePoolNodeConfigGuestAccelerator']] = None,
|
14167
14198
|
gvnic: Optional['outputs.NodePoolNodeConfigGvnic'] = None,
|
@@ -14198,7 +14229,7 @@ class NodePoolNodeConfig(dict):
|
|
14198
14229
|
"""
|
14199
14230
|
:param 'NodePoolNodeConfigAdvancedMachineFeaturesArgs' advanced_machine_features: Specifies options for controlling advanced machine features.
|
14200
14231
|
:param builtins.str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
|
14201
|
-
:param 'NodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
14232
|
+
:param 'NodePoolNodeConfigConfidentialNodesArgs' confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
14202
14233
|
:param 'NodePoolNodeConfigContainerdConfigArgs' containerd_config: Parameters for containerd configuration.
|
14203
14234
|
:param builtins.int disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
|
14204
14235
|
:param builtins.str disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
|
@@ -14207,6 +14238,7 @@ class NodePoolNodeConfig(dict):
|
|
14207
14238
|
:param 'NodePoolNodeConfigEphemeralStorageConfigArgs' ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
14208
14239
|
:param 'NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs' ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
14209
14240
|
:param 'NodePoolNodeConfigFastSocketArgs' fast_socket: Enable or disable NCCL Fast Socket in the node pool.
|
14241
|
+
:param builtins.bool flex_start: Enables Flex Start provisioning model for the node pool
|
14210
14242
|
:param 'NodePoolNodeConfigGcfsConfigArgs' gcfs_config: GCFS configuration for this node.
|
14211
14243
|
:param Sequence['NodePoolNodeConfigGuestAcceleratorArgs'] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
14212
14244
|
:param 'NodePoolNodeConfigGvnicArgs' gvnic: Enable or disable gvnic in the node pool.
|
@@ -14266,6 +14298,8 @@ class NodePoolNodeConfig(dict):
|
|
14266
14298
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_config", ephemeral_storage_local_ssd_config)
|
14267
14299
|
if fast_socket is not None:
|
14268
14300
|
pulumi.set(__self__, "fast_socket", fast_socket)
|
14301
|
+
if flex_start is not None:
|
14302
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
14269
14303
|
if gcfs_config is not None:
|
14270
14304
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
14271
14305
|
if guest_accelerators is not None:
|
@@ -14353,7 +14387,7 @@ class NodePoolNodeConfig(dict):
|
|
14353
14387
|
@pulumi.getter(name="confidentialNodes")
|
14354
14388
|
def confidential_nodes(self) -> Optional['outputs.NodePoolNodeConfigConfidentialNodes']:
|
14355
14389
|
"""
|
14356
|
-
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
14390
|
+
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
14357
14391
|
"""
|
14358
14392
|
return pulumi.get(self, "confidential_nodes")
|
14359
14393
|
|
@@ -14421,6 +14455,14 @@ class NodePoolNodeConfig(dict):
|
|
14421
14455
|
"""
|
14422
14456
|
return pulumi.get(self, "fast_socket")
|
14423
14457
|
|
14458
|
+
@property
|
14459
|
+
@pulumi.getter(name="flexStart")
|
14460
|
+
def flex_start(self) -> Optional[builtins.bool]:
|
14461
|
+
"""
|
14462
|
+
Enables Flex Start provisioning model for the node pool
|
14463
|
+
"""
|
14464
|
+
return pulumi.get(self, "flex_start")
|
14465
|
+
|
14424
14466
|
@property
|
14425
14467
|
@pulumi.getter(name="gcfsConfig")
|
14426
14468
|
def gcfs_config(self) -> Optional['outputs.NodePoolNodeConfigGcfsConfig']:
|
@@ -18155,6 +18197,7 @@ class GetClusterNodeConfigResult(dict):
|
|
18155
18197
|
ephemeral_storage_configs: Sequence['outputs.GetClusterNodeConfigEphemeralStorageConfigResult'],
|
18156
18198
|
ephemeral_storage_local_ssd_configs: Sequence['outputs.GetClusterNodeConfigEphemeralStorageLocalSsdConfigResult'],
|
18157
18199
|
fast_sockets: Sequence['outputs.GetClusterNodeConfigFastSocketResult'],
|
18200
|
+
flex_start: builtins.bool,
|
18158
18201
|
gcfs_configs: Sequence['outputs.GetClusterNodeConfigGcfsConfigResult'],
|
18159
18202
|
guest_accelerators: Sequence['outputs.GetClusterNodeConfigGuestAcceleratorResult'],
|
18160
18203
|
gvnics: Sequence['outputs.GetClusterNodeConfigGvnicResult'],
|
@@ -18191,7 +18234,7 @@ class GetClusterNodeConfigResult(dict):
|
|
18191
18234
|
"""
|
18192
18235
|
:param Sequence['GetClusterNodeConfigAdvancedMachineFeatureArgs'] advanced_machine_features: Specifies options for controlling advanced machine features.
|
18193
18236
|
:param builtins.str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
|
18194
|
-
:param Sequence['GetClusterNodeConfigConfidentialNodeArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
18237
|
+
:param Sequence['GetClusterNodeConfigConfidentialNodeArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
18195
18238
|
:param Sequence['GetClusterNodeConfigContainerdConfigArgs'] containerd_configs: Parameters for containerd configuration.
|
18196
18239
|
:param builtins.int disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
|
18197
18240
|
:param builtins.str disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
|
@@ -18200,6 +18243,7 @@ class GetClusterNodeConfigResult(dict):
|
|
18200
18243
|
:param Sequence['GetClusterNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_configs: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
18201
18244
|
:param Sequence['GetClusterNodeConfigEphemeralStorageLocalSsdConfigArgs'] ephemeral_storage_local_ssd_configs: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
18202
18245
|
:param Sequence['GetClusterNodeConfigFastSocketArgs'] fast_sockets: Enable or disable NCCL Fast Socket in the node pool.
|
18246
|
+
:param builtins.bool flex_start: Enables Flex Start provisioning model for the node pool
|
18203
18247
|
:param Sequence['GetClusterNodeConfigGcfsConfigArgs'] gcfs_configs: GCFS configuration for this node.
|
18204
18248
|
:param Sequence['GetClusterNodeConfigGuestAcceleratorArgs'] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
18205
18249
|
:param Sequence['GetClusterNodeConfigGvnicArgs'] gvnics: Enable or disable gvnic in the node pool.
|
@@ -18245,6 +18289,7 @@ class GetClusterNodeConfigResult(dict):
|
|
18245
18289
|
pulumi.set(__self__, "ephemeral_storage_configs", ephemeral_storage_configs)
|
18246
18290
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_configs", ephemeral_storage_local_ssd_configs)
|
18247
18291
|
pulumi.set(__self__, "fast_sockets", fast_sockets)
|
18292
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
18248
18293
|
pulumi.set(__self__, "gcfs_configs", gcfs_configs)
|
18249
18294
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
18250
18295
|
pulumi.set(__self__, "gvnics", gvnics)
|
@@ -18299,7 +18344,7 @@ class GetClusterNodeConfigResult(dict):
|
|
18299
18344
|
@pulumi.getter(name="confidentialNodes")
|
18300
18345
|
def confidential_nodes(self) -> Sequence['outputs.GetClusterNodeConfigConfidentialNodeResult']:
|
18301
18346
|
"""
|
18302
|
-
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
18347
|
+
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
18303
18348
|
"""
|
18304
18349
|
return pulumi.get(self, "confidential_nodes")
|
18305
18350
|
|
@@ -18367,6 +18412,14 @@ class GetClusterNodeConfigResult(dict):
|
|
18367
18412
|
"""
|
18368
18413
|
return pulumi.get(self, "fast_sockets")
|
18369
18414
|
|
18415
|
+
@property
|
18416
|
+
@pulumi.getter(name="flexStart")
|
18417
|
+
def flex_start(self) -> builtins.bool:
|
18418
|
+
"""
|
18419
|
+
Enables Flex Start provisioning model for the node pool
|
18420
|
+
"""
|
18421
|
+
return pulumi.get(self, "flex_start")
|
18422
|
+
|
18370
18423
|
@property
|
18371
18424
|
@pulumi.getter(name="gcfsConfigs")
|
18372
18425
|
def gcfs_configs(self) -> Sequence['outputs.GetClusterNodeConfigGcfsConfigResult']:
|
@@ -20270,6 +20323,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20270
20323
|
ephemeral_storage_configs: Sequence['outputs.GetClusterNodePoolNodeConfigEphemeralStorageConfigResult'],
|
20271
20324
|
ephemeral_storage_local_ssd_configs: Sequence['outputs.GetClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigResult'],
|
20272
20325
|
fast_sockets: Sequence['outputs.GetClusterNodePoolNodeConfigFastSocketResult'],
|
20326
|
+
flex_start: builtins.bool,
|
20273
20327
|
gcfs_configs: Sequence['outputs.GetClusterNodePoolNodeConfigGcfsConfigResult'],
|
20274
20328
|
guest_accelerators: Sequence['outputs.GetClusterNodePoolNodeConfigGuestAcceleratorResult'],
|
20275
20329
|
gvnics: Sequence['outputs.GetClusterNodePoolNodeConfigGvnicResult'],
|
@@ -20306,7 +20360,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20306
20360
|
"""
|
20307
20361
|
:param Sequence['GetClusterNodePoolNodeConfigAdvancedMachineFeatureArgs'] advanced_machine_features: Specifies options for controlling advanced machine features.
|
20308
20362
|
:param builtins.str boot_disk_kms_key: The Customer Managed Encryption Key used to encrypt the boot disk attached to each node in the node pool.
|
20309
|
-
:param Sequence['GetClusterNodePoolNodeConfigConfidentialNodeArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
20363
|
+
:param Sequence['GetClusterNodePoolNodeConfigConfidentialNodeArgs'] confidential_nodes: Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
20310
20364
|
:param Sequence['GetClusterNodePoolNodeConfigContainerdConfigArgs'] containerd_configs: Parameters for containerd configuration.
|
20311
20365
|
:param builtins.int disk_size_gb: Size of the disk attached to each node, specified in GB. The smallest allowed disk size is 10GB.
|
20312
20366
|
:param builtins.str disk_type: Type of the disk attached to each node. Such as pd-standard, pd-balanced or pd-ssd
|
@@ -20315,6 +20369,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20315
20369
|
:param Sequence['GetClusterNodePoolNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_configs: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
20316
20370
|
:param Sequence['GetClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs'] ephemeral_storage_local_ssd_configs: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk.
|
20317
20371
|
:param Sequence['GetClusterNodePoolNodeConfigFastSocketArgs'] fast_sockets: Enable or disable NCCL Fast Socket in the node pool.
|
20372
|
+
:param builtins.bool flex_start: Enables Flex Start provisioning model for the node pool
|
20318
20373
|
:param Sequence['GetClusterNodePoolNodeConfigGcfsConfigArgs'] gcfs_configs: GCFS configuration for this node.
|
20319
20374
|
:param Sequence['GetClusterNodePoolNodeConfigGuestAcceleratorArgs'] guest_accelerators: List of the type and count of accelerator cards attached to the instance.
|
20320
20375
|
:param Sequence['GetClusterNodePoolNodeConfigGvnicArgs'] gvnics: Enable or disable gvnic in the node pool.
|
@@ -20360,6 +20415,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20360
20415
|
pulumi.set(__self__, "ephemeral_storage_configs", ephemeral_storage_configs)
|
20361
20416
|
pulumi.set(__self__, "ephemeral_storage_local_ssd_configs", ephemeral_storage_local_ssd_configs)
|
20362
20417
|
pulumi.set(__self__, "fast_sockets", fast_sockets)
|
20418
|
+
pulumi.set(__self__, "flex_start", flex_start)
|
20363
20419
|
pulumi.set(__self__, "gcfs_configs", gcfs_configs)
|
20364
20420
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
20365
20421
|
pulumi.set(__self__, "gvnics", gvnics)
|
@@ -20414,7 +20470,7 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20414
20470
|
@pulumi.getter(name="confidentialNodes")
|
20415
20471
|
def confidential_nodes(self) -> Sequence['outputs.GetClusterNodePoolNodeConfigConfidentialNodeResult']:
|
20416
20472
|
"""
|
20417
|
-
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
20473
|
+
Configuration for the confidential nodes feature, which makes nodes run on confidential VMs.
|
20418
20474
|
"""
|
20419
20475
|
return pulumi.get(self, "confidential_nodes")
|
20420
20476
|
|
@@ -20482,6 +20538,14 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
20482
20538
|
"""
|
20483
20539
|
return pulumi.get(self, "fast_sockets")
|
20484
20540
|
|
20541
|
+
@property
|
20542
|
+
@pulumi.getter(name="flexStart")
|
20543
|
+
def flex_start(self) -> builtins.bool:
|
20544
|
+
"""
|
20545
|
+
Enables Flex Start provisioning model for the node pool
|
20546
|
+
"""
|
20547
|
+
return pulumi.get(self, "flex_start")
|
20548
|
+
|
20485
20549
|
@property
|
20486
20550
|
@pulumi.getter(name="gcfsConfigs")
|
20487
20551
|
def gcfs_configs(self) -> Sequence['outputs.GetClusterNodePoolNodeConfigGcfsConfigResult']:
|
@@ -28,7 +28,7 @@ class GetMetastoreServiceResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getMetastoreService.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, artifact_gcs_uri=None, create_time=None, database_type=None, deletion_protection=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, scheduled_backups=None, service_id=None, state=None, state_message=None, telemetry_configs=None, tier=None, uid=None, update_time=None):
|
31
|
+
def __init__(__self__, artifact_gcs_uri=None, create_time=None, database_type=None, deletion_protection=None, effective_labels=None, encryption_configs=None, endpoint_uri=None, hive_metastore_configs=None, id=None, labels=None, location=None, maintenance_windows=None, metadata_integrations=None, name=None, network=None, network_configs=None, port=None, project=None, pulumi_labels=None, release_channel=None, scaling_configs=None, scheduled_backups=None, service_id=None, state=None, state_message=None, tags=None, telemetry_configs=None, tier=None, uid=None, update_time=None):
|
32
32
|
if artifact_gcs_uri and not isinstance(artifact_gcs_uri, str):
|
33
33
|
raise TypeError("Expected argument 'artifact_gcs_uri' to be a str")
|
34
34
|
pulumi.set(__self__, "artifact_gcs_uri", artifact_gcs_uri)
|
@@ -104,6 +104,9 @@ class GetMetastoreServiceResult:
|
|
104
104
|
if state_message and not isinstance(state_message, str):
|
105
105
|
raise TypeError("Expected argument 'state_message' to be a str")
|
106
106
|
pulumi.set(__self__, "state_message", state_message)
|
107
|
+
if tags and not isinstance(tags, dict):
|
108
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
109
|
+
pulumi.set(__self__, "tags", tags)
|
107
110
|
if telemetry_configs and not isinstance(telemetry_configs, list):
|
108
111
|
raise TypeError("Expected argument 'telemetry_configs' to be a list")
|
109
112
|
pulumi.set(__self__, "telemetry_configs", telemetry_configs)
|
@@ -245,6 +248,11 @@ class GetMetastoreServiceResult:
|
|
245
248
|
def state_message(self) -> builtins.str:
|
246
249
|
return pulumi.get(self, "state_message")
|
247
250
|
|
251
|
+
@property
|
252
|
+
@pulumi.getter
|
253
|
+
def tags(self) -> Mapping[str, builtins.str]:
|
254
|
+
return pulumi.get(self, "tags")
|
255
|
+
|
248
256
|
@property
|
249
257
|
@pulumi.getter(name="telemetryConfigs")
|
250
258
|
def telemetry_configs(self) -> Sequence['outputs.GetMetastoreServiceTelemetryConfigResult']:
|
@@ -297,6 +305,7 @@ class AwaitableGetMetastoreServiceResult(GetMetastoreServiceResult):
|
|
297
305
|
service_id=self.service_id,
|
298
306
|
state=self.state,
|
299
307
|
state_message=self.state_message,
|
308
|
+
tags=self.tags,
|
300
309
|
telemetry_configs=self.telemetry_configs,
|
301
310
|
tier=self.tier,
|
302
311
|
uid=self.uid,
|
@@ -361,6 +370,7 @@ def get_metastore_service(location: Optional[builtins.str] = None,
|
|
361
370
|
service_id=pulumi.get(__ret__, 'service_id'),
|
362
371
|
state=pulumi.get(__ret__, 'state'),
|
363
372
|
state_message=pulumi.get(__ret__, 'state_message'),
|
373
|
+
tags=pulumi.get(__ret__, 'tags'),
|
364
374
|
telemetry_configs=pulumi.get(__ret__, 'telemetry_configs'),
|
365
375
|
tier=pulumi.get(__ret__, 'tier'),
|
366
376
|
uid=pulumi.get(__ret__, 'uid'),
|
@@ -422,6 +432,7 @@ def get_metastore_service_output(location: Optional[pulumi.Input[builtins.str]]
|
|
422
432
|
service_id=pulumi.get(__response__, 'service_id'),
|
423
433
|
state=pulumi.get(__response__, 'state'),
|
424
434
|
state_message=pulumi.get(__response__, 'state_message'),
|
435
|
+
tags=pulumi.get(__response__, 'tags'),
|
425
436
|
telemetry_configs=pulumi.get(__response__, 'telemetry_configs'),
|
426
437
|
tier=pulumi.get(__response__, 'tier'),
|
427
438
|
uid=pulumi.get(__response__, 'uid'),
|