pulumi-gcp 8.24.0a1743057423__py3-none-any.whl → 8.25.0a1743489606__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/bigquery/_inputs.py +158 -0
  3. pulumi_gcp/bigquery/outputs.py +115 -0
  4. pulumi_gcp/bigquery/reservation.py +189 -1
  5. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +11 -7
  6. pulumi_gcp/chronicle/data_access_label.py +16 -0
  7. pulumi_gcp/cloudrunv2/service.py +14 -14
  8. pulumi_gcp/compute/__init__.py +1 -0
  9. pulumi_gcp/compute/_inputs.py +616 -18
  10. pulumi_gcp/compute/get_images.py +172 -0
  11. pulumi_gcp/compute/get_resource_policy.py +15 -4
  12. pulumi_gcp/compute/image.py +54 -0
  13. pulumi_gcp/compute/interconnect.py +14 -7
  14. pulumi_gcp/compute/outputs.py +710 -18
  15. pulumi_gcp/compute/resource_policy.py +169 -3
  16. pulumi_gcp/compute/router_route_policy.py +16 -0
  17. pulumi_gcp/config/__init__.pyi +6 -0
  18. pulumi_gcp/config/vars.py +12 -0
  19. pulumi_gcp/container/_inputs.py +262 -1
  20. pulumi_gcp/container/cluster.py +54 -0
  21. pulumi_gcp/container/get_cluster.py +12 -1
  22. pulumi_gcp/container/outputs.py +297 -2
  23. pulumi_gcp/dataproc/_inputs.py +23 -0
  24. pulumi_gcp/dataproc/outputs.py +27 -0
  25. pulumi_gcp/lustre/__init__.py +8 -0
  26. pulumi_gcp/lustre/instance.py +983 -0
  27. pulumi_gcp/memorystore/_inputs.py +419 -0
  28. pulumi_gcp/memorystore/get_instance.py +23 -1
  29. pulumi_gcp/memorystore/instance.py +137 -7
  30. pulumi_gcp/memorystore/outputs.py +544 -0
  31. pulumi_gcp/networkmanagement/_inputs.py +422 -91
  32. pulumi_gcp/networkmanagement/connectivity_test.py +233 -211
  33. pulumi_gcp/networkmanagement/outputs.py +280 -61
  34. pulumi_gcp/networksecurity/_inputs.py +392 -0
  35. pulumi_gcp/networksecurity/intercept_deployment_group.py +44 -16
  36. pulumi_gcp/networksecurity/intercept_endpoint_group.py +90 -36
  37. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +53 -8
  38. pulumi_gcp/networksecurity/outputs.py +240 -0
  39. pulumi_gcp/organizations/__init__.py +1 -0
  40. pulumi_gcp/organizations/get_iam_custom_role.py +198 -0
  41. pulumi_gcp/osconfig/__init__.py +1 -0
  42. pulumi_gcp/osconfig/_inputs.py +5413 -0
  43. pulumi_gcp/osconfig/outputs.py +3962 -0
  44. pulumi_gcp/osconfig/v2_policy_orchestrator.py +971 -0
  45. pulumi_gcp/provider.py +60 -0
  46. pulumi_gcp/pulumi-plugin.json +1 -1
  47. pulumi_gcp/storage/__init__.py +2 -0
  48. pulumi_gcp/storage/_inputs.py +726 -0
  49. pulumi_gcp/storage/control_project_intelligence_config.py +366 -0
  50. pulumi_gcp/storage/get_control_project_intelligence_config.py +130 -0
  51. pulumi_gcp/storage/outputs.py +716 -0
  52. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/METADATA +1 -1
  53. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/RECORD +55 -48
  54. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/WHEEL +0 -0
  55. {pulumi_gcp-8.24.0a1743057423.dist-info → pulumi_gcp-8.25.0a1743489606.dist-info}/top_level.txt +0 -0
