pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712402830__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 (44) hide show
  1. pulumi_gcp/bigtable/_inputs.py +4 -4
  2. pulumi_gcp/bigtable/gc_policy.py +8 -0
  3. pulumi_gcp/bigtable/outputs.py +4 -4
  4. pulumi_gcp/billing/_inputs.py +4 -4
  5. pulumi_gcp/billing/outputs.py +4 -4
  6. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  7. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  8. pulumi_gcp/cloudrunv2/service.py +7 -7
  9. pulumi_gcp/composer/_inputs.py +14 -4
  10. pulumi_gcp/composer/outputs.py +22 -10
  11. pulumi_gcp/compute/_inputs.py +40 -44
  12. pulumi_gcp/compute/autoscaler.py +14 -14
  13. pulumi_gcp/compute/outputs.py +62 -60
  14. pulumi_gcp/compute/region_autoscaler.py +14 -14
  15. pulumi_gcp/container/_inputs.py +148 -16
  16. pulumi_gcp/container/outputs.py +148 -16
  17. pulumi_gcp/dataloss/_inputs.py +6 -6
  18. pulumi_gcp/dataloss/outputs.py +6 -6
  19. pulumi_gcp/dataproc/_inputs.py +14 -10
  20. pulumi_gcp/dataproc/outputs.py +14 -10
  21. pulumi_gcp/iam/_inputs.py +76 -0
  22. pulumi_gcp/iam/outputs.py +76 -0
  23. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  24. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  25. pulumi_gcp/logging/_inputs.py +8 -8
  26. pulumi_gcp/logging/metric.py +7 -7
  27. pulumi_gcp/logging/outputs.py +8 -8
  28. pulumi_gcp/monitoring/_inputs.py +2 -2
  29. pulumi_gcp/monitoring/outputs.py +2 -2
  30. pulumi_gcp/monitoring/slo.py +4 -4
  31. pulumi_gcp/networkservices/_inputs.py +6 -6
  32. pulumi_gcp/networkservices/outputs.py +6 -6
  33. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  34. pulumi_gcp/sql/_inputs.py +20 -2
  35. pulumi_gcp/sql/database_instance.py +2 -2
  36. pulumi_gcp/sql/outputs.py +20 -2
  37. pulumi_gcp/storage/_inputs.py +2 -2
  38. pulumi_gcp/storage/outputs.py +2 -2
  39. pulumi_gcp/vertex/_inputs.py +6 -8
  40. pulumi_gcp/vertex/outputs.py +8 -10
  41. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/METADATA +1 -1
  42. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/RECORD +44 -44
  43. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/WHEEL +0 -0
  44. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/top_level.txt +0 -0
@@ -4640,9 +4640,9 @@ class ClusterFleetArgs:
4640
4640
  pre_registered: Optional[pulumi.Input[bool]] = None,
4641
4641
  project: Optional[pulumi.Input[str]] = None):
4642
4642
  """
4643
- :param pulumi.Input[str] membership: Full resource name of the registered fleet membership of the cluster.
4644
- :param pulumi.Input[str] membership_id: Short name of the fleet membership, for example "member-1".
4645
- :param pulumi.Input[str] membership_location: Location of the fleet membership, for example "us-central1".
4643
+ :param pulumi.Input[str] membership: The resource name of the fleet Membership resource associated to this cluster with format `//gkehub.googleapis.com/projects/{{project}}/locations/{{location}}/memberships/{{name}}`. See the official doc for [fleet management](https://cloud.google.com/kubernetes-engine/docs/fleets-overview).
4644
+ :param pulumi.Input[str] membership_id: The short name of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_id` under google_gkehub_feature_membership.
4645
+ :param pulumi.Input[str] membership_location: The location of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_location` under google_gkehub_feature_membership.
4646
4646
  :param pulumi.Input[bool] pre_registered: Whether the cluster has been registered via the fleet API.
4647
4647
  :param pulumi.Input[str] project: The name of the Fleet host project where this cluster will be registered.
4648
4648
  """
@@ -4661,7 +4661,7 @@ class ClusterFleetArgs:
4661
4661
  @pulumi.getter
4662
4662
  def membership(self) -> Optional[pulumi.Input[str]]:
