pulumi-gcp 7.17.0a1712163201__py3-none-any.whl → 7.17.0a1712602552__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 (91) hide show
  1. pulumi_gcp/__init__.py +27 -0
  2. pulumi_gcp/apphub/__init__.py +1 -0
  3. pulumi_gcp/apphub/get_application.py +220 -0
  4. pulumi_gcp/apphub/outputs.py +214 -0
  5. pulumi_gcp/applicationintegration/__init__.py +10 -0
  6. pulumi_gcp/applicationintegration/_inputs.py +119 -0
  7. pulumi_gcp/applicationintegration/client.py +566 -0
  8. pulumi_gcp/applicationintegration/outputs.py +122 -0
  9. pulumi_gcp/bigquery/_inputs.py +16 -0
  10. pulumi_gcp/bigquery/outputs.py +14 -0
  11. pulumi_gcp/bigquery/routine.py +98 -0
  12. pulumi_gcp/bigtable/_inputs.py +4 -4
  13. pulumi_gcp/bigtable/gc_policy.py +8 -0
  14. pulumi_gcp/bigtable/outputs.py +4 -4
  15. pulumi_gcp/billing/_inputs.py +4 -4
  16. pulumi_gcp/billing/outputs.py +4 -4
  17. pulumi_gcp/billing/project_info.py +4 -4
  18. pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
  19. pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
  20. pulumi_gcp/cloudquota/__init__.py +2 -0
  21. pulumi_gcp/cloudquota/_inputs.py +131 -0
  22. pulumi_gcp/cloudquota/outputs.py +118 -0
  23. pulumi_gcp/cloudquota/s_quota_preference.py +777 -0
  24. pulumi_gcp/cloudrunv2/service.py +7 -7
  25. pulumi_gcp/composer/_inputs.py +14 -4
  26. pulumi_gcp/composer/outputs.py +22 -10
  27. pulumi_gcp/compute/_inputs.py +40 -44
  28. pulumi_gcp/compute/autoscaler.py +14 -14
  29. pulumi_gcp/compute/interconnect_attachment.py +64 -0
  30. pulumi_gcp/compute/network_endpoint.py +8 -0
  31. pulumi_gcp/compute/network_endpoint_list.py +8 -0
  32. pulumi_gcp/compute/outputs.py +62 -60
  33. pulumi_gcp/compute/region_autoscaler.py +14 -14
  34. pulumi_gcp/compute/region_backend_service.py +28 -0
  35. pulumi_gcp/compute/target_instance.py +4 -4
  36. pulumi_gcp/config/__init__.pyi +2 -0
  37. pulumi_gcp/config/vars.py +4 -0
  38. pulumi_gcp/container/_inputs.py +148 -16
  39. pulumi_gcp/container/outputs.py +148 -16
  40. pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
  41. pulumi_gcp/dataflow/flex_template_job.py +84 -112
  42. pulumi_gcp/dataloss/_inputs.py +6 -6
  43. pulumi_gcp/dataloss/outputs.py +6 -6
  44. pulumi_gcp/dataplex/task.py +16 -16
  45. pulumi_gcp/dataproc/_inputs.py +85 -10
  46. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  47. pulumi_gcp/dataproc/metastore_service.py +120 -0
  48. pulumi_gcp/dataproc/outputs.py +142 -10
  49. pulumi_gcp/firebase/app_check_service_config.py +2 -2
  50. pulumi_gcp/firestore/backup_schedule.py +14 -14
  51. pulumi_gcp/firestore/field.py +4 -4
  52. pulumi_gcp/gkehub/membership_binding.py +6 -6
  53. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  54. pulumi_gcp/gkehub/namespace.py +4 -4
  55. pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
  56. pulumi_gcp/iam/_inputs.py +76 -0
  57. pulumi_gcp/iam/outputs.py +76 -0
  58. pulumi_gcp/iam/workforce_pool_provider.py +35 -0
  59. pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
  60. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  61. pulumi_gcp/kms/_inputs.py +46 -0
  62. pulumi_gcp/kms/crypto_key.py +54 -0
  63. pulumi_gcp/kms/crypto_key_version.py +54 -0
  64. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  65. pulumi_gcp/kms/outputs.py +54 -0
  66. pulumi_gcp/logging/_inputs.py +8 -8
  67. pulumi_gcp/logging/metric.py +7 -7
  68. pulumi_gcp/logging/outputs.py +8 -8
  69. pulumi_gcp/monitoring/_inputs.py +2 -2
  70. pulumi_gcp/monitoring/outputs.py +2 -2
  71. pulumi_gcp/monitoring/slo.py +4 -4
  72. pulumi_gcp/networkservices/_inputs.py +6 -6
  73. pulumi_gcp/networkservices/outputs.py +6 -6
  74. pulumi_gcp/orgpolicy/policy.py +2 -2
  75. pulumi_gcp/provider.py +20 -0
  76. pulumi_gcp/pubsub/subscription.py +4 -4
  77. pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
  78. pulumi_gcp/sql/_inputs.py +20 -2
  79. pulumi_gcp/sql/database_instance.py +2 -2
  80. pulumi_gcp/sql/outputs.py +20 -2
  81. pulumi_gcp/storage/_inputs.py +2 -2
  82. pulumi_gcp/storage/outputs.py +2 -2
  83. pulumi_gcp/vertex/__init__.py +1 -0
  84. pulumi_gcp/vertex/_inputs.py +175 -8
  85. pulumi_gcp/vertex/ai_deployment_resource_pool.py +477 -0
  86. pulumi_gcp/vertex/outputs.py +202 -10
  87. pulumi_gcp/vpcaccess/connector.py +77 -28
  88. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/METADATA +1 -1
  89. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/RECORD +91 -83
  90. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/WHEEL +0 -0
  91. {pulumi_gcp-7.17.0a1712163201.dist-info → pulumi_gcp-7.17.0a1712602552.dist-info}/top_level.txt +0 -0
@@ -574,6 +574,7 @@ class _RegionBackendServiceState:
574
574
  enable_cdn: Optional[pulumi.Input[bool]] = None,
575
575
  failover_policy: Optional[pulumi.Input['RegionBackendServiceFailoverPolicyArgs']] = None,
576
576
  fingerprint: Optional[pulumi.Input[str]] = None,
577
+ generated_id: Optional[pulumi.Input[int]] = None,
577
578
  health_checks: Optional[pulumi.Input[str]] = None,
578
579
  iap: Optional[pulumi.Input['RegionBackendServiceIapArgs']] = None,
579
580
  load_balancing_scheme: Optional[pulumi.Input[str]] = None,
@@ -626,6 +627,7 @@ class _RegionBackendServiceState:
626
627
  Structure is documented below.
627
628
  :param pulumi.Input[str] fingerprint: Fingerprint of this resource. A hash of the contents stored in this
628
629
  object. This field is used in optimistic locking.
630
+ :param pulumi.Input[int] generated_id: The unique identifier for the resource. This identifier is defined by the server.
629
631
  :param pulumi.Input[str] health_checks: The set of URLs to HealthCheck resources for health checking
630
632
  this RegionBackendService. Currently at most one health
631
633
  check can be specified.
@@ -709,6 +711,8 @@ class _RegionBackendServiceState:
709
711
  pulumi.set(__self__, "failover_policy", failover_policy)
710
712
  if fingerprint is not None:
711
713
  pulumi.set(__self__, "fingerprint", fingerprint)
714
+ if generated_id is not None:
715
+ pulumi.set(__self__, "generated_id", generated_id)
712
716
  if health_checks is not None:
713
717
  pulumi.set(__self__, "health_checks", health_checks)
714
718
  if iap is not None:
@@ -909,6 +913,18 @@ class _RegionBackendServiceState:
909
913
  def fingerprint(self, value: Optional[pulumi.Input[str]]):
910
914
  pulumi.set(self, "fingerprint", value)
911
915
 
916
+ @property
917
+ @pulumi.getter(name="generatedId")
918
+ def generated_id(self) -> Optional[pulumi.Input[int]]:
919
+ """
920
+ The unique identifier for the resource. This identifier is defined by the server.
921
+ """
922
+ return pulumi.get(self, "generated_id")
923
+
924
+ @generated_id.setter
925
+ def generated_id(self, value: Optional[pulumi.Input[int]]):
926
+ pulumi.set(self, "generated_id", value)
927
+
912
928
  @property
913
929
  @pulumi.getter(name="healthChecks")
914
930
  def health_checks(self) -> Optional[pulumi.Input[str]]:
@@ -1973,6 +1989,7 @@ class RegionBackendService(pulumi.CustomResource):
1973
1989
  __props__.__dict__["timeout_sec"] = timeout_sec
1974
1990
  __props__.__dict__["creation_timestamp"] = None
1975
1991
  __props__.__dict__["fingerprint"] = None
1992
+ __props__.__dict__["generated_id"] = None
1976
1993
  __props__.__dict__["self_link"] = None
