pulumi-gcp 8.2.0a1726671837__py3-none-any.whl → 8.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. pulumi_gcp/__init__.py +158 -0
  2. pulumi_gcp/alloydb/_inputs.py +20 -0
  3. pulumi_gcp/alloydb/instance.py +36 -0
  4. pulumi_gcp/alloydb/outputs.py +14 -0
  5. pulumi_gcp/bigquery/__init__.py +1 -0
  6. pulumi_gcp/bigquery/get_tables.py +143 -0
  7. pulumi_gcp/bigquery/outputs.py +30 -0
  8. pulumi_gcp/compute/__init__.py +2 -0
  9. pulumi_gcp/compute/_inputs.py +12481 -9158
  10. pulumi_gcp/compute/attached_disk.py +103 -0
  11. pulumi_gcp/compute/backend_service.py +29 -22
  12. pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
  13. pulumi_gcp/compute/get_instance.py +3 -0
  14. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  15. pulumi_gcp/compute/outputs.py +3695 -1293
  16. pulumi_gcp/compute/region_backend_service.py +29 -22
  17. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  18. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  19. pulumi_gcp/compute/router_nat.py +27 -66
  20. pulumi_gcp/compute/service_attachment.py +75 -0
  21. pulumi_gcp/compute/target_http_proxy.py +49 -28
  22. pulumi_gcp/compute/target_https_proxy.py +49 -28
  23. pulumi_gcp/config/__init__.pyi +6 -0
  24. pulumi_gcp/config/vars.py +12 -0
  25. pulumi_gcp/container/_inputs.py +168 -99
  26. pulumi_gcp/container/attached_cluster.py +54 -1
  27. pulumi_gcp/container/outputs.py +155 -70
  28. pulumi_gcp/databasemigrationservice/__init__.py +1 -0
  29. pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
  30. pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
  31. pulumi_gcp/databasemigrationservice/outputs.py +268 -0
  32. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  33. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  34. pulumi_gcp/dataproc/metastore_service.py +95 -0
  35. pulumi_gcp/datastream/stream.py +21 -14
  36. pulumi_gcp/developerconnect/__init__.py +11 -0
  37. pulumi_gcp/developerconnect/_inputs.py +304 -0
  38. pulumi_gcp/developerconnect/connection.py +1037 -0
  39. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  40. pulumi_gcp/developerconnect/outputs.py +249 -0
  41. pulumi_gcp/discoveryengine/__init__.py +1 -0
  42. pulumi_gcp/discoveryengine/_inputs.py +131 -0
  43. pulumi_gcp/discoveryengine/outputs.py +131 -0
  44. pulumi_gcp/discoveryengine/target_site.py +870 -0
  45. pulumi_gcp/dns/managed_zone.py +1 -1
  46. pulumi_gcp/filestore/get_instance.py +21 -1
  47. pulumi_gcp/filestore/instance.py +94 -0
  48. pulumi_gcp/gkehub/feature_membership.py +140 -62
  49. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  50. pulumi_gcp/gkeonprem/outputs.py +2 -2
  51. pulumi_gcp/healthcare/__init__.py +1 -0
  52. pulumi_gcp/healthcare/_inputs.py +39 -0
  53. pulumi_gcp/healthcare/outputs.py +40 -0
  54. pulumi_gcp/healthcare/workspace.py +465 -0
  55. pulumi_gcp/looker/instance.py +81 -0
  56. pulumi_gcp/memorystore/__init__.py +10 -0
  57. pulumi_gcp/memorystore/_inputs.py +731 -0
  58. pulumi_gcp/memorystore/instance.py +1663 -0
  59. pulumi_gcp/memorystore/outputs.py +598 -0
  60. pulumi_gcp/netapp/_inputs.py +63 -0
  61. pulumi_gcp/netapp/outputs.py +57 -0
  62. pulumi_gcp/netapp/storage_pool.py +54 -0
  63. pulumi_gcp/netapp/volume.py +183 -0
  64. pulumi_gcp/organizations/folder.py +52 -33
  65. pulumi_gcp/provider.py +60 -0
  66. pulumi_gcp/pubsub/subscription.py +43 -7
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/secretmanager/__init__.py +8 -0
  69. pulumi_gcp/secretmanager/_inputs.py +308 -0
  70. pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
  71. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
  72. pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
  73. pulumi_gcp/secretmanager/outputs.py +336 -0
  74. pulumi_gcp/secretmanager/regional_secret.py +1433 -0
  75. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
  76. pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
  77. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
  78. pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
  79. pulumi_gcp/securitycenter/__init__.py +4 -0
  80. pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
  81. pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
  82. pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
  83. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
  84. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
  85. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  86. pulumi_gcp/siteverification/__init__.py +3 -0
  87. pulumi_gcp/siteverification/_inputs.py +85 -0
  88. pulumi_gcp/siteverification/outputs.py +57 -0
  89. pulumi_gcp/siteverification/web_resource.py +398 -0
  90. pulumi_gcp/spanner/__init__.py +1 -0
  91. pulumi_gcp/spanner/_inputs.py +129 -0
  92. pulumi_gcp/spanner/backup_schedule.py +748 -0
  93. pulumi_gcp/spanner/get_instance.py +11 -1
  94. pulumi_gcp/spanner/instance.py +56 -0
  95. pulumi_gcp/spanner/outputs.py +93 -0
  96. pulumi_gcp/vpcaccess/connector.py +21 -28
  97. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/METADATA +1 -1
  98. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/RECORD +100 -69
  99. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/WHEEL +0 -0
  100. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/top_level.txt +0 -0