4663
4663
  """
4664
- Full resource name of the registered fleet membership of the cluster.
4664
+ The resource name of the fleet Membership resource associated to this cluster with format `//gkehub.googleapis.com/projects/{{project}}/locations/{{location}}/memberships/{{name}}`. See the official doc for [fleet management](https://cloud.google.com/kubernetes-engine/docs/fleets-overview).
4665
4665
  """
4666
4666
  return pulumi.get(self, "membership")
4667
4667
 
@@ -4673,7 +4673,7 @@ class ClusterFleetArgs:
4673
4673
  @pulumi.getter(name="membershipId")
4674
4674
  def membership_id(self) -> Optional[pulumi.Input[str]]:
4675
4675
  """
4676
- Short name of the fleet membership, for example "member-1".
4676
+ The short name of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_id` under google_gkehub_feature_membership.
4677
4677
  """
4678
4678
  return pulumi.get(self, "membership_id")
4679
4679
 
@@ -4685,7 +4685,7 @@ class ClusterFleetArgs:
4685
4685
  @pulumi.getter(name="membershipLocation")
4686
4686
  def membership_location(self) -> Optional[pulumi.Input[str]]:
4687
4687
  """
4688
- Location of the fleet membership, for example "us-central1".
4688
+ The location of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_location` under google_gkehub_feature_membership.
4689
4689
  """
4690
4690
  return pulumi.get(self, "membership_location")
4691
4691
 
@@ -5009,6 +5009,25 @@ class ClusterMaintenancePolicyArgs:
5009
5009
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5010
5010
 
5011
5011
  Examples:
5012
+ ```
5013
+ maintenance_policy {
5014
+ recurring_window {
5015
+ start_time = "2019-08-01T02:00:00Z"
5016
+ end_time = "2019-08-01T06:00:00Z"
5017
+ recurrence = "FREQ=DAILY"
5018
+ }
5019
+ }
5020
+ ```
5021
+
5022
+ ```
5023
+ maintenance_policy {
5024
+ recurring_window {
5025
+ start_time = "2019-01-01T09:00:00Z"
5026
+ end_time = "2019-01-01T17:00:00Z"
5027
+ recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
5028
+ }
5029
+ }
5030
+ ```
5012
5031
  """
5013
5032
  if daily_maintenance_window is not None:
5014
5033
  pulumi.set(__self__, "daily_maintenance_window", daily_maintenance_window)
@@ -5057,6 +5076,25 @@ class ClusterMaintenancePolicyArgs:
5057
5076
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5058
5077
 
5059
5078
  Examples:
5079
+ ```
5080
+ maintenance_policy {
5081
+ recurring_window {
5082
+ start_time = "2019-08-01T02:00:00Z"
5083
+ end_time = "2019-08-01T06:00:00Z"
5084
+ recurrence = "FREQ=DAILY"
5085
+ }
5086
+ }
5087
+ ```
5088
+
5089
+ ```
5090
+ maintenance_policy {
5091
+ recurring_window {
5092
+ start_time = "2019-01-01T09:00:00Z"
5093
+ end_time = "2019-01-01T17:00:00Z"
5094
+ recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
5095
+ }
5096
+ }
5097
+ ```
5060
5098
  """
5061
5099
  return pulumi.get(self, "recurring_window")
5062
5100
 
@@ -5162,6 +5200,32 @@ class ClusterMaintenancePolicyMaintenanceExclusionExclusionOptionsArgs:
5162
5200
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5163
5201
 
5164
5202
  Examples:
