pulumi-gcp 8.0.0rc0__py3-none-any.whl → 8.1.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.
- pulumi_gcp/__init__.py +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0rc0.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0rc0.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0rc0.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0rc0.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/outputs.py
CHANGED
@@ -170,6 +170,7 @@ __all__ = [
|
|
170
170
|
'ClusterNodePool',
|
171
171
|
'ClusterNodePoolAutoConfig',
|
172
172
|
'ClusterNodePoolAutoConfigNetworkTags',
|
173
|
+
'ClusterNodePoolAutoConfigNodeKubeletConfig',
|
173
174
|
'ClusterNodePoolAutoscaling',
|
174
175
|
'ClusterNodePoolDefaults',
|
175
176
|
'ClusterNodePoolDefaultsNodeConfigDefaults',
|
@@ -362,6 +363,7 @@ __all__ = [
|
|
362
363
|
'GetClusterNodePoolResult',
|
363
364
|
'GetClusterNodePoolAutoConfigResult',
|
364
365
|
'GetClusterNodePoolAutoConfigNetworkTagResult',
|
366
|
+
'GetClusterNodePoolAutoConfigNodeKubeletConfigResult',
|
365
367
|
'GetClusterNodePoolAutoscalingResult',
|
366
368
|
'GetClusterNodePoolDefaultResult',
|
367
369
|
'GetClusterNodePoolDefaultNodeConfigDefaultResult',
|
@@ -7875,6 +7877,8 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7875
7877
|
suggest = "cpu_cfs_quota"
|
7876
7878
|
elif key == "cpuCfsQuotaPeriod":
|
7877
7879
|
suggest = "cpu_cfs_quota_period"
|
7880
|
+
elif key == "insecureKubeletReadonlyPortEnabled":
|
7881
|
+
suggest = "insecure_kubelet_readonly_port_enabled"
|
7878
7882
|
elif key == "podPidsLimit":
|
7879
7883
|
suggest = "pod_pids_limit"
|
7880
7884
|
|
@@ -7893,6 +7897,7 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7893
7897
|
cpu_manager_policy: str,
|
7894
7898
|
cpu_cfs_quota: Optional[bool] = None,
|
7895
7899
|
cpu_cfs_quota_period: Optional[str] = None,
|
7900
|
+
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
7896
7901
|
pod_pids_limit: Optional[int] = None):
|
7897
7902
|
"""
|
7898
7903
|
:param str cpu_manager_policy: The CPU management policy on the node. See
|
@@ -7909,6 +7914,7 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7909
7914
|
value and accepts an invalid `default` value instead. While this remains true,
|
7910
7915
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
7911
7916
|
`none`.
|
7917
|
+
:param 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`.
|
7912
7918
|
:param 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.
|
7913
7919
|
"""
|
7914
7920
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -7916,6 +7922,8 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7916
7922
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
7917
7923
|
if cpu_cfs_quota_period is not None:
|
7918
7924
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
7925
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
7926
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
7919
7927
|
if pod_pids_limit is not None:
|
7920
7928
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
7921
7929
|
|
@@ -7954,6 +7962,14 @@ class ClusterNodeConfigKubeletConfig(dict):
|
|
7954
7962
|
"""
|
7955
7963
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
7956
7964
|
|
7965
|
+
@property
|
7966
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
7967
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
7968
|
+
"""
|
7969
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
7970
|
+
"""
|
7971
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
7972
|
+
|
7957
7973
|
@property
|
7958
7974
|
@pulumi.getter(name="podPidsLimit")
|
7959
7975
|
def pod_pids_limit(self) -> Optional[int]:
|
@@ -8707,6 +8723,8 @@ class ClusterNodePoolAutoConfig(dict):
|
|
8707
8723
|
suggest = None
|
8708
8724
|
if key == "networkTags":
|
8709
8725
|
suggest = "network_tags"
|
8726
|
+
elif key == "nodeKubeletConfig":
|
8727
|
+
suggest = "node_kubelet_config"
|
8710
8728
|
elif key == "resourceManagerTags":
|
8711
8729
|
suggest = "resource_manager_tags"
|
8712
8730
|
|
@@ -8723,13 +8741,18 @@ class ClusterNodePoolAutoConfig(dict):
|
|
8723
8741
|
|
8724
8742
|
def __init__(__self__, *,
|
8725
8743
|
network_tags: Optional['outputs.ClusterNodePoolAutoConfigNetworkTags'] = None,
|
8744
|
+
node_kubelet_config: Optional['outputs.ClusterNodePoolAutoConfigNodeKubeletConfig'] = None,
|
8726
8745
|
resource_manager_tags: Optional[Mapping[str, str]] = None):
|
8727
8746
|
"""
|
8728
|
-
:param 'ClusterNodePoolAutoConfigNetworkTagsArgs' network_tags: The network tag config for the cluster's automatically provisioned node pools.
|
8747
|
+
:param 'ClusterNodePoolAutoConfigNetworkTagsArgs' network_tags: The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
8748
|
+
:param 'ClusterNodePoolAutoConfigNodeKubeletConfigArgs' node_kubelet_config: Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
8749
|
+
Structure is documented below.
|
8729
8750
|
:param Mapping[str, str] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
8730
8751
|
"""
|
8731
8752
|
if network_tags is not None:
|
8732
8753
|
pulumi.set(__self__, "network_tags", network_tags)
|
8754
|
+
if node_kubelet_config is not None:
|
8755
|
+
pulumi.set(__self__, "node_kubelet_config", node_kubelet_config)
|
8733
8756
|
if resource_manager_tags is not None:
|
8734
8757
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
8735
8758
|
|
@@ -8737,10 +8760,19 @@ class ClusterNodePoolAutoConfig(dict):
|
|
8737
8760
|
@pulumi.getter(name="networkTags")
|
8738
8761
|
def network_tags(self) -> Optional['outputs.ClusterNodePoolAutoConfigNetworkTags']:
|
8739
8762
|
"""
|
8740
|
-
The network tag config for the cluster's automatically provisioned node pools.
|
8763
|
+
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
8741
8764
|
"""
|
8742
8765
|
return pulumi.get(self, "network_tags")
|
8743
8766
|
|
8767
|
+
@property
|
8768
|
+
@pulumi.getter(name="nodeKubeletConfig")
|
8769
|
+
def node_kubelet_config(self) -> Optional['outputs.ClusterNodePoolAutoConfigNodeKubeletConfig']:
|
8770
|
+
"""
|
8771
|
+
Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
8772
|
+
Structure is documented below.
|
8773
|
+
"""
|
8774
|
+
return pulumi.get(self, "node_kubelet_config")
|
8775
|
+
|
8744
8776
|
@property
|
8745
8777
|
@pulumi.getter(name="resourceManagerTags")
|
8746
8778
|
def resource_manager_tags(self) -> Optional[Mapping[str, str]]:
|
@@ -8769,6 +8801,42 @@ class ClusterNodePoolAutoConfigNetworkTags(dict):
|
|
8769
8801
|
return pulumi.get(self, "tags")
|
8770
8802
|
|
8771
8803
|
|
8804
|
+
@pulumi.output_type
|
8805
|
+
class ClusterNodePoolAutoConfigNodeKubeletConfig(dict):
|
8806
|
+
@staticmethod
|
8807
|
+
def __key_warning(key: str):
|
8808
|
+
suggest = None
|
8809
|
+
if key == "insecureKubeletReadonlyPortEnabled":
|
8810
|
+
suggest = "insecure_kubelet_readonly_port_enabled"
|
8811
|
+
|
8812
|
+
if suggest:
|
8813
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolAutoConfigNodeKubeletConfig. Access the value via the '{suggest}' property getter instead.")
|
8814
|
+
|
8815
|
+
def __getitem__(self, key: str) -> Any:
|
8816
|
+
ClusterNodePoolAutoConfigNodeKubeletConfig.__key_warning(key)
|
8817
|
+
return super().__getitem__(key)
|
8818
|
+
|
8819
|
+
def get(self, key: str, default = None) -> Any:
|
8820
|
+
ClusterNodePoolAutoConfigNodeKubeletConfig.__key_warning(key)
|
8821
|
+
return super().get(key, default)
|
8822
|
+
|
8823
|
+
def __init__(__self__, *,
|
8824
|
+
insecure_kubelet_readonly_port_enabled: Optional[str] = None):
|
8825
|
+
"""
|
8826
|
+
:param 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`.
|
8827
|
+
"""
|
8828
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
8829
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
8830
|
+
|
8831
|
+
@property
|
8832
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
8833
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
8834
|
+
"""
|
8835
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
8836
|
+
"""
|
8837
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
8838
|
+
|
8839
|
+
|
8772
8840
|
@pulumi.output_type
|
8773
8841
|
class ClusterNodePoolAutoscaling(dict):
|
8774
8842
|
@staticmethod
|
@@ -8906,6 +8974,8 @@ class ClusterNodePoolDefaultsNodeConfigDefaults(dict):
|
|
8906
8974
|
suggest = "containerd_config"
|
8907
8975
|
elif key == "gcfsConfig":
|
8908
8976
|
suggest = "gcfs_config"
|
8977
|
+
elif key == "insecureKubeletReadonlyPortEnabled":
|
8978
|
+
suggest = "insecure_kubelet_readonly_port_enabled"
|
8909
8979
|
elif key == "loggingVariant":
|
8910
8980
|
suggest = "logging_variant"
|
8911
8981
|
|
@@ -8923,16 +8993,20 @@ class ClusterNodePoolDefaultsNodeConfigDefaults(dict):
|
|
8923
8993
|
def __init__(__self__, *,
|
8924
8994
|
containerd_config: Optional['outputs.ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfig'] = None,
|
8925
8995
|
gcfs_config: Optional['outputs.ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfig'] = None,
|
8996
|
+
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
8926
8997
|
logging_variant: Optional[str] = None):
|
8927
8998
|
"""
|
8928
8999
|
:param 'ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigArgs' containerd_config: Parameters for containerd configuration.
|
8929
9000
|
:param 'ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs' gcfs_config: The default Google Container Filesystem (GCFS) configuration at the cluster level. e.g. enable [image streaming](https://cloud.google.com/kubernetes-engine/docs/how-to/image-streaming) across all the node pools within the cluster. Structure is documented below.
|
9001
|
+
:param str insecure_kubelet_readonly_port_enabled: Controls whether the kubelet read-only port is enabled for newly created node pools in the cluster. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
8930
9002
|
:param str logging_variant: The type of logging agent that is deployed by default for newly created node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
|
8931
9003
|
"""
|
8932
9004
|
if containerd_config is not None:
|
8933
9005
|
pulumi.set(__self__, "containerd_config", containerd_config)
|
8934
9006
|
if gcfs_config is not None:
|
8935
9007
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
9008
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
9009
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
8936
9010
|
if logging_variant is not None:
|
8937
9011
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
8938
9012
|
|
@@ -8952,6 +9026,14 @@ class ClusterNodePoolDefaultsNodeConfigDefaults(dict):
|
|
8952
9026
|
"""
|
8953
9027
|
return pulumi.get(self, "gcfs_config")
|
8954
9028
|
|
9029
|
+
@property
|
9030
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
9031
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
9032
|
+
"""
|
9033
|
+
Controls whether the kubelet read-only port is enabled for newly created node pools in the cluster. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9034
|
+
"""
|
9035
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
9036
|
+
|
8955
9037
|
@property
|
8956
9038
|
@pulumi.getter(name="loggingVariant")
|
8957
9039
|
def logging_variant(self) -> Optional[str]:
|
@@ -10804,6 +10886,8 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10804
10886
|
suggest = "cpu_cfs_quota"
|
10805
10887
|
elif key == "cpuCfsQuotaPeriod":
|
10806
10888
|
suggest = "cpu_cfs_quota_period"
|
10889
|
+
elif key == "insecureKubeletReadonlyPortEnabled":
|
10890
|
+
suggest = "insecure_kubelet_readonly_port_enabled"
|
10807
10891
|
elif key == "podPidsLimit":
|
10808
10892
|
suggest = "pod_pids_limit"
|
10809
10893
|
|
@@ -10822,6 +10906,7 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10822
10906
|
cpu_manager_policy: str,
|
10823
10907
|
cpu_cfs_quota: Optional[bool] = None,
|
10824
10908
|
cpu_cfs_quota_period: Optional[str] = None,
|
10909
|
+
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
10825
10910
|
pod_pids_limit: Optional[int] = None):
|
10826
10911
|
"""
|
10827
10912
|
:param str cpu_manager_policy: The CPU management policy on the node. See
|
@@ -10838,6 +10923,7 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10838
10923
|
value and accepts an invalid `default` value instead. While this remains true,
|
10839
10924
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
10840
10925
|
`none`.
|
10926
|
+
:param 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`.
|
10841
10927
|
:param 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.
|
10842
10928
|
"""
|
10843
10929
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -10845,6 +10931,8 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10845
10931
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
10846
10932
|
if cpu_cfs_quota_period is not None:
|
10847
10933
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
10934
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
10935
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
10848
10936
|
if pod_pids_limit is not None:
|
10849
10937
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
10850
10938
|
|
@@ -10883,6 +10971,14 @@ class ClusterNodePoolNodeConfigKubeletConfig(dict):
|
|
10883
10971
|
"""
|
10884
10972
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
10885
10973
|
|
10974
|
+
@property
|
10975
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
10976
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
10977
|
+
"""
|
10978
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
10979
|
+
"""
|
10980
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
10981
|
+
|
10886
10982
|
@property
|
10887
10983
|
@pulumi.getter(name="podPidsLimit")
|
10888
10984
|
def pod_pids_limit(self) -> Optional[int]:
|
@@ -14018,6 +14114,8 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14018
14114
|
suggest = "cpu_cfs_quota"
|
14019
14115
|
elif key == "cpuCfsQuotaPeriod":
|
14020
14116
|
suggest = "cpu_cfs_quota_period"
|
14117
|
+
elif key == "insecureKubeletReadonlyPortEnabled":
|
14118
|
+
suggest = "insecure_kubelet_readonly_port_enabled"
|
14021
14119
|
elif key == "podPidsLimit":
|
14022
14120
|
suggest = "pod_pids_limit"
|
14023
14121
|
|
@@ -14036,11 +14134,13 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14036
14134
|
cpu_manager_policy: str,
|
14037
14135
|
cpu_cfs_quota: Optional[bool] = None,
|
14038
14136
|
cpu_cfs_quota_period: Optional[str] = None,
|
14137
|
+
insecure_kubelet_readonly_port_enabled: Optional[str] = None,
|
14039
14138
|
pod_pids_limit: Optional[int] = None):
|
14040
14139
|
"""
|
14041
14140
|
:param str cpu_manager_policy: Control the CPU management policy on the node.
|
14042
14141
|
:param bool cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
14043
14142
|
:param str cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
14143
|
+
:param 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`.
|
14044
14144
|
:param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
14045
14145
|
"""
|
14046
14146
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -14048,6 +14148,8 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14048
14148
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
14049
14149
|
if cpu_cfs_quota_period is not None:
|
14050
14150
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
14151
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
14152
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
14051
14153
|
if pod_pids_limit is not None:
|
14052
14154
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
14053
14155
|
|
@@ -14075,6 +14177,14 @@ class NodePoolNodeConfigKubeletConfig(dict):
|
|
14075
14177
|
"""
|
14076
14178
|
return pulumi.get(self, "cpu_cfs_quota_period")
|
14077
14179
|
|
14180
|
+
@property
|
14181
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
14182
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[str]:
|
14183
|
+
"""
|
14184
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
14185
|
+
"""
|
14186
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
14187
|
+
|
14078
14188
|
@property
|
14079
14189
|
@pulumi.getter(name="podPidsLimit")
|
14080
14190
|
def pod_pids_limit(self) -> Optional[int]:
|
@@ -17344,16 +17454,19 @@ class GetClusterNodeConfigKubeletConfigResult(dict):
|
|
17344
17454
|
cpu_cfs_quota: bool,
|
17345
17455
|
cpu_cfs_quota_period: str,
|
17346
17456
|
cpu_manager_policy: str,
|
17457
|
+
insecure_kubelet_readonly_port_enabled: str,
|
17347
17458
|
pod_pids_limit: int):
|
17348
17459
|
"""
|
17349
17460
|
:param bool cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
17350
17461
|
:param str cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17351
17462
|
:param str cpu_manager_policy: Control the CPU management policy on the node.
|
17463
|
+
:param 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`.
|
17352
17464
|
:param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
17353
17465
|
"""
|
17354
17466
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
17355
17467
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
17356
17468
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
17469
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
17357
17470
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
17358
17471
|
|
17359
17472
|
@property
|
@@ -17380,6 +17493,14 @@ class GetClusterNodeConfigKubeletConfigResult(dict):
|
|
17380
17493
|
"""
|
17381
17494
|
return pulumi.get(self, "cpu_manager_policy")
|
17382
17495
|
|
17496
|
+
@property
|
17497
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
17498
|
+
def insecure_kubelet_readonly_port_enabled(self) -> str:
|
17499
|
+
"""
|
17500
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17501
|
+
"""
|
17502
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
17503
|
+
|
17383
17504
|
@property
|
17384
17505
|
@pulumi.getter(name="podPidsLimit")
|
17385
17506
|
def pod_pids_limit(self) -> int:
|
@@ -17851,12 +17972,15 @@ class GetClusterNodePoolResult(dict):
|
|
17851
17972
|
class GetClusterNodePoolAutoConfigResult(dict):
|
17852
17973
|
def __init__(__self__, *,
|
17853
17974
|
network_tags: Sequence['outputs.GetClusterNodePoolAutoConfigNetworkTagResult'],
|
17975
|
+
node_kubelet_configs: Sequence['outputs.GetClusterNodePoolAutoConfigNodeKubeletConfigResult'],
|
17854
17976
|
resource_manager_tags: Mapping[str, str]):
|
17855
17977
|
"""
|
17856
17978
|
:param Sequence['GetClusterNodePoolAutoConfigNetworkTagArgs'] network_tags: Collection of Compute Engine network tags that can be applied to a node's underlying VM instance.
|
17979
|
+
:param Sequence['GetClusterNodePoolAutoConfigNodeKubeletConfigArgs'] node_kubelet_configs: Node kubelet configs.
|
17857
17980
|
:param Mapping[str, str] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
|
17858
17981
|
"""
|
17859
17982
|
pulumi.set(__self__, "network_tags", network_tags)
|
17983
|
+
pulumi.set(__self__, "node_kubelet_configs", node_kubelet_configs)
|
17860
17984
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
17861
17985
|
|
17862
17986
|
@property
|
@@ -17867,6 +17991,14 @@ class GetClusterNodePoolAutoConfigResult(dict):
|
|
17867
17991
|
"""
|
17868
17992
|
return pulumi.get(self, "network_tags")
|
17869
17993
|
|
17994
|
+
@property
|
17995
|
+
@pulumi.getter(name="nodeKubeletConfigs")
|
17996
|
+
def node_kubelet_configs(self) -> Sequence['outputs.GetClusterNodePoolAutoConfigNodeKubeletConfigResult']:
|
17997
|
+
"""
|
17998
|
+
Node kubelet configs.
|
17999
|
+
"""
|
18000
|
+
return pulumi.get(self, "node_kubelet_configs")
|
18001
|
+
|
17870
18002
|
@property
|
17871
18003
|
@pulumi.getter(name="resourceManagerTags")
|
17872
18004
|
def resource_manager_tags(self) -> Mapping[str, str]:
|
@@ -17894,6 +18026,24 @@ class GetClusterNodePoolAutoConfigNetworkTagResult(dict):
|
|
17894
18026
|
return pulumi.get(self, "tags")
|
17895
18027
|
|
17896
18028
|
|
18029
|
+
@pulumi.output_type
|
18030
|
+
class GetClusterNodePoolAutoConfigNodeKubeletConfigResult(dict):
|
18031
|
+
def __init__(__self__, *,
|
18032
|
+
insecure_kubelet_readonly_port_enabled: str):
|
18033
|
+
"""
|
18034
|
+
:param 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`.
|
18035
|
+
"""
|
18036
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
18037
|
+
|
18038
|
+
@property
|
18039
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
18040
|
+
def insecure_kubelet_readonly_port_enabled(self) -> str:
|
18041
|
+
"""
|
18042
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
18043
|
+
"""
|
18044
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
18045
|
+
|
18046
|
+
|
17897
18047
|
@pulumi.output_type
|
17898
18048
|
class GetClusterNodePoolAutoscalingResult(dict):
|
17899
18049
|
def __init__(__self__, *,
|
@@ -17979,14 +18129,17 @@ class GetClusterNodePoolDefaultNodeConfigDefaultResult(dict):
|
|
17979
18129
|
def __init__(__self__, *,
|
17980
18130
|
containerd_configs: Sequence['outputs.GetClusterNodePoolDefaultNodeConfigDefaultContainerdConfigResult'],
|
17981
18131
|
gcfs_configs: Sequence['outputs.GetClusterNodePoolDefaultNodeConfigDefaultGcfsConfigResult'],
|
18132
|
+
insecure_kubelet_readonly_port_enabled: str,
|
17982
18133
|
logging_variant: str):
|
17983
18134
|
"""
|
17984
18135
|
:param Sequence['GetClusterNodePoolDefaultNodeConfigDefaultContainerdConfigArgs'] containerd_configs: Parameters for containerd configuration.
|
17985
18136
|
:param Sequence['GetClusterNodePoolDefaultNodeConfigDefaultGcfsConfigArgs'] gcfs_configs: GCFS configuration for this node.
|
18137
|
+
:param 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`.
|
17986
18138
|
:param str logging_variant: Type of logging agent that is used as the default value for node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT.
|
17987
18139
|
"""
|
17988
18140
|
pulumi.set(__self__, "containerd_configs", containerd_configs)
|
17989
18141
|
pulumi.set(__self__, "gcfs_configs", gcfs_configs)
|
18142
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
17990
18143
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
17991
18144
|
|
17992
18145
|
@property
|
@@ -18005,6 +18158,14 @@ class GetClusterNodePoolDefaultNodeConfigDefaultResult(dict):
|
|
18005
18158
|
"""
|
18006
18159
|
return pulumi.get(self, "gcfs_configs")
|
18007
18160
|
|
18161
|
+
@property
|
18162
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
18163
|
+
def insecure_kubelet_readonly_port_enabled(self) -> str:
|
18164
|
+
"""
|
18165
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
18166
|
+
"""
|
18167
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
18168
|
+
|
18008
18169
|
@property
|
18009
18170
|
@pulumi.getter(name="loggingVariant")
|
18010
18171
|
def logging_variant(self) -> str:
|
@@ -19200,16 +19361,19 @@ class GetClusterNodePoolNodeConfigKubeletConfigResult(dict):
|
|
19200
19361
|
cpu_cfs_quota: bool,
|
19201
19362
|
cpu_cfs_quota_period: str,
|
19202
19363
|
cpu_manager_policy: str,
|
19364
|
+
insecure_kubelet_readonly_port_enabled: str,
|
19203
19365
|
pod_pids_limit: int):
|
19204
19366
|
"""
|
19205
19367
|
:param bool cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
19206
19368
|
:param str cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
19207
19369
|
:param str cpu_manager_policy: Control the CPU management policy on the node.
|
19370
|
+
:param 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`.
|
19208
19371
|
:param int pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
19209
19372
|
"""
|
19210
19373
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
19211
19374
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
19212
19375
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
19376
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
19213
19377
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
19214
19378
|
|
19215
19379
|
@property
|
@@ -19236,6 +19400,14 @@ class GetClusterNodePoolNodeConfigKubeletConfigResult(dict):
|
|
19236
19400
|
"""
|
19237
19401
|
return pulumi.get(self, "cpu_manager_policy")
|
19238
19402
|
|
19403
|
+
@property
|
19404
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
19405
|
+
def insecure_kubelet_readonly_port_enabled(self) -> str:
|
19406
|
+
"""
|
19407
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
19408
|
+
"""
|
19409
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
19410
|
+
|
19239
19411
|
@property
|
19240
19412
|
@pulumi.getter(name="podPidsLimit")
|
19241
19413
|
def pod_pids_limit(self) -> int:
|