@@ -37,6 +37,8 @@ __all__ = [
37
37
  'AttachedClusterProxyConfigArgsDict',
38
38
  'AttachedClusterProxyConfigKubernetesSecretArgs',
39
39
  'AttachedClusterProxyConfigKubernetesSecretArgsDict',
40
+ 'AttachedClusterSecurityPostureConfigArgs',
41
+ 'AttachedClusterSecurityPostureConfigArgsDict',
40
42
  'AttachedClusterWorkloadIdentityConfigArgs',
41
43
  'AttachedClusterWorkloadIdentityConfigArgsDict',
42
44
  'AwsClusterAuthorizationArgs',
@@ -1018,6 +1020,40 @@ class AttachedClusterProxyConfigKubernetesSecretArgs:
1018
1020
  pulumi.set(self, "namespace", value)
1019
1021
 
1020
1022
 
1023
+ if not MYPY:
1024
+ class AttachedClusterSecurityPostureConfigArgsDict(TypedDict):
1025
+ vulnerability_mode: pulumi.Input[str]
1026
+ """
1027
+ Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1028
+ Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1029
+ """
1030
+ elif False:
1031
+ AttachedClusterSecurityPostureConfigArgsDict: TypeAlias = Mapping[str, Any]
1032
+
1033
+ @pulumi.input_type
1034
+ class AttachedClusterSecurityPostureConfigArgs:
1035
+ def __init__(__self__, *,
1036
+ vulnerability_mode: pulumi.Input[str]):
1037
+ """
1038
+ :param pulumi.Input[str] vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1039
+ Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1040
+ """
1041
+ pulumi.set(__self__, "vulnerability_mode", vulnerability_mode)
1042
+
1043
+ @property
1044
+ @pulumi.getter(name="vulnerabilityMode")
1045
+ def vulnerability_mode(self) -> pulumi.Input[str]:
1046
+ """
1047
+ Sets the mode of the Kubernetes security posture API's workload vulnerability scanning.
1048
+ Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_ENTERPRISE`.
1049
+ """
1050
+ return pulumi.get(self, "vulnerability_mode")
1051
+
1052
+ @vulnerability_mode.setter
1053
+ def vulnerability_mode(self, value: pulumi.Input[str]):
1054
+ pulumi.set(self, "vulnerability_mode", value)
1055
+
1056
+
1021
1057
  if not MYPY:
1022
1058
  class AttachedClusterWorkloadIdentityConfigArgsDict(TypedDict):
1023
1059
  identity_provider: NotRequired[pulumi.Input[str]]
@@ -8203,6 +8239,10 @@ if not MYPY:
8203
8239
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
8204
8240
  for more information. Defaults to false.
8205
8241
  """
8242
+ storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
8243
+ """
8244
+ The list of Storage Pools where boot disks are provisioned.
8245
+ """
8206
8246
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
8207
8247
  """
8208
8248
  The list of instance tags applied to all nodes. Tags are used to identify
@@ -8267,6 +8307,7 @@ class ClusterNodeConfigArgs:
8267
8307
  shielded_instance_config: Optional[pulumi.Input['ClusterNodeConfigShieldedInstanceConfigArgs']] = None,
8268
8308
  sole_tenant_config: Optional[pulumi.Input['ClusterNodeConfigSoleTenantConfigArgs']] = None,
8269
8309
  spot: Optional[pulumi.Input[bool]] = None,
8310
+ storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8270
8311
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8271
8312
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]]] = None,
8272
8313
  workload_metadata_config: Optional[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -8357,6 +8398,7 @@ class ClusterNodeConfigArgs:
8357
8398
  :param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
8358
8399
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
8359
8400
  for more information. Defaults to false.
8401
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
8360
8402
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
8361
8403
  valid sources or targets for network firewalls.
8362
8404
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -8444,6 +8486,8 @@ class ClusterNodeConfigArgs:
8444
8486
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
8445
8487
  if spot is not None:
8446
8488
  pulumi.set(__self__, "spot", spot)
8489
+ if storage_pools is not None:
8490
+ pulumi.set(__self__, "storage_pools", storage_pools)
8447
8491
  if tags is not None:
8448
8492
  pulumi.set(__self__, "tags", tags)
8449
8493
  if taints is not None:
@@ -8944,6 +8988,18 @@ class ClusterNodeConfigArgs:
8944
8988
  def spot(self, value: Optional[pulumi.Input[bool]]):
8945
8989
  pulumi.set(self, "spot", value)
8946
8990
 
8991
+ @property
8992
+ @pulumi.getter(name="storagePools")
8993
+ def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
8994
+ """
8995
+ The list of Storage Pools where boot disks are provisioned.
8996
+ """
8997
+ return pulumi.get(self, "storage_pools")
8998
+
8999
+ @storage_pools.setter
9000
+ def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
9001
+ pulumi.set(self, "storage_pools", value)
9002
+
8947
9003
  @property
8948
9004
  @pulumi.getter
8949
9005
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -9714,12 +9770,6 @@ class ClusterNodeConfigHostMaintenancePolicyArgs:
9714
9770
 
9715
9771
  if not MYPY:
9716
9772
  class ClusterNodeConfigKubeletConfigArgsDict(TypedDict):
9717
- cpu_manager_policy: pulumi.Input[str]
9718
- """
9719
- The CPU management policy on the node. See
9720
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9721
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
9722
- """
9723
9773
  cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
9724
9774
  """
9725
9775
  If true, enables CPU CFS quota enforcement for
@@ -9731,11 +9781,12 @@ if not MYPY:
9731
9781
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
9732
9782
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
9733
9783
  "h". The value must be a positive duration.
9734
-
9735
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
9736
- value and accepts an invalid `default` value instead. While this remains true,
9737
- not specifying the `kubelet_config` block should be the equivalent of specifying
9738
- `none`.
9784
+ """
9785
+ cpu_manager_policy: NotRequired[pulumi.Input[str]]
9786
+ """
9787
+ The CPU management policy on the node. See
9788
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9789
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9739
9790
  """
9740
9791
  insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
9741
9792
  """
@@ -9751,53 +9802,35 @@ elif False:
9751
9802
  @pulumi.input_type
9752
9803
  class ClusterNodeConfigKubeletConfigArgs:
9753
9804
  def __init__(__self__, *,
9754
- cpu_manager_policy: pulumi.Input[str],
9755
9805
  cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
9756
9806
  cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
9807
+ cpu_manager_policy: Optional[pulumi.Input[str]] = None,
9757
9808
  insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
9758
9809
  pod_pids_limit: Optional[pulumi.Input[int]] = None):
9759
9810
  """
9760
- :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
9761
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9762
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
9763
9811
  :param pulumi.Input[bool] cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
9764
9812
  containers that specify CPU limits.
9765
9813
  :param pulumi.Input[str] cpu_cfs_quota_period: The CPU CFS quota period value. Specified
9766
9814
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
9767
9815
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
9768
9816
  "h". The value must be a positive duration.
9769
-
9770
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
9771
- value and accepts an invalid `default` value instead. While this remains true,
9772
- not specifying the `kubelet_config` block should be the equivalent of specifying
9773
- `none`.
9817
+ :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
9818
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9819
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9774
9820
  :param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
9775
9821
  :param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
9776
9822
  """
9777
- pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
9778
9823
  if cpu_cfs_quota is not None:
9779
9824
  pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
9780
9825
  if cpu_cfs_quota_period is not None:
9781
9826
  pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
9827
+ if cpu_manager_policy is not None:
9828
+ pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
9782
9829
  if insecure_kubelet_readonly_port_enabled is not None:
9783
9830
  pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
9784
9831
  if pod_pids_limit is not None:
9785
9832
  pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
9786
9833
 
9787
- @property
9788
- @pulumi.getter(name="cpuManagerPolicy")
9789
- def cpu_manager_policy(self) -> pulumi.Input[str]:
9790
- """
9791
- The CPU management policy on the node. See
9792
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9793
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
9794
- """
9795
- return pulumi.get(self, "cpu_manager_policy")
9796
-
9797
- @cpu_manager_policy.setter
9798
- def cpu_manager_policy(self, value: pulumi.Input[str]):
9799
- pulumi.set(self, "cpu_manager_policy", value)
9800
-
9801
9834
  @property
9802
9835
  @pulumi.getter(name="cpuCfsQuota")
9803
9836
  def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
@@ -9819,11 +9852,6 @@ class ClusterNodeConfigKubeletConfigArgs:
9819
9852
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
9820
9853
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
9821
9854
  "h". The value must be a positive duration.
9822
-
9823
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
9824
- value and accepts an invalid `default` value instead. While this remains true,
9825
- not specifying the `kubelet_config` block should be the equivalent of specifying
9826
- `none`.
9827
9855
  """
9828
9856
  return pulumi.get(self, "cpu_cfs_quota_period")
9829
9857
 
@@ -9831,6 +9859,20 @@ class ClusterNodeConfigKubeletConfigArgs:
9831
9859
  def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
9832
9860
  pulumi.set(self, "cpu_cfs_quota_period", value)
9833
9861
 
9862
+ @property
9863
+ @pulumi.getter(name="cpuManagerPolicy")
9864
+ def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
9865
+ """
9866
+ The CPU management policy on the node. See
9867
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
9868
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
9869
+ """
9870
+ return pulumi.get(self, "cpu_manager_policy")
9871
+
9872
+ @cpu_manager_policy.setter
9873
+ def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
9874
+ pulumi.set(self, "cpu_manager_policy", value)
9875
+
9834
9876
  @property
9835
9877
  @pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
9836
9878
  def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
@@ -12016,6 +12058,10 @@ if not MYPY:
12016
12058
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
12017
12059
  for more information. Defaults to false.
12018
12060
  """
12061
+ storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
12062
+ """
12063
+ The list of Storage Pools where boot disks are provisioned.
12064
+ """
12019
12065
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
12020
12066
  """
12021
12067
  The list of instance tags applied to all nodes. Tags are used to identify
@@ -12080,6 +12126,7 @@ class ClusterNodePoolNodeConfigArgs:
12080
12126
  shielded_instance_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
12081
12127
  sole_tenant_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigSoleTenantConfigArgs']] = None,
12082
12128
  spot: Optional[pulumi.Input[bool]] = None,
12129
+ storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12083
12130
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12084
12131
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]]] = None,
12085
12132
  workload_metadata_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -12170,6 +12217,7 @@ class ClusterNodePoolNodeConfigArgs:
12170
12217
  :param pulumi.Input[bool] spot: A boolean that represents whether the underlying node VMs are spot.
12171
12218
  See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms)
12172
12219
  for more information. Defaults to false.
12220
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
12173
12221
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes. Tags are used to identify
12174
12222
  valid sources or targets for network firewalls.
12175
12223
  :param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]] taints: A list of [Kubernetes taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/)
@@ -12257,6 +12305,8 @@ class ClusterNodePoolNodeConfigArgs:
12257
12305
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
12258
12306
  if spot is not None:
12259
12307
  pulumi.set(__self__, "spot", spot)
12308
+ if storage_pools is not None:
12309
+ pulumi.set(__self__, "storage_pools", storage_pools)
12260
12310
  if tags is not None:
12261
12311
  pulumi.set(__self__, "tags", tags)
12262
12312
  if taints is not None:
@@ -12757,6 +12807,18 @@ class ClusterNodePoolNodeConfigArgs:
12757
12807
  def spot(self, value: Optional[pulumi.Input[bool]]):
12758
12808
  pulumi.set(self, "spot", value)
12759
12809
 
12810
+ @property
12811
+ @pulumi.getter(name="storagePools")
12812
+ def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
12813
+ """
12814
+ The list of Storage Pools where boot disks are provisioned.
12815
+ """
12816
+ return pulumi.get(self, "storage_pools")
12817
+
12818
+ @storage_pools.setter
12819
+ def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
12820
+ pulumi.set(self, "storage_pools", value)
12821
+
12760
12822
  @property
