pulumi-gcp 8.29.0a1746115375__py3-none-any.whl → 8.30.0a1746254470__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 +24 -0
- pulumi_gcp/alloydb/instance.py +1 -1
- pulumi_gcp/apigee/organization.py +26 -0
- pulumi_gcp/beyondcorp/_inputs.py +129 -0
- pulumi_gcp/beyondcorp/application.py +106 -3
- pulumi_gcp/beyondcorp/outputs.py +93 -0
- pulumi_gcp/bigtable/__init__.py +2 -0
- pulumi_gcp/bigtable/logical_view.py +473 -0
- pulumi_gcp/bigtable/materialized_view.py +524 -0
- pulumi_gcp/certificateauthority/ca_pool.py +12 -0
- pulumi_gcp/certificatemanager/get_certificates.py +29 -0
- pulumi_gcp/clouddeploy/automation.py +66 -10
- pulumi_gcp/compute/_inputs.py +366 -55
- pulumi_gcp/compute/backend_service.py +6 -2
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/interconnect.py +25 -24
- pulumi_gcp/compute/outputs.py +380 -48
- pulumi_gcp/compute/region_disk.py +28 -0
- pulumi_gcp/compute/region_resize_request.py +2 -2
- pulumi_gcp/compute/region_security_policy.py +16 -0
- pulumi_gcp/compute/region_security_policy_rule.py +16 -0
- pulumi_gcp/compute/resize_request.py +2 -2
- pulumi_gcp/compute/resource_policy.py +0 -2
- pulumi_gcp/container/_inputs.py +69 -9
- pulumi_gcp/container/outputs.py +71 -7
- pulumi_gcp/dataplex/_inputs.py +219 -1
- pulumi_gcp/dataplex/datascan.py +20 -0
- pulumi_gcp/dataplex/outputs.py +168 -1
- pulumi_gcp/developerconnect/_inputs.py +6 -0
- pulumi_gcp/developerconnect/account_connector.py +56 -0
- pulumi_gcp/developerconnect/outputs.py +4 -0
- pulumi_gcp/dns/_inputs.py +34 -13
- pulumi_gcp/dns/outputs.py +25 -10
- pulumi_gcp/gkehub/_inputs.py +3 -3
- pulumi_gcp/gkehub/feature_membership.py +92 -0
- pulumi_gcp/gkehub/outputs.py +2 -2
- pulumi_gcp/identityplatform/_inputs.py +54 -0
- pulumi_gcp/identityplatform/oauth_idp_config.py +83 -5
- pulumi_gcp/identityplatform/outputs.py +49 -0
- pulumi_gcp/memcache/__init__.py +1 -0
- pulumi_gcp/memcache/get_instance.py +338 -0
- pulumi_gcp/memcache/outputs.py +363 -0
- pulumi_gcp/netapp/storage_pool.py +141 -0
- pulumi_gcp/networkservices/_inputs.py +35 -6
- pulumi_gcp/networkservices/lb_traffic_extension.py +7 -0
- pulumi_gcp/networkservices/outputs.py +22 -4
- pulumi_gcp/osconfig/__init__.py +1 -0
- pulumi_gcp/osconfig/_inputs.py +5400 -0
- pulumi_gcp/osconfig/outputs.py +3952 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator_for_folder.py +1098 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/spanner/instance_config.py +14 -14
- pulumi_gcp/sql/_inputs.py +83 -0
- pulumi_gcp/sql/database_instance.py +28 -0
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +146 -6
- pulumi_gcp/storage/_inputs.py +20 -0
- pulumi_gcp/storage/bucket.py +56 -0
- pulumi_gcp/storage/get_bucket.py +23 -1
- pulumi_gcp/storage/outputs.py +14 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +2 -14
- {pulumi_gcp-8.29.0a1746115375.dist-info → pulumi_gcp-8.30.0a1746254470.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.29.0a1746115375.dist-info → pulumi_gcp-8.30.0a1746254470.dist-info}/RECORD +65 -61
- {pulumi_gcp-8.29.0a1746115375.dist-info → pulumi_gcp-8.30.0a1746254470.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.29.0a1746115375.dist-info → pulumi_gcp-8.30.0a1746254470.dist-info}/top_level.txt +0 -0
@@ -455,6 +455,7 @@ class _RegionDiskState:
|
|
455
455
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
456
456
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
457
457
|
disk_encryption_key: Optional[pulumi.Input['RegionDiskDiskEncryptionKeyArgs']] = None,
|
458
|
+
disk_id: Optional[pulumi.Input[builtins.str]] = None,
|
458
459
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
459
460
|
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input['RegionDiskGuestOsFeatureArgs']]]] = None,
|
460
461
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -499,6 +500,7 @@ class _RegionDiskState:
|
|
499
500
|
the disk will be encrypted using an automatically generated key and
|
500
501
|
you do not need to provide a key to use the disk later.
|
501
502
|
Structure is documented below.
|
503
|
+
:param pulumi.Input[builtins.str] disk_id: The unique identifier for the resource. This identifier is defined by the server.
|
502
504
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
503
505
|
:param pulumi.Input[Sequence[pulumi.Input['RegionDiskGuestOsFeatureArgs']]] guest_os_features: A list of features to enable on the guest operating system.
|
504
506
|
Applicable only for bootable disks.
|
@@ -588,6 +590,8 @@ class _RegionDiskState:
|
|
588
590
|
pulumi.set(__self__, "description", description)
|
589
591
|
if disk_encryption_key is not None:
|
590
592
|
pulumi.set(__self__, "disk_encryption_key", disk_encryption_key)
|
593
|
+
if disk_id is not None:
|
594
|
+
pulumi.set(__self__, "disk_id", disk_id)
|
591
595
|
if effective_labels is not None:
|
592
596
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
593
597
|
if guest_os_features is not None:
|
@@ -723,6 +727,18 @@ class _RegionDiskState:
|
|
723
727
|
def disk_encryption_key(self, value: Optional[pulumi.Input['RegionDiskDiskEncryptionKeyArgs']]):
|
724
728
|
pulumi.set(self, "disk_encryption_key", value)
|
725
729
|
|
730
|
+
@property
|
731
|
+
@pulumi.getter(name="diskId")
|
732
|
+
def disk_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
733
|
+
"""
|
734
|
+
The unique identifier for the resource. This identifier is defined by the server.
|
735
|
+
"""
|
736
|
+
return pulumi.get(self, "disk_id")
|
737
|
+
|
738
|
+
@disk_id.setter
|
739
|
+
def disk_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
740
|
+
pulumi.set(self, "disk_id", value)
|
741
|
+
|
726
742
|
@property
|
727
743
|
@pulumi.getter(name="effectiveLabels")
|
728
744
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
@@ -1515,6 +1531,7 @@ class RegionDisk(pulumi.CustomResource):
|
|
1515
1531
|
__props__.__dict__["source_snapshot_encryption_key"] = source_snapshot_encryption_key
|
1516
1532
|
__props__.__dict__["type"] = type
|
1517
1533
|
__props__.__dict__["creation_timestamp"] = None
|
1534
|
+
__props__.__dict__["disk_id"] = None
|
1518
1535
|
__props__.__dict__["effective_labels"] = None
|
1519
1536
|
__props__.__dict__["label_fingerprint"] = None
|
1520
1537
|
__props__.__dict__["last_attach_timestamp"] = None
|
@@ -1542,6 +1559,7 @@ class RegionDisk(pulumi.CustomResource):
|
|
1542
1559
|
creation_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
1543
1560
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
1544
1561
|
disk_encryption_key: Optional[pulumi.Input[Union['RegionDiskDiskEncryptionKeyArgs', 'RegionDiskDiskEncryptionKeyArgsDict']]] = None,
|
1562
|
+
disk_id: Optional[pulumi.Input[builtins.str]] = None,
|
1545
1563
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1546
1564
|
guest_os_features: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionDiskGuestOsFeatureArgs', 'RegionDiskGuestOsFeatureArgsDict']]]]] = None,
|
1547
1565
|
interface: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1591,6 +1609,7 @@ class RegionDisk(pulumi.CustomResource):
|
|
1591
1609
|
the disk will be encrypted using an automatically generated key and
|
1592
1610
|
you do not need to provide a key to use the disk later.
|
1593
1611
|
Structure is documented below.
|
1612
|
+
:param pulumi.Input[builtins.str] disk_id: The unique identifier for the resource. This identifier is defined by the server.
|
1594
1613
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1595
1614
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionDiskGuestOsFeatureArgs', 'RegionDiskGuestOsFeatureArgsDict']]]] guest_os_features: A list of features to enable on the guest operating system.
|
1596
1615
|
Applicable only for bootable disks.
|
@@ -1678,6 +1697,7 @@ class RegionDisk(pulumi.CustomResource):
|
|
1678
1697
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1679
1698
|
__props__.__dict__["description"] = description
|
1680
1699
|
__props__.__dict__["disk_encryption_key"] = disk_encryption_key
|
1700
|
+
__props__.__dict__["disk_id"] = disk_id
|
1681
1701
|
__props__.__dict__["effective_labels"] = effective_labels
|
1682
1702
|
__props__.__dict__["guest_os_features"] = guest_os_features
|
1683
1703
|
__props__.__dict__["interface"] = interface
|
@@ -1764,6 +1784,14 @@ class RegionDisk(pulumi.CustomResource):
|
|
1764
1784
|
"""
|
1765
1785
|
return pulumi.get(self, "disk_encryption_key")
|
1766
1786
|
|
1787
|
+
@property
|
1788
|
+
@pulumi.getter(name="diskId")
|
1789
|
+
def disk_id(self) -> pulumi.Output[builtins.str]:
|
1790
|
+
"""
|
1791
|
+
The unique identifier for the resource. This identifier is defined by the server.
|
1792
|
+
"""
|
1793
|
+
return pulumi.get(self, "disk_id")
|
1794
|
+
|
1767
1795
|
@property
|
1768
1796
|
@pulumi.getter(name="effectiveLabels")
|
1769
1797
|
def effective_labels(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
@@ -364,7 +364,7 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
364
364
|
"on_host_maintenance": "TERMINATE",
|
365
365
|
},
|
366
366
|
disks=[{
|
367
|
-
"source_image": "cos-cloud/cos-
|
367
|
+
"source_image": "cos-cloud/cos-121-lts",
|
368
368
|
"auto_delete": True,
|
369
369
|
"boot": True,
|
370
370
|
"disk_type": "pd-ssd",
|
@@ -494,7 +494,7 @@ class RegionResizeRequest(pulumi.CustomResource):
|
|
494
494
|
"on_host_maintenance": "TERMINATE",
|
495
495
|
},
|
496
496
|
disks=[{
|
497
|
-
"source_image": "cos-cloud/cos-
|
497
|
+
"source_image": "cos-cloud/cos-121-lts",
|
498
498
|
"auto_delete": True,
|
499
499
|
"boot": True,
|
500
500
|
"disk_type": "pd-ssd",
|
@@ -439,6 +439,14 @@ class RegionSecurityPolicy(pulumi.CustomResource):
|
|
439
439
|
user_defined_fields: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionSecurityPolicyUserDefinedFieldArgs', 'RegionSecurityPolicyUserDefinedFieldArgsDict']]]]] = None,
|
440
440
|
__props__=None):
|
441
441
|
"""
|
442
|
+
Represents a Region Cloud Armor Security Policy resource.
|
443
|
+
|
444
|
+
To get more information about RegionSecurityPolicy, see:
|
445
|
+
|
446
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionSecurityPolicies)
|
447
|
+
* How-to Guides
|
448
|
+
* [Official Documentation](https://cloud.google.com/armor/docs/security-policy-concepts)
|
449
|
+
|
442
450
|
## Example Usage
|
443
451
|
|
444
452
|
### Region Security Policy Basic
|
@@ -591,6 +599,14 @@ class RegionSecurityPolicy(pulumi.CustomResource):
|
|
591
599
|
args: Optional[RegionSecurityPolicyArgs] = None,
|
592
600
|
opts: Optional[pulumi.ResourceOptions] = None):
|
593
601
|
"""
|
602
|
+
Represents a Region Cloud Armor Security Policy resource.
|
603
|
+
|
604
|
+
To get more information about RegionSecurityPolicy, see:
|
605
|
+
|
606
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/regionSecurityPolicies)
|
607
|
+
* How-to Guides
|
608
|
+
* [Official Documentation](https://cloud.google.com/armor/docs/security-policy-concepts)
|
609
|
+
|
594
610
|
## Example Usage
|
595
611
|
|
596
612
|
### Region Security Policy Basic
|
@@ -500,6 +500,14 @@ class RegionSecurityPolicyRule(pulumi.CustomResource):
|
|
500
500
|
security_policy: Optional[pulumi.Input[builtins.str]] = None,
|
501
501
|
__props__=None):
|
502
502
|
"""
|
503
|
+
A rule for the RegionSecurityPolicy.
|
504
|
+
|
505
|
+
To get more information about RegionSecurityPolicyRule, see:
|
506
|
+
|
507
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionSecurityPolicies/addRule)
|
508
|
+
* How-to Guides
|
509
|
+
* [Creating region security policy rules](https://cloud.google.com/armor/docs/configure-security-policies)
|
510
|
+
|
503
511
|
## Example Usage
|
504
512
|
|
505
513
|
### Region Security Policy Rule Basic
|
@@ -787,6 +795,14 @@ class RegionSecurityPolicyRule(pulumi.CustomResource):
|
|
787
795
|
args: RegionSecurityPolicyRuleInitArgs,
|
788
796
|
opts: Optional[pulumi.ResourceOptions] = None):
|
789
797
|
"""
|
798
|
+
A rule for the RegionSecurityPolicy.
|
799
|
+
|
800
|
+
To get more information about RegionSecurityPolicyRule, see:
|
801
|
+
|
802
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/regionSecurityPolicies/addRule)
|
803
|
+
* How-to Guides
|
804
|
+
* [Creating region security policy rules](https://cloud.google.com/armor/docs/configure-security-policies)
|
805
|
+
|
790
806
|
## Example Usage
|
791
807
|
|
792
808
|
### Region Security Policy Rule Basic
|
@@ -376,7 +376,7 @@ class ResizeRequest(pulumi.CustomResource):
|
|
376
376
|
"on_host_maintenance": "TERMINATE",
|
377
377
|
},
|
378
378
|
disks=[{
|
379
|
-
"source_image": "cos-cloud/cos-
|
379
|
+
"source_image": "cos-cloud/cos-121-lts",
|
380
380
|
"auto_delete": True,
|
381
381
|
"boot": True,
|
382
382
|
"disk_type": "pd-ssd",
|
@@ -504,7 +504,7 @@ class ResizeRequest(pulumi.CustomResource):
|
|
504
504
|
"on_host_maintenance": "TERMINATE",
|
505
505
|
},
|
506
506
|
disks=[{
|
507
|
-
"source_image": "cos-cloud/cos-
|
507
|
+
"source_image": "cos-cloud/cos-121-lts",
|
508
508
|
"auto_delete": True,
|
509
509
|
"boot": True,
|
510
510
|
"disk_type": "pd-ssd",
|
@@ -617,7 +617,6 @@ class ResourcePolicy(pulumi.CustomResource):
|
|
617
617
|
name="gce-policy",
|
618
618
|
region="europe-west9",
|
619
619
|
group_placement_policy={
|
620
|
-
"vm_count": 2,
|
621
620
|
"collocation": "COLLOCATED",
|
622
621
|
"gpu_topology": "1x72",
|
623
622
|
})
|
@@ -901,7 +900,6 @@ class ResourcePolicy(pulumi.CustomResource):
|
|
901
900
|
name="gce-policy",
|
902
901
|
region="europe-west9",
|
903
902
|
group_placement_policy={
|
904
|
-
"vm_count": 2,
|
905
903
|
"collocation": "COLLOCATED",
|
906
904
|
"gpu_topology": "1x72",
|
907
905
|
})
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -9927,17 +9927,25 @@ if not MYPY:
|
|
9927
9927
|
"""
|
9928
9928
|
Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
9929
9929
|
"""
|
9930
|
+
data_cache_count: NotRequired[pulumi.Input[builtins.int]]
|
9931
|
+
"""
|
9932
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
9933
|
+
"""
|
9930
9934
|
elif False:
|
9931
9935
|
ClusterNodeConfigEphemeralStorageLocalSsdConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9932
9936
|
|
9933
9937
|
@pulumi.input_type
|
9934
9938
|
class ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
9935
9939
|
def __init__(__self__, *,
|
9936
|
-
local_ssd_count: pulumi.Input[builtins.int]
|
9940
|
+
local_ssd_count: pulumi.Input[builtins.int],
|
9941
|
+
data_cache_count: Optional[pulumi.Input[builtins.int]] = None):
|
9937
9942
|
"""
|
9938
9943
|
:param pulumi.Input[builtins.int] local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
9944
|
+
:param pulumi.Input[builtins.int] data_cache_count: Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
9939
9945
|
"""
|
9940
9946
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
9947
|
+
if data_cache_count is not None:
|
9948
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
9941
9949
|
|
9942
9950
|
@property
|
9943
9951
|
@pulumi.getter(name="localSsdCount")
|
@@ -9951,6 +9959,18 @@ class ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
|
9951
9959
|
def local_ssd_count(self, value: pulumi.Input[builtins.int]):
|
9952
9960
|
pulumi.set(self, "local_ssd_count", value)
|
9953
9961
|
|
9962
|
+
@property
|
9963
|
+
@pulumi.getter(name="dataCacheCount")
|
9964
|
+
def data_cache_count(self) -> Optional[pulumi.Input[builtins.int]]:
|
9965
|
+
"""
|
9966
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
9967
|
+
"""
|
9968
|
+
return pulumi.get(self, "data_cache_count")
|
9969
|
+
|
9970
|
+
@data_cache_count.setter
|
9971
|
+
def data_cache_count(self, value: Optional[pulumi.Input[builtins.int]]):
|
9972
|
+
pulumi.set(self, "data_cache_count", value)
|
9973
|
+
|
9954
9974
|
|
9955
9975
|
if not MYPY:
|
9956
9976
|
class ClusterNodeConfigFastSocketArgsDict(TypedDict):
|
@@ -10130,7 +10150,7 @@ if not MYPY:
|
|
10130
10150
|
"""
|
10131
10151
|
Mode for how the GPU driver is installed.
|
10132
10152
|
Accepted values are:
|
10133
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
10153
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
10134
10154
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
10135
10155
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
10136
10156
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -10145,7 +10165,7 @@ class ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfigArgs:
|
|
10145
10165
|
"""
|
10146
10166
|
:param pulumi.Input[builtins.str] gpu_driver_version: Mode for how the GPU driver is installed.
|
10147
10167
|
Accepted values are:
|
10148
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
10168
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
10149
10169
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
10150
10170
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
10151
10171
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -10158,7 +10178,7 @@ class ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfigArgs:
|
|
10158
10178
|
"""
|
10159
10179
|
Mode for how the GPU driver is installed.
|
10160
10180
|
Accepted values are:
|
10161
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
10181
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
10162
10182
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
10163
10183
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
10164
10184
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -14161,17 +14181,25 @@ if not MYPY:
|
|
14161
14181
|
"""
|
14162
14182
|
Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
14163
14183
|
"""
|
14184
|
+
data_cache_count: NotRequired[pulumi.Input[builtins.int]]
|
14185
|
+
"""
|
14186
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
14187
|
+
"""
|
14164
14188
|
elif False:
|
14165
14189
|
ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgsDict: TypeAlias = Mapping[str, Any]
|
14166
14190
|
|
14167
14191
|
@pulumi.input_type
|
14168
14192
|
class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
14169
14193
|
def __init__(__self__, *,
|
14170
|
-
local_ssd_count: pulumi.Input[builtins.int]
|
14194
|
+
local_ssd_count: pulumi.Input[builtins.int],
|
14195
|
+
data_cache_count: Optional[pulumi.Input[builtins.int]] = None):
|
14171
14196
|
"""
|
14172
14197
|
:param pulumi.Input[builtins.int] local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
14198
|
+
:param pulumi.Input[builtins.int] data_cache_count: Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
14173
14199
|
"""
|
14174
14200
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
14201
|
+
if data_cache_count is not None:
|
14202
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
14175
14203
|
|
14176
14204
|
@property
|
14177
14205
|
@pulumi.getter(name="localSsdCount")
|
@@ -14185,6 +14213,18 @@ class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
|
14185
14213
|
def local_ssd_count(self, value: pulumi.Input[builtins.int]):
|
14186
14214
|
pulumi.set(self, "local_ssd_count", value)
|
14187
14215
|
|
14216
|
+
@property
|
14217
|
+
@pulumi.getter(name="dataCacheCount")
|
14218
|
+
def data_cache_count(self) -> Optional[pulumi.Input[builtins.int]]:
|
14219
|
+
"""
|
14220
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
14221
|
+
"""
|
14222
|
+
return pulumi.get(self, "data_cache_count")
|
14223
|
+
|
14224
|
+
@data_cache_count.setter
|
14225
|
+
def data_cache_count(self, value: Optional[pulumi.Input[builtins.int]]):
|
14226
|
+
pulumi.set(self, "data_cache_count", value)
|
14227
|
+
|
14188
14228
|
|
14189
14229
|
if not MYPY:
|
14190
14230
|
class ClusterNodePoolNodeConfigFastSocketArgsDict(TypedDict):
|
@@ -14364,7 +14404,7 @@ if not MYPY:
|
|
14364
14404
|
"""
|
14365
14405
|
Mode for how the GPU driver is installed.
|
14366
14406
|
Accepted values are:
|
14367
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
14407
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
14368
14408
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
14369
14409
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
14370
14410
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -14379,7 +14419,7 @@ class ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfigArgs:
|
|
14379
14419
|
"""
|
14380
14420
|
:param pulumi.Input[builtins.str] gpu_driver_version: Mode for how the GPU driver is installed.
|
14381
14421
|
Accepted values are:
|
14382
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
14422
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
14383
14423
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
14384
14424
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
14385
14425
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -14392,7 +14432,7 @@ class ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfigArgs:
|
|
14392
14432
|
"""
|
14393
14433
|
Mode for how the GPU driver is installed.
|
14394
14434
|
Accepted values are:
|
14395
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
14435
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
14396
14436
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
14397
14437
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
14398
14438
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -18810,17 +18850,25 @@ if not MYPY:
|
|
18810
18850
|
"""
|
18811
18851
|
Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD must be 375 or 3000 GB in size, and all local SSDs must share the same size.
|
18812
18852
|
"""
|
18853
|
+
data_cache_count: NotRequired[pulumi.Input[builtins.int]]
|
18854
|
+
"""
|
18855
|
+
Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
18856
|
+
"""
|
18813
18857
|
elif False:
|
18814
18858
|
NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgsDict: TypeAlias = Mapping[str, Any]
|
18815
18859
|
|
18816
18860
|
@pulumi.input_type
|
18817
18861
|
class NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
18818
18862
|
def __init__(__self__, *,
|
18819
|
-
local_ssd_count: pulumi.Input[builtins.int]
|
18863
|
+
local_ssd_count: pulumi.Input[builtins.int],
|
18864
|
+
data_cache_count: Optional[pulumi.Input[builtins.int]] = None):
|
18820
18865
|
"""
|
18821
18866
|
:param pulumi.Input[builtins.int] local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD must be 375 or 3000 GB in size, and all local SSDs must share the same size.
|
18867
|
+
:param pulumi.Input[builtins.int] data_cache_count: Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
18822
18868
|
"""
|
18823
18869
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
18870
|
+
if data_cache_count is not None:
|
18871
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
18824
18872
|
|
18825
18873
|
@property
|
18826
18874
|
@pulumi.getter(name="localSsdCount")
|
@@ -18834,6 +18882,18 @@ class NodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs:
|
|
18834
18882
|
def local_ssd_count(self, value: pulumi.Input[builtins.int]):
|
18835
18883
|
pulumi.set(self, "local_ssd_count", value)
|
18836
18884
|
|
18885
|
+
@property
|
18886
|
+
@pulumi.getter(name="dataCacheCount")
|
18887
|
+
def data_cache_count(self) -> Optional[pulumi.Input[builtins.int]]:
|
18888
|
+
"""
|
18889
|
+
Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
18890
|
+
"""
|
18891
|
+
return pulumi.get(self, "data_cache_count")
|
18892
|
+
|
18893
|
+
@data_cache_count.setter
|
18894
|
+
def data_cache_count(self, value: Optional[pulumi.Input[builtins.int]]):
|
18895
|
+
pulumi.set(self, "data_cache_count", value)
|
18896
|
+
|
18837
18897
|
|
18838
18898
|
if not MYPY:
|
18839
18899
|
class NodePoolNodeConfigFastSocketArgsDict(TypedDict):
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -8045,6 +8045,8 @@ class ClusterNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
8045
8045
|
suggest = None
|
8046
8046
|
if key == "localSsdCount":
|
8047
8047
|
suggest = "local_ssd_count"
|
8048
|
+
elif key == "dataCacheCount":
|
8049
|
+
suggest = "data_cache_count"
|
8048
8050
|
|
8049
8051
|
if suggest:
|
8050
8052
|
pulumi.log.warn(f"Key '{key}' not found in ClusterNodeConfigEphemeralStorageLocalSsdConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -8058,11 +8060,15 @@ class ClusterNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
8058
8060
|
return super().get(key, default)
|
8059
8061
|
|
8060
8062
|
def __init__(__self__, *,
|
8061
|
-
local_ssd_count: builtins.int
|
8063
|
+
local_ssd_count: builtins.int,
|
8064
|
+
data_cache_count: Optional[builtins.int] = None):
|
8062
8065
|
"""
|
8063
8066
|
:param builtins.int local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
8067
|
+
:param builtins.int data_cache_count: Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
8064
8068
|
"""
|
8065
8069
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
8070
|
+
if data_cache_count is not None:
|
8071
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
8066
8072
|
|
8067
8073
|
@property
|
8068
8074
|
@pulumi.getter(name="localSsdCount")
|
@@ -8072,6 +8078,14 @@ class ClusterNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
8072
8078
|
"""
|
8073
8079
|
return pulumi.get(self, "local_ssd_count")
|
8074
8080
|
|
8081
|
+
@property
|
8082
|
+
@pulumi.getter(name="dataCacheCount")
|
8083
|
+
def data_cache_count(self) -> Optional[builtins.int]:
|
8084
|
+
"""
|
8085
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
8086
|
+
"""
|
8087
|
+
return pulumi.get(self, "data_cache_count")
|
8088
|
+
|
8075
8089
|
|
8076
8090
|
@pulumi.output_type
|
8077
8091
|
class ClusterNodeConfigFastSocket(dict):
|
@@ -8219,7 +8233,7 @@ class ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig(dict):
|
|
8219
8233
|
"""
|
8220
8234
|
:param builtins.str gpu_driver_version: Mode for how the GPU driver is installed.
|
8221
8235
|
Accepted values are:
|
8222
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
8236
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
8223
8237
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
8224
8238
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
8225
8239
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -8232,7 +8246,7 @@ class ClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig(dict):
|
|
8232
8246
|
"""
|
8233
8247
|
Mode for how the GPU driver is installed.
|
8234
8248
|
Accepted values are:
|
8235
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
8249
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
8236
8250
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
8237
8251
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
8238
8252
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -11372,6 +11386,8 @@ class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
11372
11386
|
suggest = None
|
11373
11387
|
if key == "localSsdCount":
|
11374
11388
|
suggest = "local_ssd_count"
|
11389
|
+
elif key == "dataCacheCount":
|
11390
|
+
suggest = "data_cache_count"
|
11375
11391
|
|
11376
11392
|
if suggest:
|
11377
11393
|
pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -11385,11 +11401,15 @@ class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
11385
11401
|
return super().get(key, default)
|
11386
11402
|
|
11387
11403
|
def __init__(__self__, *,
|
11388
|
-
local_ssd_count: builtins.int
|
11404
|
+
local_ssd_count: builtins.int,
|
11405
|
+
data_cache_count: Optional[builtins.int] = None):
|
11389
11406
|
"""
|
11390
11407
|
:param builtins.int local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
|
11408
|
+
:param builtins.int data_cache_count: Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
11391
11409
|
"""
|
11392
11410
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
11411
|
+
if data_cache_count is not None:
|
11412
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
11393
11413
|
|
11394
11414
|
@property
|
11395
11415
|
@pulumi.getter(name="localSsdCount")
|
@@ -11399,6 +11419,14 @@ class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
11399
11419
|
"""
|
11400
11420
|
return pulumi.get(self, "local_ssd_count")
|
11401
11421
|
|
11422
|
+
@property
|
11423
|
+
@pulumi.getter(name="dataCacheCount")
|
11424
|
+
def data_cache_count(self) -> Optional[builtins.int]:
|
11425
|
+
"""
|
11426
|
+
Number of raw-block local NVMe SSD disks to be attached to the node utilized for GKE Data Cache. If zero, then GKE Data Cache will not be enabled in the nodes.
|
11427
|
+
"""
|
11428
|
+
return pulumi.get(self, "data_cache_count")
|
11429
|
+
|
11402
11430
|
|
11403
11431
|
@pulumi.output_type
|
11404
11432
|
class ClusterNodePoolNodeConfigFastSocket(dict):
|
@@ -11546,7 +11574,7 @@ class ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig(dict)
|
|
11546
11574
|
"""
|
11547
11575
|
:param builtins.str gpu_driver_version: Mode for how the GPU driver is installed.
|
11548
11576
|
Accepted values are:
|
11549
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
11577
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
11550
11578
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
11551
11579
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
11552
11580
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -11559,7 +11587,7 @@ class ClusterNodePoolNodeConfigGuestAcceleratorGpuDriverInstallationConfig(dict)
|
|
11559
11587
|
"""
|
11560
11588
|
Mode for how the GPU driver is installed.
|
11561
11589
|
Accepted values are:
|
11562
|
-
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to not install any GPU driver.
|
11590
|
+
* `"GPU_DRIVER_VERSION_UNSPECIFIED"`: Default value is to install the "Default" GPU driver. Before GKE `1.30.1-gke.1156000`, the default value is to not install any GPU driver.
|
11563
11591
|
* `"INSTALLATION_DISABLED"`: Disable GPU driver auto installation and needs manual installation.
|
11564
11592
|
* `"DEFAULT"`: "Default" GPU driver in COS and Ubuntu.
|
11565
11593
|
* `"LATEST"`: "Latest" GPU driver in COS.
|
@@ -15047,6 +15075,8 @@ class NodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
15047
15075
|
suggest = None
|
15048
15076
|
if key == "localSsdCount":
|
15049
15077
|
suggest = "local_ssd_count"
|
15078
|
+
elif key == "dataCacheCount":
|
15079
|
+
suggest = "data_cache_count"
|
15050
15080
|
|
15051
15081
|
if suggest:
|
15052
15082
|
pulumi.log.warn(f"Key '{key}' not found in NodePoolNodeConfigEphemeralStorageLocalSsdConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -15060,11 +15090,15 @@ class NodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
15060
15090
|
return super().get(key, default)
|
15061
15091
|
|
15062
15092
|
def __init__(__self__, *,
|
15063
|
-
local_ssd_count: builtins.int
|
15093
|
+
local_ssd_count: builtins.int,
|
15094
|
+
data_cache_count: Optional[builtins.int] = None):
|
15064
15095
|
"""
|
15065
15096
|
:param builtins.int local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD must be 375 or 3000 GB in size, and all local SSDs must share the same size.
|
15097
|
+
:param builtins.int data_cache_count: Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
15066
15098
|
"""
|
15067
15099
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
15100
|
+
if data_cache_count is not None:
|
15101
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
15068
15102
|
|
15069
15103
|
@property
|
15070
15104
|
@pulumi.getter(name="localSsdCount")
|
@@ -15074,6 +15108,14 @@ class NodePoolNodeConfigEphemeralStorageLocalSsdConfig(dict):
|
|
15074
15108
|
"""
|
15075
15109
|
return pulumi.get(self, "local_ssd_count")
|
15076
15110
|
|
15111
|
+
@property
|
15112
|
+
@pulumi.getter(name="dataCacheCount")
|
15113
|
+
def data_cache_count(self) -> Optional[builtins.int]:
|
15114
|
+
"""
|
15115
|
+
Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
15116
|
+
"""
|
15117
|
+
return pulumi.get(self, "data_cache_count")
|
15118
|
+
|
15077
15119
|
|
15078
15120
|
@pulumi.output_type
|
15079
15121
|
class NodePoolNodeConfigFastSocket(dict):
|
@@ -18887,12 +18929,23 @@ class GetClusterNodeConfigEphemeralStorageConfigResult(dict):
|
|
18887
18929
|
@pulumi.output_type
|
18888
18930
|
class GetClusterNodeConfigEphemeralStorageLocalSsdConfigResult(dict):
|
18889
18931
|
def __init__(__self__, *,
|
18932
|
+
data_cache_count: builtins.int,
|
18890
18933
|
local_ssd_count: builtins.int):
|
18891
18934
|
"""
|
18935
|
+
:param builtins.int data_cache_count: Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
18892
18936
|
:param builtins.int local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD must be 375 or 3000 GB in size, and all local SSDs must share the same size.
|
18893
18937
|
"""
|
18938
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
18894
18939
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
18895
18940
|
|
18941
|
+
@property
|
18942
|
+
@pulumi.getter(name="dataCacheCount")
|
18943
|
+
def data_cache_count(self) -> builtins.int:
|
18944
|
+
"""
|
18945
|
+
Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
18946
|
+
"""
|
18947
|
+
return pulumi.get(self, "data_cache_count")
|
18948
|
+
|
18896
18949
|
@property
|
18897
18950
|
@pulumi.getter(name="localSsdCount")
|
18898
18951
|
def local_ssd_count(self) -> builtins.int:
|
@@ -21013,12 +21066,23 @@ class GetClusterNodePoolNodeConfigEphemeralStorageConfigResult(dict):
|
|
21013
21066
|
@pulumi.output_type
|
21014
21067
|
class GetClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigResult(dict):
|
21015
21068
|
def __init__(__self__, *,
|
21069
|
+
data_cache_count: builtins.int,
|
21016
21070
|
local_ssd_count: builtins.int):
|
21017
21071
|
"""
|
21072
|
+
:param builtins.int data_cache_count: Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
21018
21073
|
:param builtins.int local_ssd_count: Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD must be 375 or 3000 GB in size, and all local SSDs must share the same size.
|
21019
21074
|
"""
|
21075
|
+
pulumi.set(__self__, "data_cache_count", data_cache_count)
|
21020
21076
|
pulumi.set(__self__, "local_ssd_count", local_ssd_count)
|
21021
21077
|
|
21078
|
+
@property
|
21079
|
+
@pulumi.getter(name="dataCacheCount")
|
21080
|
+
def data_cache_count(self) -> builtins.int:
|
21081
|
+
"""
|
21082
|
+
Number of local SSDs to be utilized for GKE Data Cache. Uses NVMe interfaces.
|
21083
|
+
"""
|
21084
|
+
return pulumi.get(self, "data_cache_count")
|
21085
|
+
|
21022
21086
|
@property
|
21023
21087
|
@pulumi.getter(name="localSsdCount")
|
21024
21088
|
def local_ssd_count(self) -> builtins.int:
|