pulumi-gcp 8.36.0a1751060819__py3-none-any.whl → 8.37.0a1751903932__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/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +675 -0
- pulumi_gcp/apihub/outputs.py +567 -0
- pulumi_gcp/apihub/plugin.py +1146 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +7 -7
- pulumi_gcp/bigqueryanalyticshub/listing.py +7 -7
- pulumi_gcp/cloudidentity/group_membership.py +47 -0
- pulumi_gcp/cloudidentity/outputs.py +11 -0
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/job.py +44 -0
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +0 -2
- pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +763 -6
- pulumi_gcp/compute/disk.py +35 -28
- pulumi_gcp/compute/firewall_policy_rule.py +207 -0
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/instance_group_manager.py +165 -14
- pulumi_gcp/compute/network.py +56 -0
- pulumi_gcp/compute/network_firewall_policy.py +68 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
- pulumi_gcp/compute/outputs.py +604 -4
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
- pulumi_gcp/compute/wire_group.py +751 -0
- pulumi_gcp/container/_inputs.py +135 -16
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/node_pool.py +14 -0
- pulumi_gcp/container/outputs.py +222 -12
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +431 -0
- pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
- pulumi_gcp/diagflow/outputs.py +370 -0
- pulumi_gcp/dns/record_set.py +4 -2
- pulumi_gcp/firestore/database.py +0 -9
- pulumi_gcp/iam/_inputs.py +36 -0
- pulumi_gcp/iam/outputs.py +38 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
- pulumi_gcp/kms/autokey_config.py +28 -0
- pulumi_gcp/kms/get_autokey_config.py +12 -1
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +49 -0
- pulumi_gcp/monitoring/metric_descriptor.py +55 -57
- pulumi_gcp/notebooks/instance.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +44 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +7 -0
- pulumi_gcp/secretmanager/regional_secret.py +38 -2
- pulumi_gcp/spanner/_inputs.py +24 -1
- pulumi_gcp/spanner/outputs.py +17 -1
- pulumi_gcp/storage/_inputs.py +43 -3
- pulumi_gcp/storage/outputs.py +53 -3
- pulumi_gcp/workbench/instance.py +2 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +64 -61
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/_inputs.py
CHANGED
@@ -238,6 +238,8 @@ __all__ = [
|
|
238
238
|
'ClusterFleetArgsDict',
|
239
239
|
'ClusterGatewayApiConfigArgs',
|
240
240
|
'ClusterGatewayApiConfigArgsDict',
|
241
|
+
'ClusterGkeAutoUpgradeConfigArgs',
|
242
|
+
'ClusterGkeAutoUpgradeConfigArgsDict',
|
241
243
|
'ClusterIdentityServiceConfigArgs',
|
242
244
|
'ClusterIdentityServiceConfigArgsDict',
|
243
245
|
'ClusterIpAllocationPolicyArgs',
|
@@ -6528,18 +6530,28 @@ if not MYPY:
|
|
6528
6530
|
Enable Confidential GKE Nodes for this cluster, to
|
6529
6531
|
enforce encryption of data in-use.
|
6530
6532
|
"""
|
6533
|
+
confidential_instance_type: NotRequired[pulumi.Input[builtins.str]]
|
6534
|
+
"""
|
6535
|
+
Defines the type of technology used
|
6536
|
+
by the confidential node.
|
6537
|
+
"""
|
6531
6538
|
elif False:
|
6532
6539
|
ClusterConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
|
6533
6540
|
|
6534
6541
|
@pulumi.input_type
|
6535
6542
|
class ClusterConfidentialNodesArgs:
|
6536
6543
|
def __init__(__self__, *,
|
6537
|
-
enabled: pulumi.Input[builtins.bool]
|
6544
|
+
enabled: pulumi.Input[builtins.bool],
|
6545
|
+
confidential_instance_type: Optional[pulumi.Input[builtins.str]] = None):
|
6538
6546
|
"""
|
6539
6547
|
:param pulumi.Input[builtins.bool] enabled: Enable Confidential GKE Nodes for this cluster, to
|
6540
6548
|
enforce encryption of data in-use.
|
6549
|
+
:param pulumi.Input[builtins.str] confidential_instance_type: Defines the type of technology used
|
6550
|
+
by the confidential node.
|
6541
6551
|
"""
|
6542
6552
|
pulumi.set(__self__, "enabled", enabled)
|
6553
|
+
if confidential_instance_type is not None:
|
6554
|
+
pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
|
6543
6555
|
|
6544
6556
|
@property
|
6545
6557
|
@pulumi.getter
|
@@ -6554,6 +6566,19 @@ class ClusterConfidentialNodesArgs:
|
|
6554
6566
|
def enabled(self, value: pulumi.Input[builtins.bool]):
|
6555
6567
|
pulumi.set(self, "enabled", value)
|
6556
6568
|
|
6569
|
+
@property
|
6570
|
+
@pulumi.getter(name="confidentialInstanceType")
|
6571
|
+
def confidential_instance_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
6572
|
+
"""
|
6573
|
+
Defines the type of technology used
|
6574
|
+
by the confidential node.
|
6575
|
+
"""
|
6576
|
+
return pulumi.get(self, "confidential_instance_type")
|
6577
|
+
|
6578
|
+
@confidential_instance_type.setter
|
6579
|
+
def confidential_instance_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
6580
|
+
pulumi.set(self, "confidential_instance_type", value)
|
6581
|
+
|
6557
6582
|
|
6558
6583
|
if not MYPY:
|
6559
6584
|
class ClusterControlPlaneEndpointsConfigArgsDict(TypedDict):
|
@@ -7134,6 +7159,43 @@ class ClusterGatewayApiConfigArgs:
|
|
7134
7159
|
pulumi.set(self, "channel", value)
|
7135
7160
|
|
7136
7161
|
|
7162
|
+
if not MYPY:
|
7163
|
+
class ClusterGkeAutoUpgradeConfigArgsDict(TypedDict):
|
7164
|
+
patch_mode: pulumi.Input[builtins.str]
|
7165
|
+
"""
|
7166
|
+
The selected patch mode.
|
7167
|
+
Accepted values are:
|
7168
|
+
* ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
|
7169
|
+
"""
|
7170
|
+
elif False:
|
7171
|
+
ClusterGkeAutoUpgradeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
7172
|
+
|
7173
|
+
@pulumi.input_type
|
7174
|
+
class ClusterGkeAutoUpgradeConfigArgs:
|
7175
|
+
def __init__(__self__, *,
|
7176
|
+
patch_mode: pulumi.Input[builtins.str]):
|
7177
|
+
"""
|
7178
|
+
:param pulumi.Input[builtins.str] patch_mode: The selected patch mode.
|
7179
|
+
Accepted values are:
|
7180
|
+
* ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
|
7181
|
+
"""
|
7182
|
+
pulumi.set(__self__, "patch_mode", patch_mode)
|
7183
|
+
|
7184
|
+
@property
|
7185
|
+
@pulumi.getter(name="patchMode")
|
7186
|
+
def patch_mode(self) -> pulumi.Input[builtins.str]:
|
7187
|
+
"""
|
7188
|
+
The selected patch mode.
|
7189
|
+
Accepted values are:
|
7190
|
+
* ACCELERATED: Upgrades to the latest available patch version in a given minor and release channel.
|
7191
|
+
"""
|
7192
|
+
return pulumi.get(self, "patch_mode")
|
7193
|
+
|
7194
|
+
@patch_mode.setter
|
7195
|
+
def patch_mode(self, value: pulumi.Input[builtins.str]):
|
7196
|
+
pulumi.set(self, "patch_mode", value)
|
7197
|
+
|
7198
|
+
|
7137
7199
|
if not MYPY:
|
7138
7200
|
class ClusterIdentityServiceConfigArgsDict(TypedDict):
|
7139
7201
|
enabled: NotRequired[pulumi.Input[builtins.bool]]
|
@@ -9680,18 +9742,28 @@ if not MYPY:
|
|
9680
9742
|
Enable Confidential GKE Nodes for this cluster, to
|
9681
9743
|
enforce encryption of data in-use.
|
9682
9744
|
"""
|
9745
|
+
confidential_instance_type: NotRequired[pulumi.Input[builtins.str]]
|
9746
|
+
"""
|
9747
|
+
Defines the type of technology used
|
9748
|
+
by the confidential node.
|
9749
|
+
"""
|
9683
9750
|
elif False:
|
9684
9751
|
ClusterNodeConfigConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
|
9685
9752
|
|
9686
9753
|
@pulumi.input_type
|
9687
9754
|
class ClusterNodeConfigConfidentialNodesArgs:
|
9688
9755
|
def __init__(__self__, *,
|
9689
|
-
enabled: pulumi.Input[builtins.bool]
|
9756
|
+
enabled: pulumi.Input[builtins.bool],
|
9757
|
+
confidential_instance_type: Optional[pulumi.Input[builtins.str]] = None):
|
9690
9758
|
"""
|
9691
9759
|
:param pulumi.Input[builtins.bool] enabled: Enable Confidential GKE Nodes for this cluster, to
|
9692
9760
|
enforce encryption of data in-use.
|
9761
|
+
:param pulumi.Input[builtins.str] confidential_instance_type: Defines the type of technology used
|
9762
|
+
by the confidential node.
|
9693
9763
|
"""
|
9694
9764
|
pulumi.set(__self__, "enabled", enabled)
|
9765
|
+
if confidential_instance_type is not None:
|
9766
|
+
pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
|
9695
9767
|
|
9696
9768
|
@property
|
9697
9769
|
@pulumi.getter
|
@@ -9706,6 +9778,19 @@ class ClusterNodeConfigConfidentialNodesArgs:
|
|
9706
9778
|
def enabled(self, value: pulumi.Input[builtins.bool]):
|
9707
9779
|
pulumi.set(self, "enabled", value)
|
9708
9780
|
|
9781
|
+
@property
|
9782
|
+
@pulumi.getter(name="confidentialInstanceType")
|
9783
|
+
def confidential_instance_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
9784
|
+
"""
|
9785
|
+
Defines the type of technology used
|
9786
|
+
by the confidential node.
|
9787
|
+
"""
|
9788
|
+
return pulumi.get(self, "confidential_instance_type")
|
9789
|
+
|
9790
|
+
@confidential_instance_type.setter
|
9791
|
+
def confidential_instance_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
9792
|
+
pulumi.set(self, "confidential_instance_type", value)
|
9793
|
+
|
9709
9794
|
|
9710
9795
|
if not MYPY:
|
9711
9796
|
class ClusterNodeConfigContainerdConfigArgsDict(TypedDict):
|
@@ -13954,18 +14039,28 @@ if not MYPY:
|
|
13954
14039
|
Enable Confidential GKE Nodes for this cluster, to
|
13955
14040
|
enforce encryption of data in-use.
|
13956
14041
|
"""
|
14042
|
+
confidential_instance_type: NotRequired[pulumi.Input[builtins.str]]
|
14043
|
+
"""
|
14044
|
+
Defines the type of technology used
|
14045
|
+
by the confidential node.
|
14046
|
+
"""
|
13957
14047
|
elif False:
|
13958
14048
|
ClusterNodePoolNodeConfigConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
|
13959
14049
|
|
13960
14050
|
@pulumi.input_type
|
13961
14051
|
class ClusterNodePoolNodeConfigConfidentialNodesArgs:
|
13962
14052
|
def __init__(__self__, *,
|
13963
|
-
enabled: pulumi.Input[builtins.bool]
|
14053
|
+
enabled: pulumi.Input[builtins.bool],
|
14054
|
+
confidential_instance_type: Optional[pulumi.Input[builtins.str]] = None):
|
13964
14055
|
"""
|
13965
14056
|
:param pulumi.Input[builtins.bool] enabled: Enable Confidential GKE Nodes for this cluster, to
|
13966
14057
|
enforce encryption of data in-use.
|
14058
|
+
:param pulumi.Input[builtins.str] confidential_instance_type: Defines the type of technology used
|
14059
|
+
by the confidential node.
|
13967
14060
|
"""
|
13968
14061
|
pulumi.set(__self__, "enabled", enabled)
|
14062
|
+
if confidential_instance_type is not None:
|
14063
|
+
pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
|
13969
14064
|
|
13970
14065
|
@property
|
13971
14066
|
@pulumi.getter
|
@@ -13980,6 +14075,19 @@ class ClusterNodePoolNodeConfigConfidentialNodesArgs:
|
|
13980
14075
|
def enabled(self, value: pulumi.Input[builtins.bool]):
|
13981
14076
|
pulumi.set(self, "enabled", value)
|
13982
14077
|
|
14078
|
+
@property
|
14079
|
+
@pulumi.getter(name="confidentialInstanceType")
|
14080
|
+
def confidential_instance_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
14081
|
+
"""
|
14082
|
+
Defines the type of technology used
|
14083
|
+
by the confidential node.
|
14084
|
+
"""
|
14085
|
+
return pulumi.get(self, "confidential_instance_type")
|
14086
|
+
|
14087
|
+
@confidential_instance_type.setter
|
14088
|
+
def confidential_instance_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
14089
|
+
pulumi.set(self, "confidential_instance_type", value)
|
14090
|
+
|
13983
14091
|
|
13984
14092
|
if not MYPY:
|
13985
14093
|
class ClusterNodePoolNodeConfigContainerdConfigArgsDict(TypedDict):
|
@@ -17775,10 +17883,7 @@ if not MYPY:
|
|
17775
17883
|
"""
|
17776
17884
|
reservation_affinity: NotRequired[pulumi.Input['NodePoolNodeConfigReservationAffinityArgsDict']]
|
17777
17885
|
"""
|
17778
|
-
The
|
17779
|
-
Structure is documented below.
|
17780
|
-
|
17781
|
-
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
17886
|
+
The reservation affinity configuration for the node pool.
|
17782
17887
|
"""
|
17783
17888
|
resource_labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
|
17784
17889
|
"""
|
@@ -17915,10 +18020,7 @@ class NodePoolNodeConfigArgs:
|
|
17915
18020
|
:param pulumi.Input[builtins.str] node_group: Setting this field will assign instances of this pool to run on the specified node group. This is useful for running workloads on sole tenant nodes.
|
17916
18021
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oauth_scopes: The set of Google API scopes to be made available on all of the node VMs.
|
17917
18022
|
:param pulumi.Input[builtins.bool] preemptible: Whether the nodes are created as preemptible VM instances.
|
17918
|
-
:param pulumi.Input['NodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The
|
17919
|
-
Structure is documented below.
|
17920
|
-
|
17921
|
-
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
18023
|
+
:param pulumi.Input['NodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The reservation affinity configuration for the node pool.
|
17922
18024
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
|
17923
18025
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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.
|
17924
18026
|
:param pulumi.Input['NodePoolNodeConfigSandboxConfigArgs'] sandbox_config: Sandbox configuration for this node.
|
@@ -18400,10 +18502,7 @@ class NodePoolNodeConfigArgs:
|
|
18400
18502
|
@pulumi.getter(name="reservationAffinity")
|
18401
18503
|
def reservation_affinity(self) -> Optional[pulumi.Input['NodePoolNodeConfigReservationAffinityArgs']]:
|
18402
18504
|
"""
|
18403
|
-
The
|
18404
|
-
Structure is documented below.
|
18405
|
-
|
18406
|
-
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
18505
|
+
The reservation affinity configuration for the node pool.
|
18407
18506
|
"""
|
18408
18507
|
return pulumi.get(self, "reservation_affinity")
|
18409
18508
|
|
@@ -18645,17 +18744,25 @@ if not MYPY:
|
|
18645
18744
|
"""
|
18646
18745
|
Whether Confidential Nodes feature is enabled for all nodes in this pool.
|
18647
18746
|
"""
|
18747
|
+
confidential_instance_type: NotRequired[pulumi.Input[builtins.str]]
|
18748
|
+
"""
|
18749
|
+
Defines the type of technology used by the confidential node.
|
18750
|
+
"""
|
18648
18751
|
elif False:
|
18649
18752
|
NodePoolNodeConfigConfidentialNodesArgsDict: TypeAlias = Mapping[str, Any]
|
18650
18753
|
|
18651
18754
|
@pulumi.input_type
|
18652
18755
|
class NodePoolNodeConfigConfidentialNodesArgs:
|
18653
18756
|
def __init__(__self__, *,
|
18654
|
-
enabled: pulumi.Input[builtins.bool]
|
18757
|
+
enabled: pulumi.Input[builtins.bool],
|
18758
|
+
confidential_instance_type: Optional[pulumi.Input[builtins.str]] = None):
|
18655
18759
|
"""
|
18656
18760
|
:param pulumi.Input[builtins.bool] enabled: Whether Confidential Nodes feature is enabled for all nodes in this pool.
|
18761
|
+
:param pulumi.Input[builtins.str] confidential_instance_type: Defines the type of technology used by the confidential node.
|
18657
18762
|
"""
|
18658
18763
|
pulumi.set(__self__, "enabled", enabled)
|
18764
|
+
if confidential_instance_type is not None:
|
18765
|
+
pulumi.set(__self__, "confidential_instance_type", confidential_instance_type)
|
18659
18766
|
|
18660
18767
|
@property
|
18661
18768
|
@pulumi.getter
|
@@ -18669,6 +18776,18 @@ class NodePoolNodeConfigConfidentialNodesArgs:
|
|
18669
18776
|
def enabled(self, value: pulumi.Input[builtins.bool]):
|
18670
18777
|
pulumi.set(self, "enabled", value)
|
18671
18778
|
|
18779
|
+
@property
|
18780
|
+
@pulumi.getter(name="confidentialInstanceType")
|
18781
|
+
def confidential_instance_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
18782
|
+
"""
|
18783
|
+
Defines the type of technology used by the confidential node.
|
18784
|
+
"""
|
18785
|
+
return pulumi.get(self, "confidential_instance_type")
|
18786
|
+
|
18787
|
+
@confidential_instance_type.setter
|
18788
|
+
def confidential_instance_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
18789
|
+
pulumi.set(self, "confidential_instance_type", value)
|
18790
|
+
|
18672
18791
|
|
18673
18792
|
if not MYPY:
|
18674
18793
|
class NodePoolNodeConfigContainerdConfigArgsDict(TypedDict):
|
pulumi_gcp/container/cluster.py
CHANGED
@@ -54,6 +54,7 @@ class ClusterArgs:
|
|
54
54
|
enterprise_config: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']] = None,
|
55
55
|
fleet: Optional[pulumi.Input['ClusterFleetArgs']] = None,
|
56
56
|
gateway_api_config: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']] = None,
|
57
|
+
gke_auto_upgrade_config: Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']] = None,
|
57
58
|
identity_service_config: Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']] = None,
|
58
59
|
in_transit_encryption_config: Optional[pulumi.Input[builtins.str]] = None,
|
59
60
|
initial_node_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -166,6 +167,8 @@ class ClusterArgs:
|
|
166
167
|
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
167
168
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
168
169
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
170
|
+
:param pulumi.Input['ClusterGkeAutoUpgradeConfigArgs'] gke_auto_upgrade_config: Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
171
|
+
Structure is documented below.
|
169
172
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
170
173
|
:param pulumi.Input[builtins.str] in_transit_encryption_config: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
|
171
174
|
:param pulumi.Input[builtins.int] initial_node_count: The number of nodes to create in this
|
@@ -383,6 +386,8 @@ class ClusterArgs:
|
|
383
386
|
pulumi.set(__self__, "fleet", fleet)
|
384
387
|
if gateway_api_config is not None:
|
385
388
|
pulumi.set(__self__, "gateway_api_config", gateway_api_config)
|
389
|
+
if gke_auto_upgrade_config is not None:
|
390
|
+
pulumi.set(__self__, "gke_auto_upgrade_config", gke_auto_upgrade_config)
|
386
391
|
if identity_service_config is not None:
|
387
392
|
pulumi.set(__self__, "identity_service_config", identity_service_config)
|
388
393
|
if in_transit_encryption_config is not None:
|
@@ -889,6 +894,19 @@ class ClusterArgs:
|
|
889
894
|
def gateway_api_config(self, value: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']]):
|
890
895
|
pulumi.set(self, "gateway_api_config", value)
|
891
896
|
|
897
|
+
@property
|
898
|
+
@pulumi.getter(name="gkeAutoUpgradeConfig")
|
899
|
+
def gke_auto_upgrade_config(self) -> Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']]:
|
900
|
+
"""
|
901
|
+
Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
902
|
+
Structure is documented below.
|
903
|
+
"""
|
904
|
+
return pulumi.get(self, "gke_auto_upgrade_config")
|
905
|
+
|
906
|
+
@gke_auto_upgrade_config.setter
|
907
|
+
def gke_auto_upgrade_config(self, value: Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']]):
|
908
|
+
pulumi.set(self, "gke_auto_upgrade_config", value)
|
909
|
+
|
892
910
|
@property
|
893
911
|
@pulumi.getter(name="identityServiceConfig")
|
894
912
|
def identity_service_config(self) -> Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']]:
|
@@ -1574,6 +1592,7 @@ class _ClusterState:
|
|
1574
1592
|
enterprise_config: Optional[pulumi.Input['ClusterEnterpriseConfigArgs']] = None,
|
1575
1593
|
fleet: Optional[pulumi.Input['ClusterFleetArgs']] = None,
|
1576
1594
|
gateway_api_config: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']] = None,
|
1595
|
+
gke_auto_upgrade_config: Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']] = None,
|
1577
1596
|
identity_service_config: Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']] = None,
|
1578
1597
|
in_transit_encryption_config: Optional[pulumi.Input[builtins.str]] = None,
|
1579
1598
|
initial_node_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -1695,6 +1714,8 @@ class _ClusterState:
|
|
1695
1714
|
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
1696
1715
|
:param pulumi.Input['ClusterFleetArgs'] fleet: Fleet configuration for the cluster. Structure is documented below.
|
1697
1716
|
:param pulumi.Input['ClusterGatewayApiConfigArgs'] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
1717
|
+
:param pulumi.Input['ClusterGkeAutoUpgradeConfigArgs'] gke_auto_upgrade_config: Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
1718
|
+
Structure is documented below.
|
1698
1719
|
:param pulumi.Input['ClusterIdentityServiceConfigArgs'] identity_service_config: . Structure is documented below.
|
1699
1720
|
:param pulumi.Input[builtins.str] in_transit_encryption_config: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
|
1700
1721
|
:param pulumi.Input[builtins.int] initial_node_count: The number of nodes to create in this
|
@@ -1929,6 +1950,8 @@ class _ClusterState:
|
|
1929
1950
|
pulumi.set(__self__, "fleet", fleet)
|
1930
1951
|
if gateway_api_config is not None:
|
1931
1952
|
pulumi.set(__self__, "gateway_api_config", gateway_api_config)
|
1953
|
+
if gke_auto_upgrade_config is not None:
|
1954
|
+
pulumi.set(__self__, "gke_auto_upgrade_config", gke_auto_upgrade_config)
|
1932
1955
|
if identity_service_config is not None:
|
1933
1956
|
pulumi.set(__self__, "identity_service_config", identity_service_config)
|
1934
1957
|
if in_transit_encryption_config is not None:
|
@@ -2473,6 +2496,19 @@ class _ClusterState:
|
|
2473
2496
|
def gateway_api_config(self, value: Optional[pulumi.Input['ClusterGatewayApiConfigArgs']]):
|
2474
2497
|
pulumi.set(self, "gateway_api_config", value)
|
2475
2498
|
|
2499
|
+
@property
|
2500
|
+
@pulumi.getter(name="gkeAutoUpgradeConfig")
|
2501
|
+
def gke_auto_upgrade_config(self) -> Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']]:
|
2502
|
+
"""
|
2503
|
+
Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
2504
|
+
Structure is documented below.
|
2505
|
+
"""
|
2506
|
+
return pulumi.get(self, "gke_auto_upgrade_config")
|
2507
|
+
|
2508
|
+
@gke_auto_upgrade_config.setter
|
2509
|
+
def gke_auto_upgrade_config(self, value: Optional[pulumi.Input['ClusterGkeAutoUpgradeConfigArgs']]):
|
2510
|
+
pulumi.set(self, "gke_auto_upgrade_config", value)
|
2511
|
+
|
2476
2512
|
@property
|
2477
2513
|
@pulumi.getter(name="identityServiceConfig")
|
2478
2514
|
def identity_service_config(self) -> Optional[pulumi.Input['ClusterIdentityServiceConfigArgs']]:
|
@@ -3247,6 +3283,7 @@ class Cluster(pulumi.CustomResource):
|
|
3247
3283
|
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3248
3284
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3249
3285
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
3286
|
+
gke_auto_upgrade_config: Optional[pulumi.Input[Union['ClusterGkeAutoUpgradeConfigArgs', 'ClusterGkeAutoUpgradeConfigArgsDict']]] = None,
|
3250
3287
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
3251
3288
|
in_transit_encryption_config: Optional[pulumi.Input[builtins.str]] = None,
|
3252
3289
|
initial_node_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -3481,6 +3518,8 @@ class Cluster(pulumi.CustomResource):
|
|
3481
3518
|
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
3482
3519
|
:param pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
3483
3520
|
:param pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
3521
|
+
:param pulumi.Input[Union['ClusterGkeAutoUpgradeConfigArgs', 'ClusterGkeAutoUpgradeConfigArgsDict']] gke_auto_upgrade_config: Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
3522
|
+
Structure is documented below.
|
3484
3523
|
:param pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']] identity_service_config: . Structure is documented below.
|
3485
3524
|
:param pulumi.Input[builtins.str] in_transit_encryption_config: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
|
3486
3525
|
:param pulumi.Input[builtins.int] initial_node_count: The number of nodes to create in this
|
@@ -3808,6 +3847,7 @@ class Cluster(pulumi.CustomResource):
|
|
3808
3847
|
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3809
3848
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3810
3849
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
3850
|
+
gke_auto_upgrade_config: Optional[pulumi.Input[Union['ClusterGkeAutoUpgradeConfigArgs', 'ClusterGkeAutoUpgradeConfigArgsDict']]] = None,
|
3811
3851
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
3812
3852
|
in_transit_encryption_config: Optional[pulumi.Input[builtins.str]] = None,
|
3813
3853
|
initial_node_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -3894,6 +3934,7 @@ class Cluster(pulumi.CustomResource):
|
|
3894
3934
|
__props__.__dict__["enterprise_config"] = enterprise_config
|
3895
3935
|
__props__.__dict__["fleet"] = fleet
|
3896
3936
|
__props__.__dict__["gateway_api_config"] = gateway_api_config
|
3937
|
+
__props__.__dict__["gke_auto_upgrade_config"] = gke_auto_upgrade_config
|
3897
3938
|
__props__.__dict__["identity_service_config"] = identity_service_config
|
3898
3939
|
__props__.__dict__["in_transit_encryption_config"] = in_transit_encryption_config
|
3899
3940
|
__props__.__dict__["initial_node_count"] = initial_node_count
|
@@ -3994,6 +4035,7 @@ class Cluster(pulumi.CustomResource):
|
|
3994
4035
|
enterprise_config: Optional[pulumi.Input[Union['ClusterEnterpriseConfigArgs', 'ClusterEnterpriseConfigArgsDict']]] = None,
|
3995
4036
|
fleet: Optional[pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']]] = None,
|
3996
4037
|
gateway_api_config: Optional[pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']]] = None,
|
4038
|
+
gke_auto_upgrade_config: Optional[pulumi.Input[Union['ClusterGkeAutoUpgradeConfigArgs', 'ClusterGkeAutoUpgradeConfigArgsDict']]] = None,
|
3997
4039
|
identity_service_config: Optional[pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']]] = None,
|
3998
4040
|
in_transit_encryption_config: Optional[pulumi.Input[builtins.str]] = None,
|
3999
4041
|
initial_node_count: Optional[pulumi.Input[builtins.int]] = None,
|
@@ -4120,6 +4162,8 @@ class Cluster(pulumi.CustomResource):
|
|
4120
4162
|
<a name="nested_default_snat_status"></a>The `default_snat_status` block supports
|
4121
4163
|
:param pulumi.Input[Union['ClusterFleetArgs', 'ClusterFleetArgsDict']] fleet: Fleet configuration for the cluster. Structure is documented below.
|
4122
4164
|
:param pulumi.Input[Union['ClusterGatewayApiConfigArgs', 'ClusterGatewayApiConfigArgsDict']] gateway_api_config: Configuration for [GKE Gateway API controller](https://cloud.google.com/kubernetes-engine/docs/concepts/gateway-api). Structure is documented below.
|
4165
|
+
:param pulumi.Input[Union['ClusterGkeAutoUpgradeConfigArgs', 'ClusterGkeAutoUpgradeConfigArgsDict']] gke_auto_upgrade_config: Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
4166
|
+
Structure is documented below.
|
4123
4167
|
:param pulumi.Input[Union['ClusterIdentityServiceConfigArgs', 'ClusterIdentityServiceConfigArgsDict']] identity_service_config: . Structure is documented below.
|
4124
4168
|
:param pulumi.Input[builtins.str] in_transit_encryption_config: Defines the config of in-transit encryption. Valid values are `IN_TRANSIT_ENCRYPTION_DISABLED` and `IN_TRANSIT_ENCRYPTION_INTER_NODE_TRANSPARENT`.
|
4125
4169
|
:param pulumi.Input[builtins.int] initial_node_count: The number of nodes to create in this
|
@@ -4324,6 +4368,7 @@ class Cluster(pulumi.CustomResource):
|
|
4324
4368
|
__props__.__dict__["enterprise_config"] = enterprise_config
|
4325
4369
|
__props__.__dict__["fleet"] = fleet
|
4326
4370
|
__props__.__dict__["gateway_api_config"] = gateway_api_config
|
4371
|
+
__props__.__dict__["gke_auto_upgrade_config"] = gke_auto_upgrade_config
|
4327
4372
|
__props__.__dict__["identity_service_config"] = identity_service_config
|
4328
4373
|
__props__.__dict__["in_transit_encryption_config"] = in_transit_encryption_config
|
4329
4374
|
__props__.__dict__["initial_node_count"] = initial_node_count
|
@@ -4681,6 +4726,15 @@ class Cluster(pulumi.CustomResource):
|
|
4681
4726
|
"""
|
4682
4727
|
return pulumi.get(self, "gateway_api_config")
|
4683
4728
|
|
4729
|
+
@property
|
4730
|
+
@pulumi.getter(name="gkeAutoUpgradeConfig")
|
4731
|
+
def gke_auto_upgrade_config(self) -> pulumi.Output['outputs.ClusterGkeAutoUpgradeConfig']:
|
4732
|
+
"""
|
4733
|
+
Configuration options for the auto-upgrade patch type feature, which provide more control over the speed of automatic upgrades of your GKE clusters.
|
4734
|
+
Structure is documented below.
|
4735
|
+
"""
|
4736
|
+
return pulumi.get(self, "gke_auto_upgrade_config")
|
4737
|
+
|
4684
4738
|
@property
|
4685
4739
|
@pulumi.getter(name="identityServiceConfig")
|
4686
4740
|
def identity_service_config(self) -> pulumi.Output['outputs.ClusterIdentityServiceConfig']:
|
@@ -28,7 +28,7 @@ class GetClusterResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getCluster.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, control_plane_endpoints_configs=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, disable_l4_lb_firewall_reconciliation=None, dns_configs=None, effective_labels=None, enable_autopilot=None, enable_cilium_clusterwide_network_policy=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, enterprise_configs=None, fleets=None, gateway_api_configs=None, id=None, identity_service_configs=None, in_transit_encryption_config=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_performance_configs=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_autoscalings=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, pulumi_labels=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, secret_manager_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, user_managed_keys_configs=None, vertical_pod_autoscalings=None, workload_alts_configs=None, workload_identity_configs=None):
|
31
|
+
def __init__(__self__, addons_configs=None, allow_net_admin=None, authenticator_groups_configs=None, binary_authorizations=None, cluster_autoscalings=None, cluster_ipv4_cidr=None, cluster_telemetries=None, confidential_nodes=None, control_plane_endpoints_configs=None, cost_management_configs=None, database_encryptions=None, datapath_provider=None, default_max_pods_per_node=None, default_snat_statuses=None, deletion_protection=None, description=None, disable_l4_lb_firewall_reconciliation=None, dns_configs=None, effective_labels=None, enable_autopilot=None, enable_cilium_clusterwide_network_policy=None, enable_fqdn_network_policy=None, enable_intranode_visibility=None, enable_k8s_beta_apis=None, enable_kubernetes_alpha=None, enable_l4_ilb_subsetting=None, enable_legacy_abac=None, enable_multi_networking=None, enable_shielded_nodes=None, enable_tpu=None, endpoint=None, enterprise_configs=None, fleets=None, gateway_api_configs=None, gke_auto_upgrade_configs=None, id=None, identity_service_configs=None, in_transit_encryption_config=None, initial_node_count=None, ip_allocation_policies=None, label_fingerprint=None, location=None, logging_configs=None, logging_service=None, maintenance_policies=None, master_authorized_networks_configs=None, master_auths=None, master_version=None, mesh_certificates=None, min_master_version=None, monitoring_configs=None, monitoring_service=None, name=None, network=None, network_performance_configs=None, network_policies=None, networking_mode=None, node_configs=None, node_locations=None, node_pool_auto_configs=None, node_pool_defaults=None, node_pools=None, node_version=None, notification_configs=None, operation=None, pod_autoscalings=None, pod_security_policy_configs=None, private_cluster_configs=None, private_ipv6_google_access=None, project=None, protect_configs=None, pulumi_labels=None, release_channels=None, remove_default_node_pool=None, resource_labels=None, resource_usage_export_configs=None, secret_manager_configs=None, security_posture_configs=None, self_link=None, service_external_ips_configs=None, services_ipv4_cidr=None, subnetwork=None, tpu_configs=None, tpu_ipv4_cidr_block=None, user_managed_keys_configs=None, vertical_pod_autoscalings=None, workload_alts_configs=None, workload_identity_configs=None):
|
32
32
|
if addons_configs and not isinstance(addons_configs, list):
|
33
33
|
raise TypeError("Expected argument 'addons_configs' to be a list")
|
34
34
|
pulumi.set(__self__, "addons_configs", addons_configs)
|
@@ -131,6 +131,9 @@ class GetClusterResult:
|
|
131
131
|
if gateway_api_configs and not isinstance(gateway_api_configs, list):
|
132
132
|
raise TypeError("Expected argument 'gateway_api_configs' to be a list")
|
133
133
|
pulumi.set(__self__, "gateway_api_configs", gateway_api_configs)
|
134
|
+
if gke_auto_upgrade_configs and not isinstance(gke_auto_upgrade_configs, list):
|
135
|
+
raise TypeError("Expected argument 'gke_auto_upgrade_configs' to be a list")
|
136
|
+
pulumi.set(__self__, "gke_auto_upgrade_configs", gke_auto_upgrade_configs)
|
134
137
|
if id and not isinstance(id, str):
|
135
138
|
raise TypeError("Expected argument 'id' to be a str")
|
136
139
|
pulumi.set(__self__, "id", id)
|
@@ -461,6 +464,11 @@ class GetClusterResult:
|
|
461
464
|
def gateway_api_configs(self) -> Sequence['outputs.GetClusterGatewayApiConfigResult']:
|
462
465
|
return pulumi.get(self, "gateway_api_configs")
|
463
466
|
|
467
|
+
@property
|
468
|
+
@pulumi.getter(name="gkeAutoUpgradeConfigs")
|
469
|
+
def gke_auto_upgrade_configs(self) -> Sequence['outputs.GetClusterGkeAutoUpgradeConfigResult']:
|
470
|
+
return pulumi.get(self, "gke_auto_upgrade_configs")
|
471
|
+
|
464
472
|
@property
|
465
473
|
@pulumi.getter
|
466
474
|
def id(self) -> builtins.str:
|
@@ -770,6 +778,7 @@ class AwaitableGetClusterResult(GetClusterResult):
|
|
770
778
|
enterprise_configs=self.enterprise_configs,
|
771
779
|
fleets=self.fleets,
|
772
780
|
gateway_api_configs=self.gateway_api_configs,
|
781
|
+
gke_auto_upgrade_configs=self.gke_auto_upgrade_configs,
|
773
782
|
id=self.id,
|
774
783
|
identity_service_configs=self.identity_service_configs,
|
775
784
|
in_transit_encryption_config=self.in_transit_encryption_config,
|
@@ -896,6 +905,7 @@ def get_cluster(location: Optional[builtins.str] = None,
|
|
896
905
|
enterprise_configs=pulumi.get(__ret__, 'enterprise_configs'),
|
897
906
|
fleets=pulumi.get(__ret__, 'fleets'),
|
898
907
|
gateway_api_configs=pulumi.get(__ret__, 'gateway_api_configs'),
|
908
|
+
gke_auto_upgrade_configs=pulumi.get(__ret__, 'gke_auto_upgrade_configs'),
|
899
909
|
id=pulumi.get(__ret__, 'id'),
|
900
910
|
identity_service_configs=pulumi.get(__ret__, 'identity_service_configs'),
|
901
911
|
in_transit_encryption_config=pulumi.get(__ret__, 'in_transit_encryption_config'),
|
@@ -1019,6 +1029,7 @@ def get_cluster_output(location: Optional[pulumi.Input[Optional[builtins.str]]]
|
|
1019
1029
|
enterprise_configs=pulumi.get(__response__, 'enterprise_configs'),
|
1020
1030
|
fleets=pulumi.get(__response__, 'fleets'),
|
1021
1031
|
gateway_api_configs=pulumi.get(__response__, 'gateway_api_configs'),
|
1032
|
+
gke_auto_upgrade_configs=pulumi.get(__response__, 'gke_auto_upgrade_configs'),
|
1022
1033
|
id=pulumi.get(__response__, 'id'),
|
1023
1034
|
identity_service_configs=pulumi.get(__response__, 'identity_service_configs'),
|
1024
1035
|
in_transit_encryption_config=pulumi.get(__response__, 'in_transit_encryption_config'),
|
@@ -88,6 +88,8 @@ class NodePoolArgs:
|
|
88
88
|
the provider-configured project will be used.
|
89
89
|
:param pulumi.Input['NodePoolQueuedProvisioningArgs'] queued_provisioning: Specifies node pool-level settings of queued provisioning.
|
90
90
|
Structure is documented below.
|
91
|
+
|
92
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
91
93
|
:param pulumi.Input['NodePoolUpgradeSettingsArgs'] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
|
92
94
|
The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
|
93
95
|
:param pulumi.Input[builtins.str] version: The Kubernetes version for the nodes in this pool. Note that if this field
|
@@ -336,6 +338,8 @@ class NodePoolArgs:
|
|
336
338
|
"""
|
337
339
|
Specifies node pool-level settings of queued provisioning.
|
338
340
|
Structure is documented below.
|
341
|
+
|
342
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
339
343
|
"""
|
340
344
|
return pulumi.get(self, "queued_provisioning")
|
341
345
|
|
@@ -448,6 +452,8 @@ class _NodePoolState:
|
|
448
452
|
the provider-configured project will be used.
|
449
453
|
:param pulumi.Input['NodePoolQueuedProvisioningArgs'] queued_provisioning: Specifies node pool-level settings of queued provisioning.
|
450
454
|
Structure is documented below.
|
455
|
+
|
456
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
451
457
|
:param pulumi.Input['NodePoolUpgradeSettingsArgs'] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
|
452
458
|
The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
|
453
459
|
:param pulumi.Input[builtins.str] version: The Kubernetes version for the nodes in this pool. Note that if this field
|
@@ -736,6 +742,8 @@ class _NodePoolState:
|
|
736
742
|
"""
|
737
743
|
Specifies node pool-level settings of queued provisioning.
|
738
744
|
Structure is documented below.
|
745
|
+
|
746
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
739
747
|
"""
|
740
748
|
return pulumi.get(self, "queued_provisioning")
|
741
749
|
|
@@ -932,6 +940,8 @@ class NodePool(pulumi.CustomResource):
|
|
932
940
|
the provider-configured project will be used.
|
933
941
|
:param pulumi.Input[Union['NodePoolQueuedProvisioningArgs', 'NodePoolQueuedProvisioningArgsDict']] queued_provisioning: Specifies node pool-level settings of queued provisioning.
|
934
942
|
Structure is documented below.
|
943
|
+
|
944
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
935
945
|
:param pulumi.Input[Union['NodePoolUpgradeSettingsArgs', 'NodePoolUpgradeSettingsArgsDict']] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
|
936
946
|
The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
|
937
947
|
:param pulumi.Input[builtins.str] version: The Kubernetes version for the nodes in this pool. Note that if this field
|
@@ -1181,6 +1191,8 @@ class NodePool(pulumi.CustomResource):
|
|
1181
1191
|
the provider-configured project will be used.
|
1182
1192
|
:param pulumi.Input[Union['NodePoolQueuedProvisioningArgs', 'NodePoolQueuedProvisioningArgsDict']] queued_provisioning: Specifies node pool-level settings of queued provisioning.
|
1183
1193
|
Structure is documented below.
|
1194
|
+
|
1195
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
1184
1196
|
:param pulumi.Input[Union['NodePoolUpgradeSettingsArgs', 'NodePoolUpgradeSettingsArgsDict']] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
|
1185
1197
|
The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
|
1186
1198
|
:param pulumi.Input[builtins.str] version: The Kubernetes version for the nodes in this pool. Note that if this field
|
@@ -1386,6 +1398,8 @@ class NodePool(pulumi.CustomResource):
|
|
1386
1398
|
"""
|
1387
1399
|
Specifies node pool-level settings of queued provisioning.
|
1388
1400
|
Structure is documented below.
|
1401
|
+
|
1402
|
+
<a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
|
1389
1403
|
"""
|
1390
1404
|
return pulumi.get(self, "queued_provisioning")
|
1391
1405
|
|