@@ -219,6 +219,8 @@ __all__ = [
219
219
  'ClusterControlPlaneEndpointsConfigArgsDict',
220
220
  'ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs',
221
221
  'ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgsDict',
222
+ 'ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs',
223
+ 'ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgsDict',
222
224
  'ClusterCostManagementConfigArgs',
223
225
  'ClusterCostManagementConfigArgsDict',
224
226
  'ClusterDatabaseEncryptionArgs',
@@ -331,6 +333,8 @@ __all__ = [
331
333
  'ClusterNodeConfigSoleTenantConfigNodeAffinityArgsDict',
332
334
  'ClusterNodeConfigTaintArgs',
333
335
  'ClusterNodeConfigTaintArgsDict',
336
+ 'ClusterNodeConfigWindowsNodeConfigArgs',
337
+ 'ClusterNodeConfigWindowsNodeConfigArgsDict',
334
338
  'ClusterNodeConfigWorkloadMetadataConfigArgs',
335
339
  'ClusterNodeConfigWorkloadMetadataConfigArgsDict',
336
340
  'ClusterNodePoolArgs',
@@ -427,6 +431,8 @@ __all__ = [
427
431
  'ClusterNodePoolNodeConfigSoleTenantConfigNodeAffinityArgsDict',
428
432
  'ClusterNodePoolNodeConfigTaintArgs',
429
433
  'ClusterNodePoolNodeConfigTaintArgsDict',
434
+ 'ClusterNodePoolNodeConfigWindowsNodeConfigArgs',
435
+ 'ClusterNodePoolNodeConfigWindowsNodeConfigArgsDict',
430
436
  'ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs',
431
437
  'ClusterNodePoolNodeConfigWorkloadMetadataConfigArgsDict',
432
438
  'ClusterNodePoolPlacementPolicyArgs',
@@ -445,6 +451,8 @@ __all__ = [
445
451
  'ClusterNotificationConfigPubsubArgsDict',
446
452
  'ClusterNotificationConfigPubsubFilterArgs',
447
453
  'ClusterNotificationConfigPubsubFilterArgsDict',
454
+ 'ClusterPodAutoscalingArgs',
455
+ 'ClusterPodAutoscalingArgsDict',
448
456
  'ClusterPodSecurityPolicyConfigArgs',
449
457
  'ClusterPodSecurityPolicyConfigArgsDict',
450
458
  'ClusterPrivateClusterConfigArgs',
@@ -547,6 +555,8 @@ __all__ = [
547
555
  'NodePoolNodeConfigSoleTenantConfigNodeAffinityArgsDict',
548
556
  'NodePoolNodeConfigTaintArgs',
549
557
  'NodePoolNodeConfigTaintArgsDict',
558
+ 'NodePoolNodeConfigWindowsNodeConfigArgs',
559
+ 'NodePoolNodeConfigWindowsNodeConfigArgsDict',
550
560
  'NodePoolNodeConfigWorkloadMetadataConfigArgs',
551
561
  'NodePoolNodeConfigWorkloadMetadataConfigArgsDict',
552
562
  'NodePoolPlacementPolicyArgs',
@@ -6548,18 +6558,26 @@ if not MYPY:
6548
6558
  """
6549
6559
  DNS endpoint configuration.
6550
6560
  """
6561
+ ip_endpoints_config: NotRequired[pulumi.Input['ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgsDict']]
6562
+ """
6563
+ IP endpoint configuration.
6564
+ """
6551
6565
  elif False:
6552
6566
  ClusterControlPlaneEndpointsConfigArgsDict: TypeAlias = Mapping[str, Any]
6553
6567
 
6554
6568
  @pulumi.input_type
6555
6569
  class ClusterControlPlaneEndpointsConfigArgs:
6556
6570
  def __init__(__self__, *,
6557
- dns_endpoint_config: Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs']] = None):
6571
+ dns_endpoint_config: Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs']] = None,
6572
+ ip_endpoints_config: Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs']] = None):
6558
6573
  """
6559
6574
  :param pulumi.Input['ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs'] dns_endpoint_config: DNS endpoint configuration.
6575
+ :param pulumi.Input['ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs'] ip_endpoints_config: IP endpoint configuration.
6560
6576
  """
6561
6577
  if dns_endpoint_config is not None:
6562
6578
  pulumi.set(__self__, "dns_endpoint_config", dns_endpoint_config)
6579
+ if ip_endpoints_config is not None:
6580
+ pulumi.set(__self__, "ip_endpoints_config", ip_endpoints_config)
6563
6581
 
6564
6582
  @property
6565
6583
  @pulumi.getter(name="dnsEndpointConfig")
@@ -6573,6 +6591,18 @@ class ClusterControlPlaneEndpointsConfigArgs:
6573
6591
  def dns_endpoint_config(self, value: Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs']]):
6574
6592
  pulumi.set(self, "dns_endpoint_config", value)
6575
6593
 
6594
+ @property
6595
+ @pulumi.getter(name="ipEndpointsConfig")
6596
+ def ip_endpoints_config(self) -> Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs']]:
6597
+ """
6598
+ IP endpoint configuration.
6599
+ """
6600
+ return pulumi.get(self, "ip_endpoints_config")
6601
+
6602
+ @ip_endpoints_config.setter
6603
+ def ip_endpoints_config(self, value: Optional[pulumi.Input['ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs']]):
6604
+ pulumi.set(self, "ip_endpoints_config", value)
6605
+
6576
6606
 
6577
6607
  if not MYPY:
6578
6608
  class ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgsDict(TypedDict):
@@ -6626,6 +6656,38 @@ class ClusterControlPlaneEndpointsConfigDnsEndpointConfigArgs:
6626
6656
  pulumi.set(self, "endpoint", value)
6627
6657
 
6628
6658
 
6659
+ if not MYPY:
6660
+ class ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgsDict(TypedDict):
6661
+ enabled: NotRequired[pulumi.Input[bool]]
6662
+ """
6663
+ Controls whether to allow direct IP access. Defaults to `true`.
6664
+ """
6665
+ elif False:
6666
+ ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgsDict: TypeAlias = Mapping[str, Any]
6667
+
6668
+ @pulumi.input_type
6669
+ class ClusterControlPlaneEndpointsConfigIpEndpointsConfigArgs:
6670
+ def __init__(__self__, *,
6671
+ enabled: Optional[pulumi.Input[bool]] = None):
6672
+ """
6673
+ :param pulumi.Input[bool] enabled: Controls whether to allow direct IP access. Defaults to `true`.
6674
+ """
6675
+ if enabled is not None:
6676
+ pulumi.set(__self__, "enabled", enabled)
6677
+
6678
+ @property
6679
+ @pulumi.getter
6680
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
6681
+ """
6682
+ Controls whether to allow direct IP access. Defaults to `true`.
6683
+ """
6684
+ return pulumi.get(self, "enabled")
6685
+
6686
+ @enabled.setter
6687
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
6688
+ pulumi.set(self, "enabled", value)
6689
+
6690
+
6629
6691
  if not MYPY:
6630
6692
  class ClusterCostManagementConfigArgsDict(TypedDict):
6631
6693
  enabled: pulumi.Input[bool]
@@ -8641,6 +8703,10 @@ if not MYPY:
8641
8703
  this field to manage taints. If you do, `lifecycle.ignore_changes` is
8642
8704
  recommended. Structure is documented below.
8643
8705
  """
8706
+ windows_node_config: NotRequired[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgsDict']]
8707
+ """
8708
+ Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
8709
+ """
8644
8710
  workload_metadata_config: NotRequired[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgsDict']]
8645
8711
  """
8646
8712
  Metadata configuration to expose to workloads on the node pool.
@@ -8694,6 +8760,7 @@ class ClusterNodeConfigArgs:
8694
8760
  storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8695
8761
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
8696
8762
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]]] = None,
8763
+ windows_node_config: Optional[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs']] = None,
8697
8764
  workload_metadata_config: Optional[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs']] = None):
8698
8765
  """
8699
8766
  :param pulumi.Input['ClusterNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling
@@ -8798,6 +8865,7 @@ class ClusterNodeConfigArgs:
8798
8865
  Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
8799
8866
  this field to manage taints. If you do, `lifecycle.ignore_changes` is
8800
8867
  recommended. Structure is documented below.
8868
+ :param pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
8801
8869
  :param pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
8802
8870
  Structure is documented below.
8803
8871
  """
@@ -8885,6 +8953,8 @@ class ClusterNodeConfigArgs:
8885
8953
  pulumi.set(__self__, "tags", tags)
8886
8954
  if taints is not None:
8887
8955
  pulumi.set(__self__, "taints", taints)
8956
+ if windows_node_config is not None:
8957
+ pulumi.set(__self__, "windows_node_config", windows_node_config)
8888
8958
  if workload_metadata_config is not None:
8889
8959
  pulumi.set(__self__, "workload_metadata_config", workload_metadata_config)
8890
8960
 
@@ -9452,6 +9522,18 @@ class ClusterNodeConfigArgs:
9452
9522
  def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigTaintArgs']]]]):
9453
9523
  pulumi.set(self, "taints", value)
9454
9524
 
9525
+ @property
9526
+ @pulumi.getter(name="windowsNodeConfig")
9527
+ def windows_node_config(self) -> Optional[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs']]:
9528
+ """
9529
+ Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
9530
+ """
9531
+ return pulumi.get(self, "windows_node_config")
9532
+
9533
+ @windows_node_config.setter
9534
+ def windows_node_config(self, value: Optional[pulumi.Input['ClusterNodeConfigWindowsNodeConfigArgs']]):
9535
+ pulumi.set(self, "windows_node_config", value)
9536
+
9455
9537
  @property
9456
9538
  @pulumi.getter(name="workloadMetadataConfig")
9457
9539
  def workload_metadata_config(self) -> Optional[pulumi.Input['ClusterNodeConfigWorkloadMetadataConfigArgs']]:
@@ -11068,6 +11150,38 @@ class ClusterNodeConfigTaintArgs:
11068
11150
  pulumi.set(self, "value", value)
11069
11151
 
11070
11152
 
11153
+ if not MYPY:
11154
+ class ClusterNodeConfigWindowsNodeConfigArgsDict(TypedDict):
11155
+ osversion: NotRequired[pulumi.Input[str]]
11156
+ """
11157
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
11158
+ """
11159
+ elif False:
11160
+ ClusterNodeConfigWindowsNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
11161
+
11162
+ @pulumi.input_type
11163
+ class ClusterNodeConfigWindowsNodeConfigArgs:
11164
+ def __init__(__self__, *,
11165
+ osversion: Optional[pulumi.Input[str]] = None):
11166
+ """
11167
+ :param pulumi.Input[str] osversion: The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
11168
+ """
11169
+ if osversion is not None:
11170
+ pulumi.set(__self__, "osversion", osversion)
11171
+
11172
+ @property
11173
+ @pulumi.getter
11174
+ def osversion(self) -> Optional[pulumi.Input[str]]:
11175
+ """
11176
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
11177
+ """
11178
+ return pulumi.get(self, "osversion")
11179
+
11180
+ @osversion.setter
11181
+ def osversion(self, value: Optional[pulumi.Input[str]]):
11182
+ pulumi.set(self, "osversion", value)
11183
+
11184
+
11071
11185
  if not MYPY:
11072
11186
  class ClusterNodeConfigWorkloadMetadataConfigArgsDict(TypedDict):
11073
11187
  mode: pulumi.Input[str]
@@ -12803,6 +12917,10 @@ if not MYPY:
12803
12917
  this field to manage taints. If you do, `lifecycle.ignore_changes` is
12804
12918
  recommended. Structure is documented below.
12805
12919
  """
12920
+ windows_node_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgsDict']]
12921
+ """
12922
+ Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
12923
+ """
12806
12924
  workload_metadata_config: NotRequired[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgsDict']]
12807
12925
  """
12808
12926
  Metadata configuration to expose to workloads on the node pool.
@@ -12856,6 +12974,7 @@ class ClusterNodePoolNodeConfigArgs:
12856
12974
  storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12857
12975
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
12858
12976
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]]] = None,
12977
+ windows_node_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs']] = None,
12859
12978
  workload_metadata_config: Optional[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
12860
12979
  """
12861
12980
  :param pulumi.Input['ClusterNodePoolNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling
@@ -12960,6 +13079,7 @@ class ClusterNodePoolNodeConfigArgs:
12960
13079
  Kubernetes (eg. through `kubectl`), and it's recommended that you do not use
12961
13080
  this field to manage taints. If you do, `lifecycle.ignore_changes` is
12962
13081
  recommended. Structure is documented below.
13082
+ :param pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs'] windows_node_config: Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
12963
13083
  :param pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: Metadata configuration to expose to workloads on the node pool.
12964
13084
  Structure is documented below.
12965
13085
  """
@@ -13047,6 +13167,8 @@ class ClusterNodePoolNodeConfigArgs:
13047
13167
  pulumi.set(__self__, "tags", tags)
13048
13168
  if taints is not None:
13049
13169
  pulumi.set(__self__, "taints", taints)
13170
+ if windows_node_config is not None:
13171
+ pulumi.set(__self__, "windows_node_config", windows_node_config)
13050
13172
  if workload_metadata_config is not None:
13051
13173
  pulumi.set(__self__, "workload_metadata_config", workload_metadata_config)
13052
13174
 
@@ -13614,6 +13736,18 @@ class ClusterNodePoolNodeConfigArgs:
13614
13736
  def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigTaintArgs']]]]):
13615
13737
  pulumi.set(self, "taints", value)
13616
13738
 
13739
+ @property
13740
+ @pulumi.getter(name="windowsNodeConfig")
13741
+ def windows_node_config(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs']]:
13742
+ """
13743
+ Windows node configuration, currently supporting OSVersion [attribute](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/NodeConfig#osversion). The value must be one of [OS_VERSION_UNSPECIFIED, OS_VERSION_LTSC2019, OS_VERSION_LTSC2019]. For example:
13744
+ """
13745
+ return pulumi.get(self, "windows_node_config")
13746
+
13747
+ @windows_node_config.setter
13748
+ def windows_node_config(self, value: Optional[pulumi.Input['ClusterNodePoolNodeConfigWindowsNodeConfigArgs']]):
13749
+ pulumi.set(self, "windows_node_config", value)
13750
+
13617
13751
  @property
13618
13752
  @pulumi.getter(name="workloadMetadataConfig")
13619
13753
  def workload_metadata_config(self) -> Optional[pulumi.Input['ClusterNodePoolNodeConfigWorkloadMetadataConfigArgs']]:
@@ -15230,6 +15364,38 @@ class ClusterNodePoolNodeConfigTaintArgs:
15230
15364
  pulumi.set(self, "value", value)
15231
15365
 
15232
15366
 
15367
+ if not MYPY:
15368
+ class ClusterNodePoolNodeConfigWindowsNodeConfigArgsDict(TypedDict):
15369
+ osversion: NotRequired[pulumi.Input[str]]
15370
+ """
15371
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
15372
+ """
15373
+ elif False:
15374
+ ClusterNodePoolNodeConfigWindowsNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
15375
+
15376
+ @pulumi.input_type
15377
+ class ClusterNodePoolNodeConfigWindowsNodeConfigArgs:
15378
+ def __init__(__self__, *,
15379
+ osversion: Optional[pulumi.Input[str]] = None):
15380
+ """
15381
+ :param pulumi.Input[str] osversion: The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
15382
+ """
15383
+ if osversion is not None:
15384
+ pulumi.set(__self__, "osversion", osversion)
15385
+
15386
+ @property
15387
+ @pulumi.getter
15388
+ def osversion(self) -> Optional[pulumi.Input[str]]:
15389
+ """
15390
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
15391
+ """
15392
+ return pulumi.get(self, "osversion")
15393
+
15394
+ @osversion.setter
15395
+ def osversion(self, value: Optional[pulumi.Input[str]]):
15396
+ pulumi.set(self, "osversion", value)
15397
+
15398
+
15233
15399
  if not MYPY:
15234
15400
  class ClusterNodePoolNodeConfigWorkloadMetadataConfigArgsDict(TypedDict):
15235
15401
  mode: pulumi.Input[str]
@@ -15726,6 +15892,49 @@ class ClusterNotificationConfigPubsubFilterArgs:
15726
15892
  pulumi.set(self, "event_types", value)
15727
15893
 
15728
15894
 
15895
+ if not MYPY:
15896
+ class ClusterPodAutoscalingArgsDict(TypedDict):
15897
+ hpa_profile: pulumi.Input[str]
15898
+ """
15899
+ Enable the Horizontal Pod Autoscaling profile for this cluster.
15900
+ Acceptable values are:
15901
+ * `"NONE"`: Customers explicitly opt-out of HPA profiles.
15902
+ * `"PERFORMANCE"`: PERFORMANCE is used when customers opt-in to the performance HPA profile. In this profile we support a higher number of HPAs per cluster and faster metrics collection for workload autoscaling.
15903
+ See [HPAProfile](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#hpaprofile) for more details.
15904
+ """
15905
+ elif False:
15906
+ ClusterPodAutoscalingArgsDict: TypeAlias = Mapping[str, Any]
15907
+
15908
+ @pulumi.input_type
15909
+ class ClusterPodAutoscalingArgs:
15910
+ def __init__(__self__, *,
15911
+ hpa_profile: pulumi.Input[str]):
15912
+ """
15913
+ :param pulumi.Input[str] hpa_profile: Enable the Horizontal Pod Autoscaling profile for this cluster.
15914
+ Acceptable values are:
15915
+ * `"NONE"`: Customers explicitly opt-out of HPA profiles.
15916
+ * `"PERFORMANCE"`: PERFORMANCE is used when customers opt-in to the performance HPA profile. In this profile we support a higher number of HPAs per cluster and faster metrics collection for workload autoscaling.
15917
+ See [HPAProfile](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#hpaprofile) for more details.
15918
+ """
15919
+ pulumi.set(__self__, "hpa_profile", hpa_profile)
15920
+
15921
+ @property
15922
+ @pulumi.getter(name="hpaProfile")
15923
+ def hpa_profile(self) -> pulumi.Input[str]:
15924
+ """
15925
+ Enable the Horizontal Pod Autoscaling profile for this cluster.
15926
+ Acceptable values are:
15927
+ * `"NONE"`: Customers explicitly opt-out of HPA profiles.
15928
+ * `"PERFORMANCE"`: PERFORMANCE is used when customers opt-in to the performance HPA profile. In this profile we support a higher number of HPAs per cluster and faster metrics collection for workload autoscaling.
15929
+ See [HPAProfile](https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1beta1/projects.locations.clusters#hpaprofile) for more details.
15930
+ """
15931
+ return pulumi.get(self, "hpa_profile")
15932
+
15933
+ @hpa_profile.setter
15934
+ def hpa_profile(self, value: pulumi.Input[str]):
15935
+ pulumi.set(self, "hpa_profile", value)
15936
+
15937
+
15729
15938
  if not MYPY:
15730
15939
  class ClusterPodSecurityPolicyConfigArgsDict(TypedDict):
15731
15940
  enabled: pulumi.Input[bool]
@@ -17457,6 +17666,10 @@ if not MYPY:
17457
17666
  """
17458
17667
  List of Kubernetes taints to be applied to each node.
17459
17668
  """
17669
+ windows_node_config: NotRequired[pulumi.Input['NodePoolNodeConfigWindowsNodeConfigArgsDict']]
17670
+ """
17671
+ Parameters that can be configured on Windows nodes.
17672
+ """
17460
17673
  workload_metadata_config: NotRequired[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgsDict']]
17461
17674
  """
17462
17675
  The workload metadata configuration for this node.
@@ -17509,6 +17722,7 @@ class NodePoolNodeConfigArgs:
17509
17722
  storage_pools: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
17510
17723
  tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
17511
17724
  taints: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]]] = None,
17725
+ windows_node_config: Optional[pulumi.Input['NodePoolNodeConfigWindowsNodeConfigArgs']] = None,
17512
17726
  workload_metadata_config: Optional[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs']] = None):
17513
17727
  """
17514
17728
  :param pulumi.Input['NodePoolNodeConfigAdvancedMachineFeaturesArgs'] advanced_machine_features: Specifies options for controlling advanced machine features.
@@ -17556,6 +17770,7 @@ class NodePoolNodeConfigArgs:
17556
17770
  :param pulumi.Input[Sequence[pulumi.Input[str]]] storage_pools: The list of Storage Pools where boot disks are provisioned.
17557
17771
  :param pulumi.Input[Sequence[pulumi.Input[str]]] tags: The list of instance tags applied to all nodes.
17558
17772
  :param pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]] taints: List of Kubernetes taints to be applied to each node.
17773
+ :param pulumi.Input['NodePoolNodeConfigWindowsNodeConfigArgs'] windows_node_config: Parameters that can be configured on Windows nodes.
17559
17774
  :param pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs'] workload_metadata_config: The workload metadata configuration for this node.
17560
17775
  """
17561
17776
  if advanced_machine_features is not None:
@@ -17642,6 +17857,8 @@ class NodePoolNodeConfigArgs:
17642
17857
  pulumi.set(__self__, "tags", tags)
17643
17858
  if taints is not None:
17644
17859
  pulumi.set(__self__, "taints", taints)
17860
+ if windows_node_config is not None:
17861
+ pulumi.set(__self__, "windows_node_config", windows_node_config)
17645
17862
  if workload_metadata_config is not None:
17646
17863
  pulumi.set(__self__, "workload_metadata_config", workload_metadata_config)
17647
17864
 
@@ -18152,6 +18369,18 @@ class NodePoolNodeConfigArgs:
18152
18369
  def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodePoolNodeConfigTaintArgs']]]]):
18153
18370
  pulumi.set(self, "taints", value)
18154
18371
 
18372
+ @property
18373
+ @pulumi.getter(name="windowsNodeConfig")
18374
+ def windows_node_config(self) -> Optional[pulumi.Input['NodePoolNodeConfigWindowsNodeConfigArgs']]:
18375
+ """
18376
+ Parameters that can be configured on Windows nodes.
18377
+ """
18378
+ return pulumi.get(self, "windows_node_config")
18379
+
18380
+ @windows_node_config.setter
18381
+ def windows_node_config(self, value: Optional[pulumi.Input['NodePoolNodeConfigWindowsNodeConfigArgs']]):
18382
+ pulumi.set(self, "windows_node_config", value)
18383
+
18155
18384
  @property
18156
18385
  @pulumi.getter(name="workloadMetadataConfig")
18157
18386
  def workload_metadata_config(self) -> Optional[pulumi.Input['NodePoolNodeConfigWorkloadMetadataConfigArgs']]:
@@ -19659,6 +19888,38 @@ class NodePoolNodeConfigTaintArgs:
19659
19888
  pulumi.set(self, "value", value)
19660
19889
 
19661
19890
 
19891
+ if not MYPY:
19892
+ class NodePoolNodeConfigWindowsNodeConfigArgsDict(TypedDict):
19893
+ osversion: NotRequired[pulumi.Input[str]]
19894
+ """
19895
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
19896
+ """
19897
+ elif False:
19898
+ NodePoolNodeConfigWindowsNodeConfigArgsDict: TypeAlias = Mapping[str, Any]
19899
+
19900
+ @pulumi.input_type
19901
+ class NodePoolNodeConfigWindowsNodeConfigArgs:
19902
+ def __init__(__self__, *,
19903
+ osversion: Optional[pulumi.Input[str]] = None):
19904
+ """
19905
+ :param pulumi.Input[str] osversion: The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
19906
+ """
19907
+ if osversion is not None:
19908
+ pulumi.set(__self__, "osversion", osversion)
19909
+
19910
+ @property
19911
+ @pulumi.getter
19912
+ def osversion(self) -> Optional[pulumi.Input[str]]:
19913
+ """
19914
+ The OS Version of the windows nodepool.Values are OS_VERSION_UNSPECIFIED,OS_VERSION_LTSC2019 and OS_VERSION_LTSC2022
19915
+ """
19916
+ return pulumi.get(self, "osversion")
19917
+
19918
+ @osversion.setter
19919
+ def osversion(self, value: Optional[pulumi.Input[str]]):
19920
+ pulumi.set(self, "osversion", value)
19921
+
19922
+
19662
19923
  if not MYPY:
19663
19924
  class NodePoolNodeConfigWorkloadMetadataConfigArgsDict(TypedDict):
19664
19925
  mode: pulumi.Input[str]
@@ -76,6 +76,7 @@ class ClusterArgs:
76
76
  node_pools: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolArgs']]]] = None,
77
77
  node_version: Optional[pulumi.Input[str]] = None,
78
78
  notification_config: Optional[pulumi.Input['ClusterNotificationConfigArgs']] = None,
79
+ pod_autoscaling: Optional[pulumi.Input['ClusterPodAutoscalingArgs']] = None,
79
80
  pod_security_policy_config: Optional[pulumi.Input['ClusterPodSecurityPolicyConfigArgs']] = None,
80
81
  private_cluster_config: Optional[pulumi.Input['ClusterPrivateClusterConfigArgs']] = None,
81
82
  private_ipv6_google_access: Optional[pulumi.Input[str]] = None,
@@ -264,6 +265,8 @@ class ClusterArgs:
264
265
  `version_prefix` field to approximate fuzzy versions.
265
266
  To update nodes in other node pools, use the `version` attribute on the node pool.
266
267
  :param pulumi.Input['ClusterNotificationConfigArgs'] notification_config: Configuration for the [cluster upgrade notifications](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-upgrade-notifications) feature. Structure is documented below.
268
+ :param pulumi.Input['ClusterPodAutoscalingArgs'] pod_autoscaling: Configuration for the
269
+ Structure is documented below.
267
270
  :param pulumi.Input['ClusterPodSecurityPolicyConfigArgs'] pod_security_policy_config: Configuration for the
268
271
  [PodSecurityPolicy](https://cloud.google.com/kubernetes-engine/docs/how-to/pod-security-policies) feature.
269
272
  Structure is documented below.
@@ -419,6 +422,8 @@ class ClusterArgs:
419
422
  pulumi.set(__self__, "node_version", node_version)
420
423
  if notification_config is not None:
421
424
  pulumi.set(__self__, "notification_config", notification_config)
425
+ if pod_autoscaling is not None:
426
+ pulumi.set(__self__, "pod_autoscaling", pod_autoscaling)
422
427
  if pod_security_policy_config is not None:
423
428
  pulumi.set(__self__, "pod_security_policy_config", pod_security_policy_config)
424
429
  if private_cluster_config is not None:
@@ -1227,6 +1232,19 @@ class ClusterArgs:
1227
1232
  def notification_config(self, value: Optional[pulumi.Input['ClusterNotificationConfigArgs']]):
1228
1233
  pulumi.set(self, "notification_config", value)
1229
1234
 
1235
+ @property
1236
+ @pulumi.getter(name="podAutoscaling")
1237
+ def pod_autoscaling(self) -> Optional[pulumi.Input['ClusterPodAutoscalingArgs']]:
1238
+ """
1239
+ Configuration for the
1240
+ Structure is documented below.
1241
+ """
1242
+ return pulumi.get(self, "pod_autoscaling")
1243
+
1244
+ @pod_autoscaling.setter
1245
+ def pod_autoscaling(self, value: Optional[pulumi.Input['ClusterPodAutoscalingArgs']]):
1246
+ pulumi.set(self, "pod_autoscaling", value)
1247
+
1230
1248
  @property
1231
1249
  @pulumi.getter(name="podSecurityPolicyConfig")
1232
1250
  def pod_security_policy_config(self) -> Optional[pulumi.Input['ClusterPodSecurityPolicyConfigArgs']]:
@@ -1533,6 +1551,7 @@ class _ClusterState:
1533
1551
  node_version: Optional[pulumi.Input[str]] = None,
1534
1552
  notification_config: Optional[pulumi.Input['ClusterNotificationConfigArgs']] = None,
1535
1553
  operation: Optional[pulumi.Input[str]] = None,
1554
+ pod_autoscaling: Optional[pulumi.Input['ClusterPodAutoscalingArgs']] = None,
1536
1555
  pod_security_policy_config: Optional[pulumi.Input['ClusterPodSecurityPolicyConfigArgs']] = None,
1537
1556
  private_cluster_config: Optional[pulumi.Input['ClusterPrivateClusterConfigArgs']] = None,
1538
1557
  private_ipv6_google_access: Optional[pulumi.Input[str]] = None,
@@ -1731,6 +1750,8 @@ class _ClusterState:
1731
1750
  `version_prefix` field to approximate fuzzy versions.
1732
1751
  To update nodes in other node pools, use the `version` attribute on the node pool.
1733
1752
  :param pulumi.Input['ClusterNotificationConfigArgs'] notification_config: Configuration for the [cluster upgrade notifications](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-upgrade-notifications) feature. Structure is documented below.
1753
+ :param pulumi.Input['ClusterPodAutoscalingArgs'] pod_autoscaling: Configuration for the
1754
+ Structure is documented below.
1734
1755
  :param pulumi.Input['ClusterPodSecurityPolicyConfigArgs'] pod_security_policy_config: Configuration for the
1735
1756
  [PodSecurityPolicy](https://cloud.google.com/kubernetes-engine/docs/how-to/pod-security-policies) feature.
1736
1757
  Structure is documented below.
@@ -1905,6 +1926,8 @@ class _ClusterState:
1905
1926
  pulumi.set(__self__, "notification_config", notification_config)
1906
1927
  if operation is not None:
1907
1928
  pulumi.set(__self__, "operation", operation)
1929
+ if pod_autoscaling is not None:
1930
+ pulumi.set(__self__, "pod_autoscaling", pod_autoscaling)
1908
1931
  if pod_security_policy_config is not None:
1909
1932
  pulumi.set(__self__, "pod_security_policy_config", pod_security_policy_config)
1910
1933
  if private_cluster_config is not None:
@@ -2780,6 +2803,19 @@ class _ClusterState:
2780
2803
  def operation(self, value: Optional[pulumi.Input[str]]):
2781
2804
  pulumi.set(self, "operation", value)
2782
2805
 
2806
+ @property
2807
+ @pulumi.getter(name="podAutoscaling")
2808
+ def pod_autoscaling(self) -> Optional[pulumi.Input['ClusterPodAutoscalingArgs']]:
2809
+ """
2810
+ Configuration for the
2811
+ Structure is documented below.
2812
+ """
2813
+ return pulumi.get(self, "pod_autoscaling")
2814
+
2815
+ @pod_autoscaling.setter
2816
+ def pod_autoscaling(self, value: Optional[pulumi.Input['ClusterPodAutoscalingArgs']]):
2817
+ pulumi.set(self, "pod_autoscaling", value)
2818
+
2783
2819
  @property
2784
2820
  @pulumi.getter(name="podSecurityPolicyConfig")
2785
2821
  def pod_security_policy_config(self) -> Optional[pulumi.Input['ClusterPodSecurityPolicyConfigArgs']]:
@@ -3136,6 +3172,7 @@ class Cluster(pulumi.CustomResource):
3136
3172
  node_pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodePoolArgs', 'ClusterNodePoolArgsDict']]]]] = None,
3137
3173
  node_version: Optional[pulumi.Input[str]] = None,
3138
3174
  notification_config: Optional[pulumi.Input[Union['ClusterNotificationConfigArgs', 'ClusterNotificationConfigArgsDict']]] = None,
3175
+ pod_autoscaling: Optional[pulumi.Input[Union['ClusterPodAutoscalingArgs', 'ClusterPodAutoscalingArgsDict']]] = None,
3139
3176
  pod_security_policy_config: Optional[pulumi.Input[Union['ClusterPodSecurityPolicyConfigArgs', 'ClusterPodSecurityPolicyConfigArgsDict']]] = None,
3140
3177
  private_cluster_config: Optional[pulumi.Input[Union['ClusterPrivateClusterConfigArgs', 'ClusterPrivateClusterConfigArgsDict']]] = None,
3141
3178
  private_ipv6_google_access: Optional[pulumi.Input[str]] = None,
@@ -3446,6 +3483,8 @@ class Cluster(pulumi.CustomResource):
3446
3483
  `version_prefix` field to approximate fuzzy versions.
3447
3484
  To update nodes in other node pools, use the `version` attribute on the node pool.
3448
3485
  :param pulumi.Input[Union['ClusterNotificationConfigArgs', 'ClusterNotificationConfigArgsDict']] notification_config: Configuration for the [cluster upgrade notifications](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-upgrade-notifications) feature. Structure is documented below.
3486
+ :param pulumi.Input[Union['ClusterPodAutoscalingArgs', 'ClusterPodAutoscalingArgsDict']] pod_autoscaling: Configuration for the
3487
+ Structure is documented below.
3449
3488
  :param pulumi.Input[Union['ClusterPodSecurityPolicyConfigArgs', 'ClusterPodSecurityPolicyConfigArgsDict']] pod_security_policy_config: Configuration for the
3450
3489
  [PodSecurityPolicy](https://cloud.google.com/kubernetes-engine/docs/how-to/pod-security-policies) feature.
3451
3490
  Structure is documented below.
@@ -3688,6 +3727,7 @@ class Cluster(pulumi.CustomResource):
3688
3727
  node_pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterNodePoolArgs', 'ClusterNodePoolArgsDict']]]]] = None,
3689
3728
  node_version: Optional[pulumi.Input[str]] = None,
3690
3729
  notification_config: Optional[pulumi.Input[Union['ClusterNotificationConfigArgs', 'ClusterNotificationConfigArgsDict']]] = None,
3730
+ pod_autoscaling: Optional[pulumi.Input[Union['ClusterPodAutoscalingArgs', 'ClusterPodAutoscalingArgsDict']]] = None,
3691
3731
  pod_security_policy_config: Optional[pulumi.Input[Union['ClusterPodSecurityPolicyConfigArgs', 'ClusterPodSecurityPolicyConfigArgsDict']]] = None,
3692
3732
  private_cluster_config: Optional[pulumi.Input[Union['ClusterPrivateClusterConfigArgs', 'ClusterPrivateClusterConfigArgsDict']]] = None,
3693
3733
  private_ipv6_google_access: Optional[pulumi.Input[str]] = None,
@@ -3770,6 +3810,7 @@ class Cluster(pulumi.CustomResource):
3770
3810
  __props__.__dict__["node_pools"] = node_pools
3771
3811
  __props__.__dict__["node_version"] = node_version
3772
3812
  __props__.__dict__["notification_config"] = notification_config
3813
+ __props__.__dict__["pod_autoscaling"] = pod_autoscaling
3773
3814
  __props__.__dict__["pod_security_policy_config"] = pod_security_policy_config
3774
3815
  __props__.__dict__["private_cluster_config"] = private_cluster_config
3775
3816
  __props__.__dict__["private_ipv6_google_access"] = private_ipv6_google_access
@@ -3869,6 +3910,7 @@ class Cluster(pulumi.CustomResource):
3869
3910
  node_version: Optional[pulumi.Input[str]] = None,
3870
3911
  notification_config: Optional[pulumi.Input[Union['ClusterNotificationConfigArgs', 'ClusterNotificationConfigArgsDict']]] = None,
3871
3912
  operation: Optional[pulumi.Input[str]] = None,
3913
+ pod_autoscaling: Optional[pulumi.Input[Union['ClusterPodAutoscalingArgs', 'ClusterPodAutoscalingArgsDict']]] = None,
3872
3914
  pod_security_policy_config: Optional[pulumi.Input[Union['ClusterPodSecurityPolicyConfigArgs', 'ClusterPodSecurityPolicyConfigArgsDict']]] = None,
3873
3915
  private_cluster_config: Optional[pulumi.Input[Union['ClusterPrivateClusterConfigArgs', 'ClusterPrivateClusterConfigArgsDict']]] = None,
3874
3916
  private_ipv6_google_access: Optional[pulumi.Input[str]] = None,
@@ -4072,6 +4114,8 @@ class Cluster(pulumi.CustomResource):
4072
4114
  `version_prefix` field to approximate fuzzy versions.
4073
4115
  To update nodes in other node pools, use the `version` attribute on the node pool.
4074
4116
  :param pulumi.Input[Union['ClusterNotificationConfigArgs', 'ClusterNotificationConfigArgsDict']] notification_config: Configuration for the [cluster upgrade notifications](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-upgrade-notifications) feature. Structure is documented below.
4117
+ :param pulumi.Input[Union['ClusterPodAutoscalingArgs', 'ClusterPodAutoscalingArgsDict']] pod_autoscaling: Configuration for the
4118
+ Structure is documented below.
4075
4119
  :param pulumi.Input[Union['ClusterPodSecurityPolicyConfigArgs', 'ClusterPodSecurityPolicyConfigArgsDict']] pod_security_policy_config: Configuration for the
4076
4120
  [PodSecurityPolicy](https://cloud.google.com/kubernetes-engine/docs/how-to/pod-security-policies) feature.
4077
4121
  Structure is documented below.
@@ -4190,6 +4234,7 @@ class Cluster(pulumi.CustomResource):
4190
4234
  __props__.__dict__["node_version"] = node_version
4191
4235
  __props__.__dict__["notification_config"] = notification_config
4192
4236
  __props__.__dict__["operation"] = operation
4237
+ __props__.__dict__["pod_autoscaling"] = pod_autoscaling
4193
4238
  __props__.__dict__["pod_security_policy_config"] = pod_security_policy_config
4194
4239
  __props__.__dict__["private_cluster_config"] = private_cluster_config
4195
4240
  __props__.__dict__["private_ipv6_google_access"] = private_ipv6_google_access
@@ -4804,6 +4849,15 @@ class Cluster(pulumi.CustomResource):
4804
4849
  def operation(self) -> pulumi.Output[str]:
4805
4850
  return pulumi.get(self, "operation")
4806
4851
 
4852
+ @property
4853
+ @pulumi.getter(name="podAutoscaling")
4854
+ def pod_autoscaling(self) -> pulumi.Output['outputs.ClusterPodAutoscaling']:
4855
+ """
4856
+ Configuration for the
4857
+ Structure is documented below.
4858
+ """
4859
+ return pulumi.get(self, "pod_autoscaling")
4860
+
4807
4861
  @property
4808
4862
  @pulumi.getter(name="podSecurityPolicyConfig")
4809
4863
  def pod_security_policy_config(self) -> pulumi.Output[Optional['outputs.ClusterPodSecurityPolicyConfig']]: