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
@@ -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
 
@@ -705,11 +705,11 @@ class ConnectionProfile(pulumi.CustomResource):
705
705
  "foo": "bar",
706
706
  },
707
707
  alloydb=gcp.databasemigrationservice.ConnectionProfileAlloydbArgs(
708
- cluster_id="tf-test-dbmsalloycluster_85794",
708
+ cluster_id="tf-test-dbmsalloycluster_21197",
709
709
  settings=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsArgs(
710
710
  initial_user=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsInitialUserArgs(
711
- user="alloyuser_21197",
712
- password="alloypass_52865",
711
+ user="alloyuser_52865",
712
+ password="alloypass_85840",
713
713
  ),
714
714
  vpc_network=default.id,
715
715
  labels={
@@ -962,11 +962,11 @@ class ConnectionProfile(pulumi.CustomResource):
962
962
  "foo": "bar",
963
963
  },
964
964
  alloydb=gcp.databasemigrationservice.ConnectionProfileAlloydbArgs(
965
- cluster_id="tf-test-dbmsalloycluster_85794",
965
+ cluster_id="tf-test-dbmsalloycluster_21197",
966
966
  settings=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsArgs(
967
967
  initial_user=gcp.databasemigrationservice.ConnectionProfileAlloydbSettingsInitialUserArgs(
968
- user="alloyuser_21197",
969
- password="alloypass_52865",
968
+ user="alloyuser_52865",
969
+ password="alloypass_85840",
970
970
  ),
971
971
  vpc_network=default.id,
972
972
  labels={