pulumi-gcp 7.34.0a1722421695__py3-none-any.whl → 7.35.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.

Potentially problematic release.


This version of pulumi-gcp might be problematic. Click here for more details.

Files changed (96) hide show
  1. pulumi_gcp/__init__.py +40 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +12 -3
  3. pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
  4. pulumi_gcp/accesscontextmanager/outputs.py +8 -2
  5. pulumi_gcp/alloydb/_inputs.py +174 -0
  6. pulumi_gcp/alloydb/instance.py +54 -0
  7. pulumi_gcp/alloydb/outputs.py +133 -0
  8. pulumi_gcp/apigee/__init__.py +2 -0
  9. pulumi_gcp/apigee/environment_keyvaluemaps.py +370 -0
  10. pulumi_gcp/apigee/environment_keyvaluemaps_entries.py +440 -0
  11. pulumi_gcp/apigee/instance.py +2 -2
  12. pulumi_gcp/apigee/nat_address.py +2 -2
  13. pulumi_gcp/apigee/organization.py +4 -4
  14. pulumi_gcp/apphub/service_project_attachment.py +11 -11
  15. pulumi_gcp/bigquery/_inputs.py +36 -0
  16. pulumi_gcp/bigquery/app_profile.py +54 -0
  17. pulumi_gcp/bigquery/data_transfer_config.py +52 -0
  18. pulumi_gcp/bigquery/outputs.py +38 -0
  19. pulumi_gcp/bigquery/reservation.py +34 -4
  20. pulumi_gcp/bigquery/table.py +65 -21
  21. pulumi_gcp/bigtable/table.py +27 -26
  22. pulumi_gcp/certificateauthority/authority.py +4 -4
  23. pulumi_gcp/cloudfunctions/function.py +47 -0
  24. pulumi_gcp/cloudfunctions/get_function.py +11 -1
  25. pulumi_gcp/cloudfunctionsv2/function.py +2 -2
  26. pulumi_gcp/cloudrun/_inputs.py +24 -21
  27. pulumi_gcp/cloudrun/outputs.py +20 -24
  28. pulumi_gcp/cloudrunv2/_inputs.py +3 -0
  29. pulumi_gcp/cloudrunv2/outputs.py +4 -0
  30. pulumi_gcp/compute/__init__.py +2 -0
  31. pulumi_gcp/compute/_inputs.py +2358 -353
  32. pulumi_gcp/compute/backend_service.py +6 -0
  33. pulumi_gcp/compute/disk.py +75 -0
  34. pulumi_gcp/compute/get_disk.py +11 -1
  35. pulumi_gcp/compute/get_hc_vpn_gateway.py +11 -1
  36. pulumi_gcp/compute/get_instance_template.py +2 -2
  37. pulumi_gcp/compute/get_region_instance_template.py +2 -2
  38. pulumi_gcp/compute/get_snapshot.py +2 -2
  39. pulumi_gcp/compute/ha_vpn_gateway.py +68 -7
  40. pulumi_gcp/compute/outputs.py +1490 -31
  41. pulumi_gcp/compute/public_advertised_prefix.py +30 -2
  42. pulumi_gcp/compute/resize_request.py +782 -0
  43. pulumi_gcp/compute/router_peer.py +437 -0
  44. pulumi_gcp/compute/router_route_policy.py +616 -0
  45. pulumi_gcp/compute/service_attachment.py +7 -14
  46. pulumi_gcp/container/_inputs.py +218 -21
  47. pulumi_gcp/container/node_pool.py +0 -14
  48. pulumi_gcp/container/outputs.py +228 -14
  49. pulumi_gcp/databasemigrationservice/private_connection.py +10 -6
  50. pulumi_gcp/dataloss/_inputs.py +707 -21
  51. pulumi_gcp/dataloss/outputs.py +588 -14
  52. pulumi_gcp/datastore/data_store_index.py +24 -12
  53. pulumi_gcp/datastream/_inputs.py +83 -3
  54. pulumi_gcp/datastream/outputs.py +51 -3
  55. pulumi_gcp/datastream/stream.py +170 -0
  56. pulumi_gcp/firebase/database_instance.py +8 -8
  57. pulumi_gcp/firebase/hosting_site.py +8 -8
  58. pulumi_gcp/firebase/project.py +10 -2
  59. pulumi_gcp/firestore/index.py +10 -10
  60. pulumi_gcp/gkeonprem/_inputs.py +78 -78
  61. pulumi_gcp/gkeonprem/outputs.py +52 -52
  62. pulumi_gcp/iap/client.py +4 -4
  63. pulumi_gcp/integrationconnectors/_inputs.py +30 -30
  64. pulumi_gcp/integrationconnectors/outputs.py +20 -20
  65. pulumi_gcp/kms/key_handle.py +7 -7
  66. pulumi_gcp/migrationcenter/_inputs.py +21 -129
  67. pulumi_gcp/migrationcenter/outputs.py +14 -86
  68. pulumi_gcp/netapp/volume.py +1 -1
  69. pulumi_gcp/networkconnectivity/_inputs.py +3 -6
  70. pulumi_gcp/networkconnectivity/hub.py +129 -49
  71. pulumi_gcp/networkconnectivity/outputs.py +2 -4
  72. pulumi_gcp/networkconnectivity/spoke.py +159 -104
  73. pulumi_gcp/networksecurity/tls_inspection_policy.py +2 -2
  74. pulumi_gcp/organizations/project.py +16 -7
  75. pulumi_gcp/orgpolicy/policy.py +4 -4
  76. pulumi_gcp/projects/get_project_service.py +11 -1
  77. pulumi_gcp/projects/service.py +68 -0
  78. pulumi_gcp/projects/service_identity.py +30 -2
  79. pulumi_gcp/pubsub/subscription.py +6 -6
  80. pulumi_gcp/pulumi-plugin.json +1 -1
  81. pulumi_gcp/securesourcemanager/instance.py +528 -4
  82. pulumi_gcp/securitycenter/__init__.py +1 -0
  83. pulumi_gcp/securitycenter/v2_organization_mute_config.py +673 -0
  84. pulumi_gcp/sql/_inputs.py +35 -15
  85. pulumi_gcp/sql/database_instance.py +2 -2
  86. pulumi_gcp/sql/outputs.py +50 -14
  87. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  88. pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
  89. pulumi_gcp/vmwareengine/private_cloud.py +121 -2
  90. pulumi_gcp/workbench/_inputs.py +77 -0
  91. pulumi_gcp/workbench/instance.py +18 -4
  92. pulumi_gcp/workbench/outputs.py +67 -1
  93. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/METADATA +1 -1
  94. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/RECORD +96 -91
  95. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/WHEEL +0 -0
  96. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/top_level.txt +0 -0
@@ -175,6 +175,12 @@ __all__ = [
175
175
  'ClusterAddonsConfigKalmConfigArgsDict',
176
176
  'ClusterAddonsConfigNetworkPolicyConfigArgs',
177
177
  'ClusterAddonsConfigNetworkPolicyConfigArgsDict',
178
+ 'ClusterAddonsConfigRayOperatorConfigArgs',
179
+ 'ClusterAddonsConfigRayOperatorConfigArgsDict',
180
+ 'ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs',
181
+ 'ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgsDict',
182
+ 'ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs',
183
+ 'ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgsDict',
178
184
  'ClusterAddonsConfigStatefulHaConfigArgs',
179
185
  'ClusterAddonsConfigStatefulHaConfigArgsDict',
180
186
  'ClusterAuthenticatorGroupsConfigArgs',
@@ -4472,13 +4478,29 @@ if not MYPY:
4472
4478
  It can only be disabled if the nodes already do not have network policies enabled.
4473
4479
  Defaults to disabled; set `disabled = false` to enable.
4474
4480
  """
4481
+ ray_operator_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgsDict']]]]
4482
+ """
4483
+ . The status of the [Ray Operator
4484
+ addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
4485
+ It is disabled by default. Set `enabled = true` to enable. The minimum
4486
+ cluster version to enable Ray is 1.30.0-gke.1747000.
4487
+
4488
+ Ray Operator config has optional subfields
4489
+ `ray_cluster_logging_config.enabled` and
4490
+ `ray_cluster_monitoring_config.enabled` which control Ray Cluster logging
4491
+ and monitoring respectively. See [Collect and view logs and metrics for Ray
4492
+ clusters on
4493
+ GKE](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/how-to/collect-view-logs-metrics)
4494
+ for more information.
4495
+
4496
+
4497
+ This example `addons_config` disables two addons:
4498
+ """
4475
4499
  stateful_ha_config: NotRequired[pulumi.Input['ClusterAddonsConfigStatefulHaConfigArgsDict']]
4476
4500
  """
4477
4501
  .
4478
4502
  The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
4479
4503
  It is disabled by default for Standard clusters. Set `enabled = true` to enable.
4480
-
4481
- This example `addons_config` disables two addons:
4482
4504
  """
4483
4505
  elif False:
4484
4506
  ClusterAddonsConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -4498,6 +4520,7 @@ class ClusterAddonsConfigArgs:
4498
4520
  istio_config: Optional[pulumi.Input['ClusterAddonsConfigIstioConfigArgs']] = None,
4499
4521
  kalm_config: Optional[pulumi.Input['ClusterAddonsConfigKalmConfigArgs']] = None,
4500
4522
  network_policy_config: Optional[pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgs']] = None,
4523
+ ray_operator_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]]] = None,
4501
4524
  stateful_ha_config: Optional[pulumi.Input['ClusterAddonsConfigStatefulHaConfigArgs']] = None):
4502
4525
  """
4503
4526
  :param pulumi.Input['ClusterAddonsConfigCloudrunConfigArgs'] cloudrun_config: . Structure is documented below.
@@ -4541,11 +4564,24 @@ class ClusterAddonsConfigArgs:
4541
4564
  otherwise nothing will happen.
4542
4565
  It can only be disabled if the nodes already do not have network policies enabled.
4543
4566
  Defaults to disabled; set `disabled = false` to enable.
4567
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]] ray_operator_configs: . The status of the [Ray Operator
4568
+ addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
4569
+ It is disabled by default. Set `enabled = true` to enable. The minimum
4570
+ cluster version to enable Ray is 1.30.0-gke.1747000.
4571
+
4572
+ Ray Operator config has optional subfields
4573
+ `ray_cluster_logging_config.enabled` and
4574
+ `ray_cluster_monitoring_config.enabled` which control Ray Cluster logging
4575
+ and monitoring respectively. See [Collect and view logs and metrics for Ray
4576
+ clusters on
4577
+ GKE](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/how-to/collect-view-logs-metrics)
4578
+ for more information.
4579
+
4580
+
4581
+ This example `addons_config` disables two addons:
4544
4582
  :param pulumi.Input['ClusterAddonsConfigStatefulHaConfigArgs'] stateful_ha_config: .
4545
4583
  The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
4546
4584
  It is disabled by default for Standard clusters. Set `enabled = true` to enable.
4547
-
4548
- This example `addons_config` disables two addons:
4549
4585
  """
4550
4586
  if cloudrun_config is not None:
4551
4587
  pulumi.set(__self__, "cloudrun_config", cloudrun_config)
@@ -4571,6 +4607,8 @@ class ClusterAddonsConfigArgs:
4571
4607
  pulumi.set(__self__, "kalm_config", kalm_config)
4572
4608
  if network_policy_config is not None:
4573
4609
  pulumi.set(__self__, "network_policy_config", network_policy_config)
4610
+ if ray_operator_configs is not None:
4611
+ pulumi.set(__self__, "ray_operator_configs", ray_operator_configs)
4574
4612
  if stateful_ha_config is not None:
4575
4613
  pulumi.set(__self__, "stateful_ha_config", stateful_ha_config)
4576
4614
 
@@ -4747,6 +4785,32 @@ class ClusterAddonsConfigArgs:
4747
4785
  def network_policy_config(self, value: Optional[pulumi.Input['ClusterAddonsConfigNetworkPolicyConfigArgs']]):
4748
4786
  pulumi.set(self, "network_policy_config", value)
4749
4787
 
4788
+ @property
4789
+ @pulumi.getter(name="rayOperatorConfigs")
4790
+ def ray_operator_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]]]:
4791
+ """
4792
+ . The status of the [Ray Operator
4793
+ addon](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/concepts/overview).
4794
+ It is disabled by default. Set `enabled = true` to enable. The minimum
4795
+ cluster version to enable Ray is 1.30.0-gke.1747000.
4796
+
4797
+ Ray Operator config has optional subfields
4798
+ `ray_cluster_logging_config.enabled` and
4799
+ `ray_cluster_monitoring_config.enabled` which control Ray Cluster logging
4800
+ and monitoring respectively. See [Collect and view logs and metrics for Ray
4801
+ clusters on
4802
+ GKE](https://cloud.google.com/kubernetes-engine/docs/add-on/ray-on-gke/how-to/collect-view-logs-metrics)
4803
+ for more information.
4804
+
4805
+
4806
+ This example `addons_config` disables two addons:
4807
+ """
4808
+ return pulumi.get(self, "ray_operator_configs")
4809
+
4810
+ @ray_operator_configs.setter
4811
+ def ray_operator_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterAddonsConfigRayOperatorConfigArgs']]]]):
4812
+ pulumi.set(self, "ray_operator_configs", value)
4813
+
4750
4814
  @property
4751
4815
  @pulumi.getter(name="statefulHaConfig")
4752
4816
  def stateful_ha_config(self) -> Optional[pulumi.Input['ClusterAddonsConfigStatefulHaConfigArgs']]:
@@ -4754,8 +4818,6 @@ class ClusterAddonsConfigArgs:
4754
4818
  .
4755
4819
  The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
4756
4820
  It is disabled by default for Standard clusters. Set `enabled = true` to enable.
4757
-
4758
- This example `addons_config` disables two addons:
4759
4821
  """
4760
4822
  return pulumi.get(self, "stateful_ha_config")
4761
4823
 
@@ -5137,6 +5199,114 @@ class ClusterAddonsConfigNetworkPolicyConfigArgs:
5137
5199
  pulumi.set(self, "disabled", value)
5138
5200
 
5139
5201
 
5202
+ if not MYPY:
5203
+ class ClusterAddonsConfigRayOperatorConfigArgsDict(TypedDict):
5204
+ enabled: pulumi.Input[bool]
5205
+ ray_cluster_logging_config: NotRequired[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgsDict']]
5206
+ """
5207
+ The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
5208
+ """
5209
+ ray_cluster_monitoring_config: NotRequired[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgsDict']]
5210
+ """
5211
+ The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
5212
+ """
5213
+ elif False:
5214
+ ClusterAddonsConfigRayOperatorConfigArgsDict: TypeAlias = Mapping[str, Any]
5215
+
5216
+ @pulumi.input_type
5217
+ class ClusterAddonsConfigRayOperatorConfigArgs:
5218
+ def __init__(__self__, *,
5219
+ enabled: pulumi.Input[bool],
5220
+ ray_cluster_logging_config: Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs']] = None,
5221
+ ray_cluster_monitoring_config: Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs']] = None):
5222
+ """
5223
+ :param pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs'] ray_cluster_logging_config: The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
5224
+ :param pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs'] ray_cluster_monitoring_config: The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
5225
+ """
5226
+ pulumi.set(__self__, "enabled", enabled)
5227
+ if ray_cluster_logging_config is not None:
5228
+ pulumi.set(__self__, "ray_cluster_logging_config", ray_cluster_logging_config)
5229
+ if ray_cluster_monitoring_config is not None:
5230
+ pulumi.set(__self__, "ray_cluster_monitoring_config", ray_cluster_monitoring_config)
5231
+
5232
+ @property
5233
+ @pulumi.getter
5234
+ def enabled(self) -> pulumi.Input[bool]:
5235
+ return pulumi.get(self, "enabled")
5236
+
5237
+ @enabled.setter
5238
+ def enabled(self, value: pulumi.Input[bool]):
5239
+ pulumi.set(self, "enabled", value)
5240
+
5241
+ @property
5242
+ @pulumi.getter(name="rayClusterLoggingConfig")
5243
+ def ray_cluster_logging_config(self) -> Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs']]:
5244
+ """
5245
+ The status of Ray Logging, which scrapes Ray cluster logs to Cloud Logging. Defaults to disabled; set enabled = true to enable.
5246
+ """
5247
+ return pulumi.get(self, "ray_cluster_logging_config")
5248
+
5249
+ @ray_cluster_logging_config.setter
5250
+ def ray_cluster_logging_config(self, value: Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs']]):
5251
+ pulumi.set(self, "ray_cluster_logging_config", value)
5252
+
5253
+ @property
5254
+ @pulumi.getter(name="rayClusterMonitoringConfig")
5255
+ def ray_cluster_monitoring_config(self) -> Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs']]:
5256
+ """
5257
+ The status of Ray Cluster monitoring, which shows Ray cluster metrics in Cloud Console. Defaults to disabled; set enabled = true to enable.
5258
+ """
5259
+ return pulumi.get(self, "ray_cluster_monitoring_config")
5260
+
5261
+ @ray_cluster_monitoring_config.setter
5262
+ def ray_cluster_monitoring_config(self, value: Optional[pulumi.Input['ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs']]):
5263
+ pulumi.set(self, "ray_cluster_monitoring_config", value)
5264
+
5265
+
5266
+ if not MYPY:
5267
+ class ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgsDict(TypedDict):
5268
+ enabled: pulumi.Input[bool]
5269
+ elif False:
5270
+ ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
5271
+
5272
+ @pulumi.input_type
5273
+ class ClusterAddonsConfigRayOperatorConfigRayClusterLoggingConfigArgs:
5274
+ def __init__(__self__, *,
5275
+ enabled: pulumi.Input[bool]):
5276
+ pulumi.set(__self__, "enabled", enabled)
5277
+
5278
+ @property
5279
+ @pulumi.getter
5280
+ def enabled(self) -> pulumi.Input[bool]:
5281
+ return pulumi.get(self, "enabled")
5282
+
5283
+ @enabled.setter
5284
+ def enabled(self, value: pulumi.Input[bool]):
5285
+ pulumi.set(self, "enabled", value)
5286
+
5287
+
5288
+ if not MYPY:
5289
+ class ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgsDict(TypedDict):
5290
+ enabled: pulumi.Input[bool]
5291
+ elif False:
5292
+ ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgsDict: TypeAlias = Mapping[str, Any]
5293
+
5294
+ @pulumi.input_type
5295
+ class ClusterAddonsConfigRayOperatorConfigRayClusterMonitoringConfigArgs:
5296
+ def __init__(__self__, *,
5297
+ enabled: pulumi.Input[bool]):
5298
+ pulumi.set(__self__, "enabled", enabled)
5299
+
5300
+ @property
5301
+ @pulumi.getter
5302
+ def enabled(self) -> pulumi.Input[bool]:
5303
+ return pulumi.get(self, "enabled")
5304
+
5305
+ @enabled.setter
5306
+ def enabled(self, value: pulumi.Input[bool]):
5307
+ pulumi.set(self, "enabled", value)
5308
+
5309
+
5140
5310
  if not MYPY:
5141
5311
  class ClusterAddonsConfigStatefulHaConfigArgsDict(TypedDict):
5142
5312
  enabled: pulumi.Input[bool]
@@ -7686,7 +7856,7 @@ if not MYPY:
7686
7856
  """
7687
7857
  relay_mode: NotRequired[pulumi.Input[str]]
7688
7858
  """
7689
- Mode used to make Relay available.
7859
+ Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
7690
7860
  """
7691
7861
  elif False:
7692
7862
  ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgsDict: TypeAlias = Mapping[str, Any]
@@ -7700,7 +7870,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs:
7700
7870
  """
7701
7871
  :param pulumi.Input[bool] enable_metrics: Whether or not to enable advanced datapath metrics.
7702
7872
  :param pulumi.Input[bool] enable_relay: Whether or not Relay is enabled.
7703
- :param pulumi.Input[str] relay_mode: Mode used to make Relay available.
7873
+ :param pulumi.Input[str] relay_mode: Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
7704
7874
  """
7705
7875
  pulumi.set(__self__, "enable_metrics", enable_metrics)
7706
7876
  if enable_relay is not None:
@@ -7740,7 +7910,7 @@ class ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs:
7740
7910
  @_utilities.deprecated("""Deprecated in favor of enable_relay field. Remove this attribute's configuration as this field will be removed in the next major release and enable_relay will become a required field.""")
7741
7911
  def relay_mode(self) -> Optional[pulumi.Input[str]]:
7742
7912
  """
7743
- Mode used to make Relay available.
7913
+ Mode used to make Relay available. Deprecated in favor of `enable_relay` field. Remove this attribute's configuration as this field will be removed in the next major release and `enable_relay` will become a required field.
7744
7914
  """
7745
7915
  return pulumi.get(self, "relay_mode")
7746
7916
 
@@ -15896,7 +16066,10 @@ if not MYPY:
15896
16066
  """
15897
16067
  reservation_affinity: NotRequired[pulumi.Input['NodePoolNodeConfigReservationAffinityArgsDict']]
15898
16068
  """
15899
- The reservation affinity configuration for the node pool.
16069
+ The configuration of the desired reservation which instances could take capacity from.
16070
+ Structure is documented below.
16071
+
16072
+ <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
15900
16073
  """
15901
16074
  resource_labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
15902
16075
  """
@@ -16017,7 +16190,10 @@ class NodePoolNodeConfigArgs:
16017
16190
  :param pulumi.Input[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.
16018
16191
  :param pulumi.Input[Sequence[pulumi.Input[str]]] oauth_scopes: The set of Google API scopes to be made available on all of the node VMs.
16019
16192
  :param pulumi.Input[bool] preemptible: Whether the nodes are created as preemptible VM instances.
16020
- :param pulumi.Input['NodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The reservation affinity configuration for the node pool.
16193
+ :param pulumi.Input['NodePoolNodeConfigReservationAffinityArgs'] reservation_affinity: The configuration of the desired reservation which instances could take capacity from.
16194
+ Structure is documented below.
16195
+
16196
+ <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
16021
16197
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_labels: The GCE resource labels (a map of key/value pairs) to be applied to the node pool.
16022
16198
  :param pulumi.Input[Mapping[str, Any]] 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.
16023
16199
  :param pulumi.Input['NodePoolNodeConfigSandboxConfigArgs'] sandbox_config: Sandbox configuration for this node.
@@ -16451,7 +16627,10 @@ class NodePoolNodeConfigArgs:
16451
16627
  @pulumi.getter(name="reservationAffinity")
16452
16628
  def reservation_affinity(self) -> Optional[pulumi.Input['NodePoolNodeConfigReservationAffinityArgs']]:
16453
16629
  """
16454
- The reservation affinity configuration for the node pool.
16630
+ The configuration of the desired reservation which instances could take capacity from.
16631
+ Structure is documented below.
16632
+
16633
+ <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
16455
16634
  """
16456
16635
  return pulumi.get(self, "reservation_affinity")
16457
16636
 
@@ -17468,15 +17647,21 @@ if not MYPY:
17468
17647
  class NodePoolNodeConfigReservationAffinityArgsDict(TypedDict):
17469
17648
  consume_reservation_type: pulumi.Input[str]
17470
17649
  """
17471
- Corresponds to the type of reservation consumption.
17650
+ The type of reservation consumption
17651
+ Accepted values are:
17652
+
17653
+ * `"UNSPECIFIED"`: Default value. This should not be used.
17654
+ * `"NO_RESERVATION"`: Do not consume from any reserved capacity.
17655
+ * `"ANY_RESERVATION"`: Consume any reservation available.
17656
+ * `"SPECIFIC_RESERVATION"`: Must consume from a specific reservation. Must specify key value fields for specifying the reservations.
17472
17657
  """
17473
17658
  key: NotRequired[pulumi.Input[str]]
17474
17659
  """
17475
- The label key of a reservation resource.
17660
+ The label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name" as the key and specify the name of your reservation as its value.
17476
17661
  """
17477
17662
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
17478
17663
  """
17479
- The label values of the reservation resource.
17664
+ The list of label values of reservation resources. For example: the name of the specific reservation when using a key of "compute.googleapis.com/reservation-name"
17480
17665
  """
17481
17666
  elif False:
17482
17667
  NodePoolNodeConfigReservationAffinityArgsDict: TypeAlias = Mapping[str, Any]
@@ -17488,9 +17673,15 @@ class NodePoolNodeConfigReservationAffinityArgs:
17488
17673
  key: Optional[pulumi.Input[str]] = None,
17489
17674
  values: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
17490
17675
  """
17491
- :param pulumi.Input[str] consume_reservation_type: Corresponds to the type of reservation consumption.
17492
- :param pulumi.Input[str] key: The label key of a reservation resource.
17493
- :param pulumi.Input[Sequence[pulumi.Input[str]]] values: The label values of the reservation resource.
17676
+ :param pulumi.Input[str] consume_reservation_type: The type of reservation consumption
17677
+ Accepted values are:
17678
+
17679
+ * `"UNSPECIFIED"`: Default value. This should not be used.
17680
+ * `"NO_RESERVATION"`: Do not consume from any reserved capacity.
17681
+ * `"ANY_RESERVATION"`: Consume any reservation available.
17682
+ * `"SPECIFIC_RESERVATION"`: Must consume from a specific reservation. Must specify key value fields for specifying the reservations.
17683
+ :param pulumi.Input[str] key: The label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name" as the key and specify the name of your reservation as its value.
17684
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] values: The list of label values of reservation resources. For example: the name of the specific reservation when using a key of "compute.googleapis.com/reservation-name"
17494
17685
  """
17495
17686
  pulumi.set(__self__, "consume_reservation_type", consume_reservation_type)
17496
17687
  if key is not None:
@@ -17502,7 +17693,13 @@ class NodePoolNodeConfigReservationAffinityArgs:
17502
17693
  @pulumi.getter(name="consumeReservationType")
17503
17694
  def consume_reservation_type(self) -> pulumi.Input[str]:
17504
17695
  """
17505
- Corresponds to the type of reservation consumption.
17696
+ The type of reservation consumption
17697
+ Accepted values are:
17698
+
17699
+ * `"UNSPECIFIED"`: Default value. This should not be used.
17700
+ * `"NO_RESERVATION"`: Do not consume from any reserved capacity.
17701
+ * `"ANY_RESERVATION"`: Consume any reservation available.
17702
+ * `"SPECIFIC_RESERVATION"`: Must consume from a specific reservation. Must specify key value fields for specifying the reservations.
17506
17703
  """
17507
17704
  return pulumi.get(self, "consume_reservation_type")
17508
17705
 
@@ -17514,7 +17711,7 @@ class NodePoolNodeConfigReservationAffinityArgs:
17514
17711
  @pulumi.getter
17515
17712
  def key(self) -> Optional[pulumi.Input[str]]:
17516
17713
  """
17517
- The label key of a reservation resource.
17714
+ The label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name" as the key and specify the name of your reservation as its value.
17518
17715
  """
17519
17716
  return pulumi.get(self, "key")
17520
17717
 
@@ -17526,7 +17723,7 @@ class NodePoolNodeConfigReservationAffinityArgs:
17526
17723
  @pulumi.getter
17527
17724
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
17528
17725
  """
17529
- The label values of the reservation resource.
17726
+ The list of label values of reservation resources. For example: the name of the specific reservation when using a key of "compute.googleapis.com/reservation-name"
17530
17727
  """
17531
17728
  return pulumi.get(self, "values")
17532
17729
 
@@ -87,8 +87,6 @@ class NodePoolArgs:
87
87
  the provider-configured project will be used.
88
88
  :param pulumi.Input['NodePoolQueuedProvisioningArgs'] queued_provisioning: Specifies node pool-level settings of queued provisioning.
89
89
  Structure is documented below.
90
-
91
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
92
90
  :param pulumi.Input['NodePoolUpgradeSettingsArgs'] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
93
91
  The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
94
92
  :param pulumi.Input[str] version: The Kubernetes version for the nodes in this pool. Note that if this field
@@ -337,8 +335,6 @@ class NodePoolArgs:
337
335
  """
338
336
  Specifies node pool-level settings of queued provisioning.
339
337
  Structure is documented below.
340
-
341
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
342
338
  """
343
339
  return pulumi.get(self, "queued_provisioning")
344
340
 
@@ -451,8 +447,6 @@ class _NodePoolState:
451
447
  the provider-configured project will be used.
452
448
  :param pulumi.Input['NodePoolQueuedProvisioningArgs'] queued_provisioning: Specifies node pool-level settings of queued provisioning.
453
449
  Structure is documented below.
454
-
455
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
456
450
  :param pulumi.Input['NodePoolUpgradeSettingsArgs'] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
457
451
  The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
458
452
  :param pulumi.Input[str] version: The Kubernetes version for the nodes in this pool. Note that if this field
@@ -741,8 +735,6 @@ class _NodePoolState:
741
735
  """
742
736
  Specifies node pool-level settings of queued provisioning.
743
737
  Structure is documented below.
744
-
745
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
746
738
  """
747
739
  return pulumi.get(self, "queued_provisioning")
748
740
 
@@ -938,8 +930,6 @@ class NodePool(pulumi.CustomResource):
938
930
  the provider-configured project will be used.
939
931
  :param pulumi.Input[Union['NodePoolQueuedProvisioningArgs', 'NodePoolQueuedProvisioningArgsDict']] queued_provisioning: Specifies node pool-level settings of queued provisioning.
940
932
  Structure is documented below.
941
-
942
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
943
933
  :param pulumi.Input[Union['NodePoolUpgradeSettingsArgs', 'NodePoolUpgradeSettingsArgsDict']] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
944
934
  The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
945
935
  :param pulumi.Input[str] version: The Kubernetes version for the nodes in this pool. Note that if this field
@@ -1189,8 +1179,6 @@ class NodePool(pulumi.CustomResource):
1189
1179
  the provider-configured project will be used.
1190
1180
  :param pulumi.Input[Union['NodePoolQueuedProvisioningArgs', 'NodePoolQueuedProvisioningArgsDict']] queued_provisioning: Specifies node pool-level settings of queued provisioning.
1191
1181
  Structure is documented below.
1192
-
1193
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
1194
1182
  :param pulumi.Input[Union['NodePoolUpgradeSettingsArgs', 'NodePoolUpgradeSettingsArgsDict']] upgrade_settings: Specify node upgrade settings to change how GKE upgrades nodes.
1195
1183
  The maximum number of nodes upgraded simultaneously is limited to 20. Structure is documented below.
1196
1184
  :param pulumi.Input[str] version: The Kubernetes version for the nodes in this pool. Note that if this field
@@ -1396,8 +1384,6 @@ class NodePool(pulumi.CustomResource):
1396
1384
  """
1397
1385
  Specifies node pool-level settings of queued provisioning.
1398
1386
  Structure is documented below.
1399
-
1400
- <a name="nested_autoscaling"></a>The `autoscaling` block supports (either total or per zone limits are required):
1401
1387
  """
1402
1388
  return pulumi.get(self, "queued_provisioning")
1403
1389