5203
+
5204
+ ```
5205
+ maintenance_policy {
5206
+ recurring_window {
5207
+ start_time = "2019-01-01T00:00:00Z"
5208
+ end_time = "2019-01-02T00:00:00Z"
5209
+ recurrence = "FREQ=DAILY"
5210
+ }
5211
+ maintenance_exclusion{
5212
+ exclusion_name = "batch job"
5213
+ start_time = "2019-01-01T00:00:00Z"
5214
+ end_time = "2019-01-02T00:00:00Z"
5215
+ exclusion_options {
5216
+ scope = "NO_UPGRADES"
5217
+ }
5218
+ }
5219
+ maintenance_exclusion{
5220
+ exclusion_name = "holiday data load"
5221
+ start_time = "2019-05-01T00:00:00Z"
5222
+ end_time = "2019-05-02T00:00:00Z"
5223
+ exclusion_options {
5224
+ scope = "NO_MINOR_UPGRADES"
5225
+ }
5226
+ }
5227
+ }
5228
+ ```
5165
5229
  """
5166
5230
  pulumi.set(__self__, "scope", scope)
5167
5231
 
@@ -5177,6 +5241,32 @@ class ClusterMaintenancePolicyMaintenanceExclusionExclusionOptionsArgs:
5177
5241
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5178
5242
 
5179
5243
  Examples:
5244
+
5245
+ ```
5246
+ maintenance_policy {
5247
+ recurring_window {
5248
+ start_time = "2019-01-01T00:00:00Z"
5249
+ end_time = "2019-01-02T00:00:00Z"
5250
+ recurrence = "FREQ=DAILY"
5251
+ }
5252
+ maintenance_exclusion{
5253
+ exclusion_name = "batch job"
5254
+ start_time = "2019-01-01T00:00:00Z"
5255
+ end_time = "2019-01-02T00:00:00Z"
5256
+ exclusion_options {
5257
+ scope = "NO_UPGRADES"
5258
+ }
5259
+ }
5260
+ maintenance_exclusion{
5261
+ exclusion_name = "holiday data load"
5262
+ start_time = "2019-05-01T00:00:00Z"
5263
+ end_time = "2019-05-02T00:00:00Z"
5264
+ exclusion_options {
5265
+ scope = "NO_MINOR_UPGRADES"
5266
+ }
5267
+ }
5268
+ }
5269
+ ```
5180
5270
  """
5181
5271
  return pulumi.get(self, "scope")
5182
5272
 
@@ -5232,9 +5322,12 @@ class ClusterMasterAuthArgs:
5232
5322
  cluster_ca_certificate: Optional[pulumi.Input[str]] = None):
5233
5323
  """
5234
5324
  :param pulumi.Input['ClusterMasterAuthClientCertificateConfigArgs'] client_certificate_config: Whether client certificate authorization is enabled for this cluster. For example:
5235
- :param pulumi.Input[str] client_certificate: Base64 encoded public certificate used by clients to authenticate to the cluster endpoint.
5236
- :param pulumi.Input[str] client_key: Base64 encoded private key used by clients to authenticate to the cluster endpoint.
5237
- :param pulumi.Input[str] cluster_ca_certificate: Base64 encoded public certificate that is the root of trust for the cluster.
5325
+ :param pulumi.Input[str] client_certificate: Base64 encoded public certificate
5326
+ used by clients to authenticate to the cluster endpoint.
5327
+ :param pulumi.Input[str] client_key: Base64 encoded private key used by clients
5328
+ to authenticate to the cluster endpoint.
5329
+ :param pulumi.Input[str] cluster_ca_certificate: Base64 encoded public certificate
5330
+ that is the root certificate of the cluster.
5238
5331
  """
5239
5332
  pulumi.set(__self__, "client_certificate_config", client_certificate_config)
5240
5333
  if client_certificate is not None:
@@ -5260,7 +5353,8 @@ class ClusterMasterAuthArgs:
5260
5353
  @pulumi.getter(name="clientCertificate")
5261
5354
  def client_certificate(self) -> Optional[pulumi.Input[str]]:
5262
5355
  """
5263
- Base64 encoded public certificate used by clients to authenticate to the cluster endpoint.
5356
+ Base64 encoded public certificate
5357
+ used by clients to authenticate to the cluster endpoint.
5264
5358
  """
5265
5359
  return pulumi.get(self, "client_certificate")
5266
5360
 
@@ -5272,7 +5366,8 @@ class ClusterMasterAuthArgs:
5272
5366
  @pulumi.getter(name="clientKey")
5273
5367
  def client_key(self) -> Optional[pulumi.Input[str]]:
5274
5368
  """
5275
- Base64 encoded private key used by clients to authenticate to the cluster endpoint.
5369
+ Base64 encoded private key used by clients
5370
+ to authenticate to the cluster endpoint.
5276
5371
  """
5277
5372
  return pulumi.get(self, "client_key")
5278
5373
 
@@ -5284,7 +5379,8 @@ class ClusterMasterAuthArgs:
5284
5379
  @pulumi.getter(name="clusterCaCertificate")
5285
5380
  def cluster_ca_certificate(self) -> Optional[pulumi.Input[str]]:
5286
5381
  """
5287
- Base64 encoded public certificate that is the root of trust for the cluster.
5382
+ Base64 encoded public certificate
5383
+ that is the root certificate of the cluster.
5288
5384
  """
5289
5385
  return pulumi.get(self, "cluster_ca_certificate")
5290
5386
 
@@ -5645,7 +5741,7 @@ class ClusterNodeConfigArgs:
5645
5741
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
5646
5742
  :param pulumi.Input[str] disk_type: Type of the disk attached to each node
5647
5743
  (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
5648
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node.
5744
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
5649
5745
  :param pulumi.Input[bool] enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
5650
5746
  :param pulumi.Input['ClusterNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
5651
5747
  :param pulumi.Input['ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs'] ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -5671,6 +5767,15 @@ class ClusterNodeConfigArgs:
5671
5767
  will delete and recreate all nodes in the node pool.
5672
5768
  :param pulumi.Input['ClusterNodeConfigKubeletConfigArgs'] kubelet_config: Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
5673
5769
  Structure is documented below.
5770
+
5771
+ ```
5772
+ kubelet_config {
5773
+ cpu_manager_policy = "static"
5774
+ cpu_cfs_quota = true
5775
+ cpu_cfs_quota_period = "100us"
5776
+ pod_pids_limit = 1024
5777
+ }
5778
+ ```
5674
5779
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The Kubernetes labels (key/value pairs) to be applied to each node. The kubernetes.io/ and k8s.io/ prefixes are
5675
5780
  reserved by Kubernetes Core components and cannot be specified.
5676
5781
  :param pulumi.Input['ClusterNodeConfigLinuxNodeConfigArgs'] linux_node_config: Parameters that can be configured on Linux nodes. Structure is documented below.
@@ -5869,7 +5974,7 @@ class ClusterNodeConfigArgs:
5869
5974
  @pulumi.getter(name="effectiveTaints")
5870
5975
  def effective_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodeConfigEffectiveTaintArgs']]]]:
5871
5976
  """
5872
- List of kubernetes taints applied to each node.
5977
+ List of kubernetes taints applied to each node. Structure is documented above.
5873
5978
  """
5874
5979
  return pulumi.get(self, "effective_taints")
5875
5980
 
@@ -6005,6 +6110,15 @@ class ClusterNodeConfigArgs:
6005
6110
  """
6006
6111
  Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
6007
6112
  Structure is documented below.
6113
+
6114
+ ```
6115
+ kubelet_config {
6116
+ cpu_manager_policy = "static"
6117
+ cpu_cfs_quota = true
6118
+ cpu_cfs_quota_period = "100us"
6119
+ pod_pids_limit = 1024
6120
+ }
6121
+ ```
6008
6122
  """
6009
6123
  return pulumi.get(self, "kubelet_config")
6010
6124
 
@@ -8065,7 +8179,7 @@ class ClusterNodePoolNodeConfigArgs:
8065
8179
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
8066
8180
  :param pulumi.Input[str] disk_type: Type of the disk attached to each node
8067
8181
  (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
8068
- :param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node.
8182
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigEffectiveTaintArgs']]] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
8069
8183
  :param pulumi.Input[bool] enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
8070
8184
  :param pulumi.Input['ClusterNodePoolNodeConfigEphemeralStorageConfigArgs'] ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
8071
8185
  :param pulumi.Input['ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs'] ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -8091,6 +8205,15 @@ class ClusterNodePoolNodeConfigArgs:
8091
8205
  will delete and recreate all nodes in the node pool.
8092
8206
  :param pulumi.Input['ClusterNodePoolNodeConfigKubeletConfigArgs'] kubelet_config: Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
8093
8207
  Structure is documented below.
8208
+
8209
+ ```
8210
+ kubelet_config {
8211
+ cpu_manager_policy = "static"
8212
+ cpu_cfs_quota = true
8213
+ cpu_cfs_quota_period = "100us"
8214
+ pod_pids_limit = 1024
8215
+ }
8216
+ ```
8094
8217
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The Kubernetes labels (key/value pairs) to be applied to each node. The kubernetes.io/ and k8s.io/ prefixes are
8095
8218
  reserved by Kubernetes Core components and cannot be specified.
8096
8219
  :param pulumi.Input['ClusterNodePoolNodeConfigLinuxNodeConfigArgs'] linux_node_config: Parameters that can be configured on Linux nodes. Structure is documented below.
@@ -8289,7 +8412,7 @@ class ClusterNodePoolNodeConfigArgs:
8289
8412
  @pulumi.getter(name="effectiveTaints")
8290
8413
  def effective_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterNodePoolNodeConfigEffectiveTaintArgs']]]]:
8291
8414
  """
8292
- List of kubernetes taints applied to each node.
8415
+ List of kubernetes taints applied to each node. Structure is documented above.
8293
8416
  """
8294
8417
  return pulumi.get(self, "effective_taints")
8295
8418
 
@@ -8425,6 +8548,15 @@ class ClusterNodePoolNodeConfigArgs:
8425
8548
  """
8426
8549
  Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
8427
8550
  Structure is documented below.
8551
+
8552
+ ```
8553
+ kubelet_config {
8554
+ cpu_manager_policy = "static"
8555
+ cpu_cfs_quota = true
8556
+ cpu_cfs_quota_period = "100us"
8557
+ pod_pids_limit = 1024
8558
+ }
8559
+ ```
8428
8560
  """
8429
8561
  return pulumi.get(self, "kubelet_config")
8430
8562
 
@@ -5255,9 +5255,9 @@ class ClusterFleet(dict):
5255
5255
  pre_registered: Optional[bool] = None,
5256
5256
  project: Optional[str] = None):
5257
5257
  """
5258
- :param str membership: Full resource name of the registered fleet membership of the cluster.
5259
- :param str membership_id: Short name of the fleet membership, for example "member-1".
5260
- :param str membership_location: Location of the fleet membership, for example "us-central1".
5258
+ :param str membership: The resource name of the fleet Membership resource associated to this cluster with format `//gkehub.googleapis.com/projects/{{project}}/locations/{{location}}/memberships/{{name}}`. See the official doc for [fleet management](https://cloud.google.com/kubernetes-engine/docs/fleets-overview).
5259
+ :param str membership_id: The short name of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_id` under google_gkehub_feature_membership.
5260
+ :param str membership_location: The location of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_location` under google_gkehub_feature_membership.
5261
5261
  :param bool pre_registered: Whether the cluster has been registered via the fleet API.
5262
5262
  :param str project: The name of the Fleet host project where this cluster will be registered.
5263
5263
  """
@@ -5276,7 +5276,7 @@ class ClusterFleet(dict):
5276
5276
  @pulumi.getter
5277
5277
  def membership(self) -> Optional[str]:
5278
5278
  """
5279
- Full resource name of the registered fleet membership of the cluster.
5279
+ The resource name of the fleet Membership resource associated to this cluster with format `//gkehub.googleapis.com/projects/{{project}}/locations/{{location}}/memberships/{{name}}`. See the official doc for [fleet management](https://cloud.google.com/kubernetes-engine/docs/fleets-overview).
5280
5280
  """
5281
5281
  return pulumi.get(self, "membership")
5282
5282
 
@@ -5284,7 +5284,7 @@ class ClusterFleet(dict):
5284
5284
  @pulumi.getter(name="membershipId")
5285
5285
  def membership_id(self) -> Optional[str]:
5286
5286
  """
5287
- Short name of the fleet membership, for example "member-1".
5287
+ The short name of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_id` under google_gkehub_feature_membership.
5288
5288
  """
5289
5289
  return pulumi.get(self, "membership_id")
5290
5290
 
@@ -5292,7 +5292,7 @@ class ClusterFleet(dict):
5292
5292
  @pulumi.getter(name="membershipLocation")
5293
5293
  def membership_location(self) -> Optional[str]:
5294
5294
  """
5295
- Location of the fleet membership, for example "us-central1".
5295
+ The location of the fleet membership, extracted from `fleet.0.membership`. You can use this field to configure `membership_location` under google_gkehub_feature_membership.
5296
5296
  """
5297
5297
  return pulumi.get(self, "membership_location")
5298
5298
 
@@ -5640,6 +5640,25 @@ class ClusterMaintenancePolicy(dict):
5640
5640
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5641
5641
 
5642
5642
  Examples:
5643
+ ```
5644
+ maintenance_policy {
5645
+ recurring_window {
5646
+ start_time = "2019-08-01T02:00:00Z"
5647
+ end_time = "2019-08-01T06:00:00Z"
5648
+ recurrence = "FREQ=DAILY"
5649
+ }
5650
+ }
5651
+ ```
5652
+
5653
+ ```
5654
+ maintenance_policy {
5655
+ recurring_window {
5656
+ start_time = "2019-01-01T09:00:00Z"
5657
+ end_time = "2019-01-01T17:00:00Z"
5658
+ recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
5659
+ }
5660
+ }
5661
+ ```
5643
5662
  """
5644
5663
  if daily_maintenance_window is not None:
5645
5664
  pulumi.set(__self__, "daily_maintenance_window", daily_maintenance_window)
@@ -5680,6 +5699,25 @@ class ClusterMaintenancePolicy(dict):
5680
5699
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5681
5700
 
5682
5701
  Examples:
5702
+ ```
5703
+ maintenance_policy {
5704
+ recurring_window {
5705
+ start_time = "2019-08-01T02:00:00Z"
5706
+ end_time = "2019-08-01T06:00:00Z"
5707
+ recurrence = "FREQ=DAILY"
5708
+ }
5709
+ }
5710
+ ```
5711
+
5712
+ ```
5713
+ maintenance_policy {
5714
+ recurring_window {
5715
+ start_time = "2019-01-01T09:00:00Z"
5716
+ end_time = "2019-01-01T17:00:00Z"
5717
+ recurrence = "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
5718
+ }
5719
+ }
5720
+ ```
5683
5721
  """
5684
5722
  return pulumi.get(self, "recurring_window")
5685
5723
 
@@ -5797,6 +5835,32 @@ class ClusterMaintenancePolicyMaintenanceExclusionExclusionOptions(dict):
5797
5835
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5798
5836
 
5799
5837
  Examples:
5838
+
5839
+ ```
5840
+ maintenance_policy {
5841
+ recurring_window {
5842
+ start_time = "2019-01-01T00:00:00Z"
5843
+ end_time = "2019-01-02T00:00:00Z"
5844
+ recurrence = "FREQ=DAILY"
5845
+ }
5846
+ maintenance_exclusion{
5847
+ exclusion_name = "batch job"
5848
+ start_time = "2019-01-01T00:00:00Z"
5849
+ end_time = "2019-01-02T00:00:00Z"
5850
+ exclusion_options {
5851
+ scope = "NO_UPGRADES"
5852
+ }
5853
+ }
5854
+ maintenance_exclusion{
5855
+ exclusion_name = "holiday data load"
5856
+ start_time = "2019-05-01T00:00:00Z"
5857
+ end_time = "2019-05-02T00:00:00Z"
5858
+ exclusion_options {
5859
+ scope = "NO_MINOR_UPGRADES"
5860
+ }
5861
+ }
5862
+ }
5863
+ ```
5800
5864
  """
5801
5865
  pulumi.set(__self__, "scope", scope)
5802
5866
 
@@ -5812,6 +5876,32 @@ class ClusterMaintenancePolicyMaintenanceExclusionExclusionOptions(dict):
5812
5876
  Note that GKE may accept other formats, but will return values in UTC, causing a permanent diff.
5813
5877
 
5814
5878
  Examples:
5879
+
5880
+ ```
5881
+ maintenance_policy {
5882
+ recurring_window {
5883
+ start_time = "2019-01-01T00:00:00Z"
5884
+ end_time = "2019-01-02T00:00:00Z"
5885
+ recurrence = "FREQ=DAILY"
5886
+ }
5887
+ maintenance_exclusion{
5888
+ exclusion_name = "batch job"
5889
+ start_time = "2019-01-01T00:00:00Z"
5890
+ end_time = "2019-01-02T00:00:00Z"
5891
+ exclusion_options {
5892
+ scope = "NO_UPGRADES"
5893
+ }
5894
+ }
5895
+ maintenance_exclusion{
5896
+ exclusion_name = "holiday data load"
5897
+ start_time = "2019-05-01T00:00:00Z"
5898
+ end_time = "2019-05-02T00:00:00Z"
5899
+ exclusion_options {
5900
+ scope = "NO_MINOR_UPGRADES"
5901
+ }
5902
+ }
5903
+ }
5904
+ ```
5815
5905
  """
5816
5906
  return pulumi.get(self, "scope")
5817
5907
 
@@ -5893,9 +5983,12 @@ class ClusterMasterAuth(dict):
5893
5983
  cluster_ca_certificate: Optional[str] = None):
5894
5984
  """
5895
5985
  :param 'ClusterMasterAuthClientCertificateConfigArgs' client_certificate_config: Whether client certificate authorization is enabled for this cluster. For example:
5896
- :param str client_certificate: Base64 encoded public certificate used by clients to authenticate to the cluster endpoint.
5897
- :param str client_key: Base64 encoded private key used by clients to authenticate to the cluster endpoint.
5898
- :param str cluster_ca_certificate: Base64 encoded public certificate that is the root of trust for the cluster.
5986
+ :param str client_certificate: Base64 encoded public certificate
5987
+ used by clients to authenticate to the cluster endpoint.
5988
+ :param str client_key: Base64 encoded private key used by clients
5989
+ to authenticate to the cluster endpoint.
5990
+ :param str cluster_ca_certificate: Base64 encoded public certificate
5991
+ that is the root certificate of the cluster.
5899
5992
  """
5900
5993
  pulumi.set(__self__, "client_certificate_config", client_certificate_config)
5901
5994
  if client_certificate is not None:
@@ -5917,7 +6010,8 @@ class ClusterMasterAuth(dict):
5917
6010
  @pulumi.getter(name="clientCertificate")
5918
6011
  def client_certificate(self) -> Optional[str]:
5919
6012
  """
5920
- Base64 encoded public certificate used by clients to authenticate to the cluster endpoint.
6013
+ Base64 encoded public certificate
6014
+ used by clients to authenticate to the cluster endpoint.
5921
6015
  """
5922
6016
  return pulumi.get(self, "client_certificate")
5923
6017
 
@@ -5925,7 +6019,8 @@ class ClusterMasterAuth(dict):
5925
6019
  @pulumi.getter(name="clientKey")
5926
6020
  def client_key(self) -> Optional[str]:
5927
6021
  """
5928
- Base64 encoded private key used by clients to authenticate to the cluster endpoint.
6022
+ Base64 encoded private key used by clients
6023
+ to authenticate to the cluster endpoint.
5929
6024
  """
5930
6025
  return pulumi.get(self, "client_key")
5931
6026
 
@@ -5933,7 +6028,8 @@ class ClusterMasterAuth(dict):
5933
6028
  @pulumi.getter(name="clusterCaCertificate")
5934
6029
  def cluster_ca_certificate(self) -> Optional[str]:
5935
6030
  """
5936
- Base64 encoded public certificate that is the root of trust for the cluster.
6031
+ Base64 encoded public certificate
6032
+ that is the root certificate of the cluster.
5937
6033
  """
5938
6034
  return pulumi.get(self, "cluster_ca_certificate")
5939
6035
 
@@ -6418,7 +6514,7 @@ class ClusterNodeConfig(dict):
6418
6514
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
6419
6515
  :param str disk_type: Type of the disk attached to each node
6420
6516
  (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
6421
- :param Sequence['ClusterNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node.
6517
+ :param Sequence['ClusterNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
6422
6518
  :param bool enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
6423
6519
  :param 'ClusterNodeConfigEphemeralStorageConfigArgs' ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
6424
6520
  :param 'ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs' ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -6444,6 +6540,15 @@ class ClusterNodeConfig(dict):
6444
6540
  will delete and recreate all nodes in the node pool.
6445
6541
  :param 'ClusterNodeConfigKubeletConfigArgs' kubelet_config: Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
6446
6542
  Structure is documented below.
6543
+
6544
+ ```
6545
+ kubelet_config {
6546
+ cpu_manager_policy = "static"
6547
+ cpu_cfs_quota = true
6548
+ cpu_cfs_quota_period = "100us"
6549
+ pod_pids_limit = 1024
6550
+ }
6551
+ ```
6447
6552
  :param Mapping[str, str] labels: The Kubernetes labels (key/value pairs) to be applied to each node. The kubernetes.io/ and k8s.io/ prefixes are
6448
6553
  reserved by Kubernetes Core components and cannot be specified.
6449
6554
  :param 'ClusterNodeConfigLinuxNodeConfigArgs' linux_node_config: Parameters that can be configured on Linux nodes. Structure is documented below.
@@ -6622,7 +6727,7 @@ class ClusterNodeConfig(dict):
6622
6727
  @pulumi.getter(name="effectiveTaints")
6623
6728
  def effective_taints(self) -> Optional[Sequence['outputs.ClusterNodeConfigEffectiveTaint']]:
6624
6729
  """
6625
- List of kubernetes taints applied to each node.
6730
+ List of kubernetes taints applied to each node. Structure is documented above.
6626
6731
  """
6627
6732
  return pulumi.get(self, "effective_taints")
6628
6733
 
@@ -6718,6 +6823,15 @@ class ClusterNodeConfig(dict):
6718
6823
  """
6719
6824
  Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
6720
6825
  Structure is documented below.
6826
+
6827
+ ```
6828
+ kubelet_config {
6829
+ cpu_manager_policy = "static"
6830
+ cpu_cfs_quota = true
6831
+ cpu_cfs_quota_period = "100us"
6832
+ pod_pids_limit = 1024
6833
+ }
6834
+ ```
6721
6835
  """
6722
6836
  return pulumi.get(self, "kubelet_config")
6723
6837
 
@@ -8882,7 +8996,7 @@ class ClusterNodePoolNodeConfig(dict):
8882
8996
  in GB. The smallest allowed disk size is 10GB. Defaults to 100GB.
8883
8997
  :param str disk_type: Type of the disk attached to each node
8884
8998
  (e.g. 'pd-standard', 'pd-balanced' or 'pd-ssd'). If unspecified, the default disk type is 'pd-standard'
8885
- :param Sequence['ClusterNodePoolNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node.
8999
+ :param Sequence['ClusterNodePoolNodeConfigEffectiveTaintArgs'] effective_taints: List of kubernetes taints applied to each node. Structure is documented above.
8886
9000
  :param bool enable_confidential_storage: Enabling Confidential Storage will create boot disk with confidential mode. It is disabled by default.
8887
9001
  :param 'ClusterNodePoolNodeConfigEphemeralStorageConfigArgs' ephemeral_storage_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
8888
9002
  :param 'ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs' ephemeral_storage_local_ssd_config: Parameters for the ephemeral storage filesystem. If unspecified, ephemeral storage is backed by the boot disk. Structure is documented below.
@@ -8908,6 +9022,15 @@ class ClusterNodePoolNodeConfig(dict):
8908
9022
  will delete and recreate all nodes in the node pool.
8909
9023
  :param 'ClusterNodePoolNodeConfigKubeletConfigArgs' kubelet_config: Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
8910
9024
  Structure is documented below.
9025
+
9026
+ ```
9027
+ kubelet_config {
9028
+ cpu_manager_policy = "static"
9029
+ cpu_cfs_quota = true
9030
+ cpu_cfs_quota_period = "100us"
9031
+ pod_pids_limit = 1024
9032
+ }
9033
+ ```
8911
9034
  :param Mapping[str, str] labels: The Kubernetes labels (key/value pairs) to be applied to each node. The kubernetes.io/ and k8s.io/ prefixes are
8912
9035
  reserved by Kubernetes Core components and cannot be specified.
8913
9036
  :param 'ClusterNodePoolNodeConfigLinuxNodeConfigArgs' linux_node_config: Parameters that can be configured on Linux nodes. Structure is documented below.
@@ -9086,7 +9209,7 @@ class ClusterNodePoolNodeConfig(dict):
9086
9209
  @pulumi.getter(name="effectiveTaints")
9087
9210
  def effective_taints(self) -> Optional[Sequence['outputs.ClusterNodePoolNodeConfigEffectiveTaint']]:
9088
9211
  """
9089
- List of kubernetes taints applied to each node.
9212
+ List of kubernetes taints applied to each node. Structure is documented above.
9090
9213
  """
9091
9214
  return pulumi.get(self, "effective_taints")
9092
9215
 
@@ -9182,6 +9305,15 @@ class ClusterNodePoolNodeConfig(dict):
9182
9305
  """
9183
9306
  Kubelet configuration, currently supported attributes can be found [here](https://cloud.google.com/sdk/gcloud/reference/beta/container/node-pools/create#--system-config-from-file).
9184
9307
  Structure is documented below.
9308
+
9309
+ ```
9310
+ kubelet_config {
9311
+ cpu_manager_policy = "static"
9312
+ cpu_cfs_quota = true
9313
+ cpu_cfs_quota_period = "100us"
9314
+ pod_pids_limit = 1024
9315
+ }
9316
+ ```
9185
9317
  """
9186
9318
  return pulumi.get(self, "kubelet_config")
9187
9319