pulumi-gcp 8.0.0a1726253601__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.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -323,6 +323,8 @@ __all__ = [
|
|
323
323
|
'ClusterNodePoolAutoConfigArgsDict',
|
324
324
|
'ClusterNodePoolAutoConfigNetworkTagsArgs',
|
325
325
|
'ClusterNodePoolAutoConfigNetworkTagsArgsDict',
|
326
|
+
'ClusterNodePoolAutoConfigNodeKubeletConfigArgs',
|
327
|
+
'ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict',
|
326
328
|
'ClusterNodePoolAutoscalingArgs',
|
327
329
|
'ClusterNodePoolAutoscalingArgsDict',
|
328
330
|
'ClusterNodePoolDefaultsArgs',
|
@@ -9735,6 +9737,10 @@ if not MYPY:
|
|
9735
9737
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9736
9738
|
`none`.
|
9737
9739
|
"""
|
9740
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
9741
|
+
"""
|
9742
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9743
|
+
"""
|
9738
9744
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
9739
9745
|
"""
|
9740
9746
|
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.
|
@@ -9748,6 +9754,7 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9748
9754
|
cpu_manager_policy: pulumi.Input[str],
|
9749
9755
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
9750
9756
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
9757
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
9751
9758
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
9752
9759
|
"""
|
9753
9760
|
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
@@ -9764,6 +9771,7 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9764
9771
|
value and accepts an invalid `default` value instead. While this remains true,
|
9765
9772
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
9766
9773
|
`none`.
|
9774
|
+
: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`.
|
9767
9775
|
: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.
|
9768
9776
|
"""
|
9769
9777
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -9771,6 +9779,8 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9771
9779
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
9772
9780
|
if cpu_cfs_quota_period is not None:
|
9773
9781
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
9782
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
9783
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
9774
9784
|
if pod_pids_limit is not None:
|
9775
9785
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
9776
9786
|
|
@@ -9821,6 +9831,18 @@ class ClusterNodeConfigKubeletConfigArgs:
|
|
9821
9831
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
9822
9832
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
9823
9833
|
|
9834
|
+
@property
|
9835
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
9836
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
9837
|
+
"""
|
9838
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
9839
|
+
"""
|
9840
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
9841
|
+
|
9842
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
9843
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
9844
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
9845
|
+
|
9824
9846
|
@property
|
9825
9847
|
@pulumi.getter(name="podPidsLimit")
|
9826
9848
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|
@@ -10795,7 +10817,12 @@ if not MYPY:
|
|
10795
10817
|
class ClusterNodePoolAutoConfigArgsDict(TypedDict):
|
10796
10818
|
network_tags: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgsDict']]
|
10797
10819
|
"""
|
10798
|
-
The network tag config for the cluster's automatically provisioned node pools.
|
10820
|
+
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10821
|
+
"""
|
10822
|
+
node_kubelet_config: NotRequired[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict']]
|
10823
|
+
"""
|
10824
|
+
Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10825
|
+
Structure is documented below.
|
10799
10826
|
"""
|
10800
10827
|
resource_manager_tags: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
10801
10828
|
"""
|
@@ -10808,13 +10835,18 @@ elif False:
|
|
10808
10835
|
class ClusterNodePoolAutoConfigArgs:
|
10809
10836
|
def __init__(__self__, *,
|
10810
10837
|
network_tags: Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']] = None,
|
10838
|
+
node_kubelet_config: Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']] = None,
|
10811
10839
|
resource_manager_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
10812
10840
|
"""
|
10813
|
-
:param pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs'] network_tags: The network tag config for the cluster's automatically provisioned node pools.
|
10841
|
+
:param pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs'] network_tags: The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10842
|
+
:param pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs'] node_kubelet_config: Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10843
|
+
Structure is documented below.
|
10814
10844
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
|
10815
10845
|
"""
|
10816
10846
|
if network_tags is not None:
|
10817
10847
|
pulumi.set(__self__, "network_tags", network_tags)
|
10848
|
+
if node_kubelet_config is not None:
|
10849
|
+
pulumi.set(__self__, "node_kubelet_config", node_kubelet_config)
|
10818
10850
|
if resource_manager_tags is not None:
|
10819
10851
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
10820
10852
|
|
@@ -10822,7 +10854,7 @@ class ClusterNodePoolAutoConfigArgs:
|
|
10822
10854
|
@pulumi.getter(name="networkTags")
|
10823
10855
|
def network_tags(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']]:
|
10824
10856
|
"""
|
10825
|
-
The network tag config for the cluster's automatically provisioned node pools.
|
10857
|
+
The network tag config for the cluster's automatically provisioned node pools. Structure is documented below.
|
10826
10858
|
"""
|
10827
10859
|
return pulumi.get(self, "network_tags")
|
10828
10860
|
|
@@ -10830,6 +10862,19 @@ class ClusterNodePoolAutoConfigArgs:
|
|
10830
10862
|
def network_tags(self, value: Optional[pulumi.Input['ClusterNodePoolAutoConfigNetworkTagsArgs']]):
|
10831
10863
|
pulumi.set(self, "network_tags", value)
|
10832
10864
|
|
10865
|
+
@property
|
10866
|
+
@pulumi.getter(name="nodeKubeletConfig")
|
10867
|
+
def node_kubelet_config(self) -> Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']]:
|
10868
|
+
"""
|
10869
|
+
Kubelet configuration for Autopilot clusters. Currently, only `insecure_kubelet_readonly_port_enabled` is supported here.
|
10870
|
+
Structure is documented below.
|
10871
|
+
"""
|
10872
|
+
return pulumi.get(self, "node_kubelet_config")
|
10873
|
+
|
10874
|
+
@node_kubelet_config.setter
|
10875
|
+
def node_kubelet_config(self, value: Optional[pulumi.Input['ClusterNodePoolAutoConfigNodeKubeletConfigArgs']]):
|
10876
|
+
pulumi.set(self, "node_kubelet_config", value)
|
10877
|
+
|
10833
10878
|
@property
|
10834
10879
|
@pulumi.getter(name="resourceManagerTags")
|
10835
10880
|
def resource_manager_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -10875,6 +10920,38 @@ class ClusterNodePoolAutoConfigNetworkTagsArgs:
|
|
10875
10920
|
pulumi.set(self, "tags", value)
|
10876
10921
|
|
10877
10922
|
|
10923
|
+
if not MYPY:
|
10924
|
+
class ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict(TypedDict):
|
10925
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
10926
|
+
"""
|
10927
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
10928
|
+
"""
|
10929
|
+
elif False:
|
10930
|
+
ClusterNodePoolAutoConfigNodeKubeletConfigArgsDict: TypeAlias = Mapping[str, Any]
|
10931
|
+
|
10932
|
+
@pulumi.input_type
|
10933
|
+
class ClusterNodePoolAutoConfigNodeKubeletConfigArgs:
|
10934
|
+
def __init__(__self__, *,
|
10935
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None):
|
10936
|
+
"""
|
10937
|
+
: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`.
|
10938
|
+
"""
|
10939
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
10940
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
10941
|
+
|
10942
|
+
@property
|
10943
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
10944
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
10945
|
+
"""
|
10946
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
10947
|
+
"""
|
10948
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
10949
|
+
|
10950
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
10951
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
10952
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
10953
|
+
|
10954
|
+
|
10878
10955
|
if not MYPY:
|
10879
10956
|
class ClusterNodePoolAutoscalingArgsDict(TypedDict):
|
10880
10957
|
location_policy: NotRequired[pulumi.Input[str]]
|
@@ -11029,6 +11106,10 @@ if not MYPY:
|
|
11029
11106
|
"""
|
11030
11107
|
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.
|
11031
11108
|
"""
|
11109
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
11110
|
+
"""
|
11111
|
+
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`.
|
11112
|
+
"""
|
11032
11113
|
logging_variant: NotRequired[pulumi.Input[str]]
|
11033
11114
|
"""
|
11034
11115
|
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.
|
@@ -11041,16 +11122,20 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsArgs:
|
|
11041
11122
|
def __init__(__self__, *,
|
11042
11123
|
containerd_config: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigArgs']] = None,
|
11043
11124
|
gcfs_config: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs']] = None,
|
11125
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
11044
11126
|
logging_variant: Optional[pulumi.Input[str]] = None):
|
11045
11127
|
"""
|
11046
11128
|
:param pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsContainerdConfigArgs'] containerd_config: Parameters for containerd configuration.
|
11047
11129
|
:param pulumi.Input['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.
|
11130
|
+
:param pulumi.Input[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`.
|
11048
11131
|
:param pulumi.Input[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.
|
11049
11132
|
"""
|
11050
11133
|
if containerd_config is not None:
|
11051
11134
|
pulumi.set(__self__, "containerd_config", containerd_config)
|
11052
11135
|
if gcfs_config is not None:
|
11053
11136
|
pulumi.set(__self__, "gcfs_config", gcfs_config)
|
11137
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
11138
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
11054
11139
|
if logging_variant is not None:
|
11055
11140
|
pulumi.set(__self__, "logging_variant", logging_variant)
|
11056
11141
|
|
@@ -11078,6 +11163,18 @@ class ClusterNodePoolDefaultsNodeConfigDefaultsArgs:
|
|
11078
11163
|
def gcfs_config(self, value: Optional[pulumi.Input['ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfigArgs']]):
|
11079
11164
|
pulumi.set(self, "gcfs_config", value)
|
11080
11165
|
|
11166
|
+
@property
|
11167
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
11168
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
11169
|
+
"""
|
11170
|
+
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`.
|
11171
|
+
"""
|
11172
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
11173
|
+
|
11174
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
11175
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
11176
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
11177
|
+
|
11081
11178
|
@property
|
11082
11179
|
@pulumi.getter(name="loggingVariant")
|
11083
11180
|
def logging_variant(self) -> Optional[pulumi.Input[str]]:
|
@@ -13453,6 +13550,10 @@ if not MYPY:
|
|
13453
13550
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13454
13551
|
`none`.
|
13455
13552
|
"""
|
13553
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
13554
|
+
"""
|
13555
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
13556
|
+
"""
|
13456
13557
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
13457
13558
|
"""
|
13458
13559
|
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.
|
@@ -13466,6 +13567,7 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13466
13567
|
cpu_manager_policy: pulumi.Input[str],
|
13467
13568
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
13468
13569
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
13570
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
13469
13571
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
13470
13572
|
"""
|
13471
13573
|
:param pulumi.Input[str] cpu_manager_policy: The CPU management policy on the node. See
|
@@ -13482,6 +13584,7 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13482
13584
|
value and accepts an invalid `default` value instead. While this remains true,
|
13483
13585
|
not specifying the `kubelet_config` block should be the equivalent of specifying
|
13484
13586
|
`none`.
|
13587
|
+
: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`.
|
13485
13588
|
: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.
|
13486
13589
|
"""
|
13487
13590
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -13489,6 +13592,8 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13489
13592
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
13490
13593
|
if cpu_cfs_quota_period is not None:
|
13491
13594
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
13595
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
13596
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
13492
13597
|
if pod_pids_limit is not None:
|
13493
13598
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
13494
13599
|
|
@@ -13539,6 +13644,18 @@ class ClusterNodePoolNodeConfigKubeletConfigArgs:
|
|
13539
13644
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
13540
13645
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
13541
13646
|
|
13647
|
+
@property
|
13648
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
13649
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
13650
|
+
"""
|
13651
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
13652
|
+
"""
|
13653
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
13654
|
+
|
13655
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
13656
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
13657
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
13658
|
+
|
13542
13659
|
@property
|
13543
13660
|
@pulumi.getter(name="podPidsLimit")
|
13544
13661
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|
@@ -17484,6 +17601,10 @@ if not MYPY:
|
|
17484
17601
|
"""
|
17485
17602
|
Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17486
17603
|
"""
|
17604
|
+
insecure_kubelet_readonly_port_enabled: NotRequired[pulumi.Input[str]]
|
17605
|
+
"""
|
17606
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17607
|
+
"""
|
17487
17608
|
pod_pids_limit: NotRequired[pulumi.Input[int]]
|
17488
17609
|
"""
|
17489
17610
|
Controls the maximum number of processes allowed to run in a pod.
|
@@ -17497,11 +17618,13 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17497
17618
|
cpu_manager_policy: pulumi.Input[str],
|
17498
17619
|
cpu_cfs_quota: Optional[pulumi.Input[bool]] = None,
|
17499
17620
|
cpu_cfs_quota_period: Optional[pulumi.Input[str]] = None,
|
17621
|
+
insecure_kubelet_readonly_port_enabled: Optional[pulumi.Input[str]] = None,
|
17500
17622
|
pod_pids_limit: Optional[pulumi.Input[int]] = None):
|
17501
17623
|
"""
|
17502
17624
|
:param pulumi.Input[str] cpu_manager_policy: Control the CPU management policy on the node.
|
17503
17625
|
:param pulumi.Input[bool] cpu_cfs_quota: Enable CPU CFS quota enforcement for containers that specify CPU limits.
|
17504
17626
|
:param pulumi.Input[str] cpu_cfs_quota_period: Set the CPU CFS quota period value 'cpu.cfs_period_us'.
|
17627
|
+
: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`.
|
17505
17628
|
:param pulumi.Input[int] pod_pids_limit: Controls the maximum number of processes allowed to run in a pod.
|
17506
17629
|
"""
|
17507
17630
|
pulumi.set(__self__, "cpu_manager_policy", cpu_manager_policy)
|
@@ -17509,6 +17632,8 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17509
17632
|
pulumi.set(__self__, "cpu_cfs_quota", cpu_cfs_quota)
|
17510
17633
|
if cpu_cfs_quota_period is not None:
|
17511
17634
|
pulumi.set(__self__, "cpu_cfs_quota_period", cpu_cfs_quota_period)
|
17635
|
+
if insecure_kubelet_readonly_port_enabled is not None:
|
17636
|
+
pulumi.set(__self__, "insecure_kubelet_readonly_port_enabled", insecure_kubelet_readonly_port_enabled)
|
17512
17637
|
if pod_pids_limit is not None:
|
17513
17638
|
pulumi.set(__self__, "pod_pids_limit", pod_pids_limit)
|
17514
17639
|
|
@@ -17548,6 +17673,18 @@ class NodePoolNodeConfigKubeletConfigArgs:
|
|
17548
17673
|
def cpu_cfs_quota_period(self, value: Optional[pulumi.Input[str]]):
|
17549
17674
|
pulumi.set(self, "cpu_cfs_quota_period", value)
|
17550
17675
|
|
17676
|
+
@property
|
17677
|
+
@pulumi.getter(name="insecureKubeletReadonlyPortEnabled")
|
17678
|
+
def insecure_kubelet_readonly_port_enabled(self) -> Optional[pulumi.Input[str]]:
|
17679
|
+
"""
|
17680
|
+
Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
|
17681
|
+
"""
|
17682
|
+
return pulumi.get(self, "insecure_kubelet_readonly_port_enabled")
|
17683
|
+
|
17684
|
+
@insecure_kubelet_readonly_port_enabled.setter
|
17685
|
+
def insecure_kubelet_readonly_port_enabled(self, value: Optional[pulumi.Input[str]]):
|
17686
|
+
pulumi.set(self, "insecure_kubelet_readonly_port_enabled", value)
|
17687
|
+
|
17551
17688
|
@property
|
17552
17689
|
@pulumi.getter(name="podPidsLimit")
|
17553
17690
|
def pod_pids_limit(self) -> Optional[pulumi.Input[int]]:
|
@@ -63,7 +63,7 @@ class AttachedClusterArgs:
|
|
63
63
|
'effective_annotations' for all of the annotations present on the resource.
|
64
64
|
:param pulumi.Input['AttachedClusterAuthorizationArgs'] authorization: Configuration related to the cluster RBAC settings.
|
65
65
|
:param pulumi.Input['AttachedClusterBinaryAuthorizationArgs'] binary_authorization: Binary Authorization configuration.
|
66
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
66
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
67
67
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
68
68
|
:param pulumi.Input['AttachedClusterLoggingConfigArgs'] logging_config: Logging configuration.
|
69
69
|
:param pulumi.Input['AttachedClusterMonitoringConfigArgs'] monitoring_config: Monitoring configuration.
|
@@ -213,7 +213,7 @@ class AttachedClusterArgs:
|
|
213
213
|
@pulumi.getter(name="deletionPolicy")
|
214
214
|
def deletion_policy(self) -> Optional[pulumi.Input[str]]:
|
215
215
|
"""
|
216
|
-
Policy to determine what flags to send on delete.
|
216
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
217
217
|
"""
|
218
218
|
return pulumi.get(self, "deletion_policy")
|
219
219
|
|
@@ -333,7 +333,7 @@ class _AttachedClusterState:
|
|
333
333
|
For EKS clusters, this is an AWS region. For AKS clusters,
|
334
334
|
this is an Azure region.
|
335
335
|
:param pulumi.Input[str] create_time: Output only. The time at which this cluster was created.
|
336
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
336
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
337
337
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
338
338
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
339
339
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -490,7 +490,7 @@ class _AttachedClusterState:
|
|
490
490
|
@pulumi.getter(name="deletionPolicy")
|
491
491
|
def deletion_policy(self) -> Optional[pulumi.Input[str]]:
|
492
492
|
"""
|
493
|
-
Policy to determine what flags to send on delete.
|
493
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
494
494
|
"""
|
495
495
|
return pulumi.get(self, "deletion_policy")
|
496
496
|
|
@@ -912,7 +912,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
912
912
|
'effective_annotations' for all of the annotations present on the resource.
|
913
913
|
:param pulumi.Input[Union['AttachedClusterAuthorizationArgs', 'AttachedClusterAuthorizationArgsDict']] authorization: Configuration related to the cluster RBAC settings.
|
914
914
|
:param pulumi.Input[Union['AttachedClusterBinaryAuthorizationArgs', 'AttachedClusterBinaryAuthorizationArgsDict']] binary_authorization: Binary Authorization configuration.
|
915
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
915
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
916
916
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
917
917
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
918
918
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -1214,7 +1214,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1214
1214
|
For EKS clusters, this is an AWS region. For AKS clusters,
|
1215
1215
|
this is an Azure region.
|
1216
1216
|
:param pulumi.Input[str] create_time: Output only. The time at which this cluster was created.
|
1217
|
-
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete.
|
1217
|
+
:param pulumi.Input[str] deletion_policy: Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
1218
1218
|
:param pulumi.Input[str] description: A human readable description of this attached cluster. Cannot be longer than 255 UTF-8 encoded bytes.
|
1219
1219
|
:param pulumi.Input[str] distribution: The Kubernetes distribution of the underlying attached cluster. Supported values:
|
1220
1220
|
"eks", "aks", "generic". The generic distribution provides the ability to register
|
@@ -1331,7 +1331,7 @@ class AttachedCluster(pulumi.CustomResource):
|
|
1331
1331
|
@pulumi.getter(name="deletionPolicy")
|
1332
1332
|
def deletion_policy(self) -> pulumi.Output[Optional[str]]:
|
1333
1333
|
"""
|
1334
|
-
Policy to determine what flags to send on delete.
|
1334
|
+
Policy to determine what flags to send on delete. Possible values: DELETE, DELETE_IGNORE_ERRORS
|
1335
1335
|
"""
|
1336
1336
|
return pulumi.get(self, "deletion_policy")
|
1337
1337
|
|