1977
1994
  super(RegionBackendService, __self__).__init__(
1978
1995
  'gcp:compute/regionBackendService:RegionBackendService',
@@ -1996,6 +2013,7 @@ class RegionBackendService(pulumi.CustomResource):
1996
2013
  enable_cdn: Optional[pulumi.Input[bool]] = None,
1997
2014
  failover_policy: Optional[pulumi.Input[pulumi.InputType['RegionBackendServiceFailoverPolicyArgs']]] = None,
1998
2015
  fingerprint: Optional[pulumi.Input[str]] = None,
2016
+ generated_id: Optional[pulumi.Input[int]] = None,
1999
2017
  health_checks: Optional[pulumi.Input[str]] = None,
2000
2018
  iap: Optional[pulumi.Input[pulumi.InputType['RegionBackendServiceIapArgs']]] = None,
2001
2019
  load_balancing_scheme: Optional[pulumi.Input[str]] = None,
@@ -2053,6 +2071,7 @@ class RegionBackendService(pulumi.CustomResource):
2053
2071
  Structure is documented below.
2054
2072
  :param pulumi.Input[str] fingerprint: Fingerprint of this resource. A hash of the contents stored in this
2055
2073
  object. This field is used in optimistic locking.
2074
+ :param pulumi.Input[int] generated_id: The unique identifier for the resource. This identifier is defined by the server.
2056
2075
  :param pulumi.Input[str] health_checks: The set of URLs to HealthCheck resources for health checking
2057
2076
  this RegionBackendService. Currently at most one health
2058
2077
  check can be specified.
@@ -2128,6 +2147,7 @@ class RegionBackendService(pulumi.CustomResource):
2128
2147
  __props__.__dict__["enable_cdn"] = enable_cdn
2129
2148
  __props__.__dict__["failover_policy"] = failover_policy
2130
2149
  __props__.__dict__["fingerprint"] = fingerprint
2150
+ __props__.__dict__["generated_id"] = generated_id
2131
2151
  __props__.__dict__["health_checks"] = health_checks
2132
2152
  __props__.__dict__["iap"] = iap
2133
2153
  __props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
@@ -2264,6 +2284,14 @@ class RegionBackendService(pulumi.CustomResource):
2264
2284
  """
2265
2285
  return pulumi.get(self, "fingerprint")
2266
2286
 
2287
+ @property
2288
+ @pulumi.getter(name="generatedId")
2289
+ def generated_id(self) -> pulumi.Output[int]:
2290
+ """
2291
+ The unique identifier for the resource. This identifier is defined by the server.
2292
+ """
2293
+ return pulumi.get(self, "generated_id")
2294
+
2267
2295
  @property
2268
2296
  @pulumi.getter(name="healthChecks")
2269
2297
  def health_checks(self) -> pulumi.Output[Optional[str]]:
@@ -507,7 +507,7 @@ class TargetInstance(pulumi.CustomResource):
507
507
  ))
508
508
  policyddosprotection = gcp.compute.RegionSecurityPolicy("policyddosprotection",
509
509
  region="southamerica-west1",
510
- name="tf-test-policyddos_81126",
510
+ name="tf-test-policyddos_88717",
511
511
  description="ddos protection security policy to set target instance",
512
512
  type="CLOUD_ARMOR_NETWORK",
513
513
  ddos_protection_config=gcp.compute.RegionSecurityPolicyDdosProtectionConfigArgs(
@@ -515,7 +515,7 @@ class TargetInstance(pulumi.CustomResource):
515
515
  ))
516
516
  edge_sec_service = gcp.compute.NetworkEdgeSecurityService("edge_sec_service",
517
517
  region="southamerica-west1",
518
- name="tf-test-edgesec_88717",
518
+ name="tf-test-edgesec_85794",
519
519
  security_policy=policyddosprotection.self_link)
520
520
  regionsecuritypolicy = gcp.compute.RegionSecurityPolicy("regionsecuritypolicy",
521
521
  name="region-secpolicy",
@@ -702,7 +702,7 @@ class TargetInstance(pulumi.CustomResource):
702
702
  ))
703
703
  policyddosprotection = gcp.compute.RegionSecurityPolicy("policyddosprotection",
704
704
  region="southamerica-west1",
705
- name="tf-test-policyddos_81126",
705
+ name="tf-test-policyddos_88717",
706
706
  description="ddos protection security policy to set target instance",
707
707
  type="CLOUD_ARMOR_NETWORK",
708
708
  ddos_protection_config=gcp.compute.RegionSecurityPolicyDdosProtectionConfigArgs(
@@ -710,7 +710,7 @@ class TargetInstance(pulumi.CustomResource):
710
710
  ))
711
711
  edge_sec_service = gcp.compute.NetworkEdgeSecurityService("edge_sec_service",
712
712
  region="southamerica-west1",
713
- name="tf-test-edgesec_88717",
713
+ name="tf-test-edgesec_85794",
714
714
  security_policy=policyddosprotection.self_link)
715
715
  regionsecuritypolicy = gcp.compute.RegionSecurityPolicy("regionsecuritypolicy",
716
716
  name="region-secpolicy",
@@ -222,6 +222,8 @@ impersonateServiceAccountDelegates: Optional[str]
222
222
 
223
223
  integrationConnectorsCustomEndpoint: Optional[str]
224
224
 
225
+ integrationsCustomEndpoint: Optional[str]
226
+
225
227
  kmsCustomEndpoint: Optional[str]
226
228
 
227
229
  loggingCustomEndpoint: Optional[str]
pulumi_gcp/config/vars.py CHANGED
@@ -440,6 +440,10 @@ class _ExportableConfig(types.ModuleType):
440
440
  def integration_connectors_custom_endpoint(self) -> Optional[str]:
441
441
  return __config__.get('integrationConnectorsCustomEndpoint')
442
442
 
443
+ @property
444
+ def integrations_custom_endpoint(self) -> Optional[str]:
445
+ return __config__.get('integrationsCustomEndpoint')
446
+
443
447
  @property
444
448
  def kms_custom_endpoint(self) -> Optional[str]:
445
449
  return __config__.get('kmsCustomEndpoint')
@@ -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