12761
12823
  @pulumi.getter
12762
12824
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -13527,12 +13589,6 @@ class ClusterNodePoolNodeConfigHostMaintenancePolicyArgs:
13527
13589
 
13528
13590
  if not MYPY:
13529
13591
  class ClusterNodePoolNodeConfigKubeletConfigArgsDict(TypedDict):
13530
- cpu_manager_policy: pulumi.Input[str]
13531
- """
13532
- The CPU management policy on the node. See
13533
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13534
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
13535
- """
13536
13592
  cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
13537
13593
  """
13538
13594
  If true, enables CPU CFS quota enforcement for
@@ -13544,11 +13600,12 @@ if not MYPY:
13544
13600
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
13545
13601
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
13546
13602
  "h". The value must be a positive duration.
13547
-
13548
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
13549
- value and accepts an invalid `default` value instead. While this remains true,
13550
- not specifying the `kubelet_config` block should be the equivalent of specifying
13551
- `none`.
13603
+ """
13604
+ cpu_manager_policy: NotRequired[pulumi.Input[str]]
13605
+ """
13606
+ The CPU management policy on the node. See
13607
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13608
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13552
13609
  """
13553
13610
  insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
13554
13611
  """
@@ -13564,53 +13621,35 @@ elif False:
13564
13621
  @pulumi.input_type
13565
13622
  class ClusterNodePoolNodeConfigKubeletConfigArgs:
13566
13623
  def __init__(__self__, *,
13567
- cpu_manager_policy: pulumi.Input[str],
13568
13624
  cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
13569
13625
  cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
13626
+ cpu_manager_policy: Optional[pulumi.Input[str]] = None,
13570
13627
  insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
13571
13628
  pod_pids_limit: Optional[pulumi.Input[int]] = None):
13572
13629
  """
13573
- :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
13574
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13575
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
13576
13630
  :param pulumi.Input[bool] cpu_cfs_quota: If true, enables CPU CFS quota enforcement for
13577
13631
  containers that specify CPU limits.
13578
13632
  :param pulumi.Input[str] cpu_cfs_quota_period: The CPU CFS quota period value. Specified
13579
13633
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
13580
13634
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
13581
13635
  "h". The value must be a positive duration.
13582
-
13583
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
13584
- value and accepts an invalid `default` value instead. While this remains true,
13585
- not specifying the `kubelet_config` block should be the equivalent of specifying
13586
- `none`.
13636
+ :param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
13637
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13638
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13587
13639
  :param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
13588
13640
  :param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.
13589
13641
  """
13590
- pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
13591
13642
  if cpu_cfs_quota is not None:
13592
13643
  pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
13593
13644
  if cpu_cfs_quota_period is not None:
13594
13645
  pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
13646
+ if cpu_manager_policy is not None:
13647
+ pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
13595
13648
  if insecure_kubelet_readonly_port_enabled is not None:
13596
13649
  pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
13597
13650
  if pod_pids_limit is not None:
13598
13651
  pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
13599
13652
 
13600
- @property
13601
- @pulumi.getter(name="cpuManagerPolicy")
13602
- def cpu_manager_policy(self) -> pulumi.Input[str]:
13603
- """
13604
- The CPU management policy on the node. See
13605
- [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13606
- One of `"none"` or `"static"`. Defaults to `none` when `kubelet_config` is unset.
13607
- """
13608
- return pulumi.get(self, "cpu_manager_policy")
13609
-
13610
- @cpu_manager_policy.setter
13611
- def cpu_manager_policy(self, value: pulumi.Input[str]):
13612
- pulumi.set(self, "cpu_manager_policy", value)
13613
-
13614
13653
  @property
13615
13654
  @pulumi.getter(name="cpuCfsQuota")
13616
13655
  def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
@@ -13632,11 +13671,6 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
13632
13671
  as a sequence of decimal numbers, each with optional fraction and a unit suffix,
13633
13672
  such as `"300ms"`. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m",
13634
13673
  "h". The value must be a positive duration.
13635
-
13636
- > Note: At the time of writing (2020/08/18) the GKE API rejects the `none`
13637
- value and accepts an invalid `default` value instead. While this remains true,
13638
- not specifying the `kubelet_config` block should be the equivalent of specifying
13639
- `none`.
13640
13674
  """
13641
13675
  return pulumi.get(self, "cpu_cfs_quota_period")
13642
13676
 
@@ -13644,6 +13678,20 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
13644
13678
  def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
13645
13679
  pulumi.set(self, "cpu_cfs_quota_period", value)
13646
13680
 
13681
+ @property
13682
+ @pulumi.getter(name="cpuManagerPolicy")
13683
+ def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
13684
+ """
13685
+ The CPU management policy on the node. See
13686
+ [K8S CPU Management Policies](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/).
13687
+ One of `"none"` or `"static"`. If unset (or set to the empty string `""`), the API will treat the field as if set to "none".
13688
+ """
13689
+ return pulumi.get(self, "cpu_manager_policy")
13690
+
13691
+ @cpu_manager_policy.setter
13692
+ def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
13693
+ pulumi.set(self, "cpu_manager_policy", value)
13694
+
13647
13695
  @property
13648
13696
  @pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
13649
13697
  def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
@@ -16224,6 +16272,10 @@ if not MYPY:
16224
16272
  """
16225
16273
  Whether the nodes are created as spot VM instances.
16226
16274
  """
16275
+ storage_pools: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
16276
+ """
16277
+ The list of Storage Pools where boot disks are provisioned.
16278
+ """
16227
16279
  tags: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
16228
16280
  """
16229
16281
  The list of instance tags applied to all nodes.
@@ -16279,6 +16331,7 @@ class NodePoolNodeConfigArgs:
16279
16331
  shielded_instance_config: Optional[pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs']] = None,
16280
16332
  sole_tenant_config: Optional[pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs']] = None,
16281
16333
  spot: Optional[pulumi.Input[bool]] = None,
16334
+ storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16282
16335
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
16283
16336
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]]] = None,
16284
16337
  workload_metadata_config: Optional[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
@@ -16323,6 +16376,7 @@ class NodePoolNodeConfigArgs:
16323
16376
  :param pulumi.Input['NodePoolNodeConfigShieldedInstanceConfigArgs'] shielded_instance_config: Shielded Instance options.
16324
16377
  :param pulumi.Input['NodePoolNodeConfigSoleTenantConfigArgs'] sole_tenant_config: Node affinity options for sole tenant node pools.
16325
16378
  :param pulumi.Input[bool] spot: Whether the nodes are created as spot VM instances.
16379
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
16326
16380
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes.
16327
16381
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]] taints: List of Kubernetes taints to be applied to each node.
16328
16382
  :param pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: The workload metadata configuration for this node.
@@ -16401,6 +16455,8 @@ class NodePoolNodeConfigArgs:
16401
16455
  pulumi.set(__self__, "sole_tenant_config", sole_tenant_config)
16402
16456
  if spot is not None:
16403
16457
  pulumi.set(__self__, "spot", spot)
16458
+ if storage_pools is not None:
16459
+ pulumi.set(__self__, "storage_pools", storage_pools)
16404
16460
  if tags is not None:
16405
16461
  pulumi.set(__self__, "tags", tags)
16406
16462
  if taints is not None:
@@ -16855,6 +16911,18 @@ class NodePoolNodeConfigArgs:
16855
16911
  def spot(self, value: Optional[pulumi.Input[bool]]):
16856
16912
  pulumi.set(self, "spot", value)
16857
16913
 
16914
+ @property
16915
+ @pulumi.getter(name="storagePools")
16916
+ def storage_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
16917
+ """
16918
+ The list of Storage Pools where boot disks are provisioned.
16919
+ """
16920
+ return pulumi.get(self, "storage_pools")
16921
+
16922
+ @storage_pools.setter
16923
+ def storage_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
16924
+ pulumi.set(self, "storage_pools", value)
16925
+
16858
16926
  @property
16859
16927
  @pulumi.getter
16860
16928
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -17589,10 +17657,6 @@ class NodePoolNodeConfigHostMaintenancePolicyArgs:
17589
17657
 
17590
17658
  if not MYPY:
17591
17659
  class NodePoolNodeConfigKubeletConfigArgsDict(TypedDict):
17592
- cpu_manager_policy: pulumi.Input[str]
17593
- """
17594
- Control the CPU management policy on the node.
17595
- """
17596
17660
  cpu_cfs_quota: NotRequired[pulumi.Input[bool]]
17597
17661
  """
17598
17662
  Enable CPU CFS quota enforcement for containers that specify CPU limits.
@@ -17601,6 +17665,10 @@ if not MYPY:
17601
17665
  """
17602
17666
  Set the CPU CFS quota period value 'cpu.cfs_period_us'.
17603
17667
  """
17668
+ cpu_manager_policy: NotRequired[pulumi.Input[str]]
17669
+ """
17670
+ Control the CPU management policy on the node.
17671
+ """
17604
17672
  insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
17605
17673
  """
17606
17674
  Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
@@ -17615,40 +17683,29 @@ elif False:
17615
17683
  @pulumi.input_type
17616
17684
  class NodePoolNodeConfigKubeletConfigArgs:
17617
17685
  def __init__(__self__, *,
17618
- cpu_manager_policy: pulumi.Input[str],
17619
17686
  cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
17620
17687
  cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
17688
+ cpu_manager_policy: Optional[pulumi.Input[str]] = None,
17621
17689
  insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
17622
17690
  pod_pids_limit: Optional[pulumi.Input[int]] = None):
17623
17691
  """
17624
- :param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
17625
17692
  :param pulumi.Input[bool] cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
17626
17693
  :param pulumi.Input[str] cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
17694
+ :param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
17627
17695
  :param pulumi.Input[str] insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
17628
17696
  :param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
17629
17697
  """
17630
- pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
17631
17698
  if cpu_cfs_quota is not None:
17632
17699
  pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
17633
17700
  if cpu_cfs_quota_period is not None:
17634
17701
  pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
17702
+ if cpu_manager_policy is not None:
17703
+ pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
17635
17704
  if insecure_kubelet_readonly_port_enabled is not None:
17636
17705
  pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
17637
17706
  if pod_pids_limit is not None:
17638
17707
  pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
17639
17708
 
17640
- @property
17641
- @pulumi.getter(name="cpuManagerPolicy")
17642
- def cpu_manager_policy(self) -> pulumi.Input[str]:
17643
- """
17644
- Control the CPU management policy on the node.
17645
- """
17646
- return pulumi.get(self, "cpu_manager_policy")
17647
-
17648
- @cpu_manager_policy.setter
17649
- def cpu_manager_policy(self, value: pulumi.Input[str]):
17650
- pulumi.set(self, "cpu_manager_policy", value)
17651
-
17652
17709
  @property
17653
17710
  @pulumi.getter(name="cpuCfsQuota")
17654
17711
  def cpu_cfs_quota(self) -> Optional[pulumi.Input[bool]]:
@@ -17673,6 +17730,18 @@ class NodePoolNodeConfigKubeletConfigArgs:
17673
17730
  def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
17674
17731
  pulumi.set(self, "cpu_cfs_quota_period", value)
17675
17732
 
17733
+ @property
17734
+ @pulumi.getter(name="cpuManagerPolicy")
17735
+ def cpu_manager_policy(self) -> Optional[pulumi.Input[str]]:
17736
+ """
17737
+ Control the CPU management policy on the node.
17738
+ """
17739
+ return pulumi.get(self, "cpu_manager_policy")
17740
+
17741
+ @cpu_manager_policy.setter
17742
+ def cpu_manager_policy(self, value: Optional[pulumi.Input[str]]):
17743
+ pulumi.set(self, "cpu_manager_policy", value)
17744
+
17676
17745
  @property
17677
17746
  @pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
17678
17747
  def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]: