pulumi-gcp 8.40.0a1754636117__py3-none-any.whl → 8.40.0a1754951145__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 (157) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
  3. pulumi_gcp/accesscontextmanager/outputs.py +15 -3
  4. pulumi_gcp/apigee/__init__.py +2 -0
  5. pulumi_gcp/apigee/_inputs.py +1435 -0
  6. pulumi_gcp/apigee/api_product.py +1698 -0
  7. pulumi_gcp/apigee/outputs.py +1081 -0
  8. pulumi_gcp/apigee/security_action.py +1010 -0
  9. pulumi_gcp/artifactregistry/__init__.py +1 -0
  10. pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
  11. pulumi_gcp/artifactregistry/outputs.py +109 -2
  12. pulumi_gcp/artifactregistry/repository.py +6 -6
  13. pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
  15. pulumi_gcp/bigquery/_inputs.py +6 -0
  16. pulumi_gcp/bigquery/get_table.py +23 -1
  17. pulumi_gcp/bigquery/outputs.py +4 -0
  18. pulumi_gcp/bigquery/table.py +62 -0
  19. pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
  20. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
  21. pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
  22. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
  23. pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
  24. pulumi_gcp/bigtable/__init__.py +1 -0
  25. pulumi_gcp/bigtable/_inputs.py +33 -0
  26. pulumi_gcp/bigtable/outputs.py +36 -0
  27. pulumi_gcp/bigtable/schema_bundle.py +568 -0
  28. pulumi_gcp/cloudfunctions/_inputs.py +48 -0
  29. pulumi_gcp/cloudfunctions/function.py +94 -0
  30. pulumi_gcp/cloudfunctions/get_function.py +23 -1
  31. pulumi_gcp/cloudfunctions/outputs.py +70 -0
  32. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  33. pulumi_gcp/cloudrunv2/job.py +2 -0
  34. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  35. pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
  36. pulumi_gcp/compute/__init__.py +1 -0
  37. pulumi_gcp/compute/_inputs.py +713 -22
  38. pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
  39. pulumi_gcp/compute/forwarding_rule.py +0 -21
  40. pulumi_gcp/compute/get_router.py +12 -1
  41. pulumi_gcp/compute/outputs.py +562 -22
  42. pulumi_gcp/compute/preview_feature.py +396 -0
  43. pulumi_gcp/compute/region_url_map.py +392 -0
  44. pulumi_gcp/compute/reservation.py +4 -4
  45. pulumi_gcp/compute/router.py +54 -0
  46. pulumi_gcp/compute/storage_pool.py +154 -0
  47. pulumi_gcp/compute/subnetwork.py +54 -0
  48. pulumi_gcp/config/__init__.pyi +2 -0
  49. pulumi_gcp/config/vars.py +4 -0
  50. pulumi_gcp/container/_inputs.py +278 -8
  51. pulumi_gcp/container/cluster.py +61 -21
  52. pulumi_gcp/container/get_cluster.py +12 -1
  53. pulumi_gcp/container/outputs.py +352 -8
  54. pulumi_gcp/dataproc/_inputs.py +249 -14
  55. pulumi_gcp/dataproc/batch.py +6 -0
  56. pulumi_gcp/dataproc/cluster.py +2 -0
  57. pulumi_gcp/dataproc/outputs.py +215 -12
  58. pulumi_gcp/dataproc/session_template.py +14 -2
  59. pulumi_gcp/developerconnect/__init__.py +1 -0
  60. pulumi_gcp/developerconnect/_inputs.py +583 -0
  61. pulumi_gcp/developerconnect/insights_config.py +895 -0
  62. pulumi_gcp/developerconnect/outputs.py +442 -0
  63. pulumi_gcp/diagflow/__init__.py +1 -0
  64. pulumi_gcp/diagflow/_inputs.py +1165 -58
  65. pulumi_gcp/diagflow/cx_generator.py +636 -0
  66. pulumi_gcp/diagflow/cx_tool.py +2 -2
  67. pulumi_gcp/diagflow/cx_webhook.py +380 -36
  68. pulumi_gcp/diagflow/outputs.py +848 -25
  69. pulumi_gcp/discoveryengine/__init__.py +2 -0
  70. pulumi_gcp/discoveryengine/_inputs.py +465 -0
  71. pulumi_gcp/discoveryengine/cmek_config.py +707 -0
  72. pulumi_gcp/discoveryengine/outputs.py +412 -0
  73. pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
  74. pulumi_gcp/firestore/field.py +6 -6
  75. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
  76. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
  77. pulumi_gcp/gkehub/membership_binding.py +6 -6
  78. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  79. pulumi_gcp/gkehub/namespace.py +4 -4
  80. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  81. pulumi_gcp/iam/__init__.py +4 -0
  82. pulumi_gcp/iam/_inputs.py +98 -0
  83. pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
  84. pulumi_gcp/iam/outputs.py +56 -0
  85. pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
  86. pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
  87. pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
  88. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  89. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  90. pulumi_gcp/looker/instance.py +28 -7
  91. pulumi_gcp/managedkafka/_inputs.py +127 -0
  92. pulumi_gcp/managedkafka/cluster.py +131 -1
  93. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  94. pulumi_gcp/managedkafka/connector.py +4 -4
  95. pulumi_gcp/managedkafka/outputs.py +128 -0
  96. pulumi_gcp/memorystore/instance.py +8 -12
  97. pulumi_gcp/modelarmor/__init__.py +1 -0
  98. pulumi_gcp/modelarmor/_inputs.py +683 -0
  99. pulumi_gcp/modelarmor/floorsetting.py +736 -0
  100. pulumi_gcp/modelarmor/outputs.py +618 -0
  101. pulumi_gcp/networkconnectivity/_inputs.py +60 -0
  102. pulumi_gcp/networkconnectivity/internal_range.py +136 -0
  103. pulumi_gcp/networkconnectivity/outputs.py +55 -0
  104. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  105. pulumi_gcp/oracledatabase/__init__.py +2 -0
  106. pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
  107. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
  108. pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
  109. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
  110. pulumi_gcp/oracledatabase/odb_network.py +721 -0
  111. pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
  112. pulumi_gcp/oracledatabase/outputs.py +83 -0
  113. pulumi_gcp/orgpolicy/policy.py +2 -2
  114. pulumi_gcp/parametermanager/parameter_version.py +62 -0
  115. pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
  116. pulumi_gcp/provider.py +20 -0
  117. pulumi_gcp/pubsub/subscription.py +46 -6
  118. pulumi_gcp/pubsub/topic.py +36 -0
  119. pulumi_gcp/pulumi-plugin.json +1 -1
  120. pulumi_gcp/redis/cluster.py +70 -0
  121. pulumi_gcp/redis/get_cluster.py +12 -1
  122. pulumi_gcp/redis/instance.py +8 -12
  123. pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
  124. pulumi_gcp/secretmanager/get_secret.py +12 -1
  125. pulumi_gcp/secretmanager/outputs.py +30 -0
  126. pulumi_gcp/secretmanager/regional_secret.py +61 -0
  127. pulumi_gcp/secretmanager/secret.py +61 -0
  128. pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
  129. pulumi_gcp/securesourcemanager/instance.py +112 -4
  130. pulumi_gcp/securesourcemanager/repository.py +112 -8
  131. pulumi_gcp/serviceaccount/get_account_key.py +1 -0
  132. pulumi_gcp/sql/_inputs.py +6 -6
  133. pulumi_gcp/sql/database.py +0 -12
  134. pulumi_gcp/sql/outputs.py +4 -4
  135. pulumi_gcp/storage/__init__.py +2 -0
  136. pulumi_gcp/storage/_inputs.py +451 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/bucket_object.py +34 -0
  139. pulumi_gcp/storage/get_bucket_object.py +12 -1
  140. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  141. pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
  142. pulumi_gcp/storage/insights_dataset_config.py +1280 -0
  143. pulumi_gcp/storage/outputs.py +619 -0
  144. pulumi_gcp/vertex/__init__.py +1 -0
  145. pulumi_gcp/vertex/_inputs.py +3646 -3
  146. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  147. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
  148. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  149. pulumi_gcp/vertex/outputs.py +2609 -2
  150. pulumi_gcp/vmwareengine/network_peering.py +7 -7
  151. pulumi_gcp/workbench/_inputs.py +118 -0
  152. pulumi_gcp/workbench/instance.py +171 -2
  153. pulumi_gcp/workbench/outputs.py +91 -0
  154. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754636117.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -77,8 +77,11 @@ class InstanceArgs:
77
77
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
78
78
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
79
79
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
80
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
81
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
82
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
80
83
  Default value is `LOOKER_CORE_TRIAL`.
81
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
84
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
82
85
  :param pulumi.Input[_builtins.bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
83
86
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
84
87
  If it is not provided, the provider project is used.
@@ -285,8 +288,11 @@ class InstanceArgs:
285
288
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
286
289
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
287
290
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
291
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
292
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
293
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
288
294
  Default value is `LOOKER_CORE_TRIAL`.
289
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
295
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
290
296
  """
291
297
  return pulumi.get(self, "platform_edition")
292
298
 
@@ -474,8 +480,11 @@ class _InstanceState:
474
480
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
475
481
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
476
482
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
483
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
484
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
485
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
477
486
  Default value is `LOOKER_CORE_TRIAL`.
478
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
487
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
479
488
  :param pulumi.Input[_builtins.bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
480
489
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
481
490
  If it is not provided, the provider project is used.
@@ -772,8 +781,11 @@ class _InstanceState:
772
781
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
773
782
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
774
783
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
784
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
785
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
786
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
775
787
  Default value is `LOOKER_CORE_TRIAL`.
776
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
788
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
777
789
  """
778
790
  return pulumi.get(self, "platform_edition")
779
791
 
@@ -1210,8 +1222,11 @@ class Instance(pulumi.CustomResource):
1210
1222
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
1211
1223
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
1212
1224
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
1225
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
1226
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
1227
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
1213
1228
  Default value is `LOOKER_CORE_TRIAL`.
1214
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
1229
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
1215
1230
  :param pulumi.Input[_builtins.bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
1216
1231
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
1217
1232
  If it is not provided, the provider project is used.
@@ -1639,8 +1654,11 @@ class Instance(pulumi.CustomResource):
1639
1654
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
1640
1655
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
1641
1656
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
1657
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
1658
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
1659
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
1642
1660
  Default value is `LOOKER_CORE_TRIAL`.
1643
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
1661
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
1644
1662
  :param pulumi.Input[_builtins.bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
1645
1663
  :param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
1646
1664
  If it is not provided, the provider project is used.
@@ -1852,8 +1870,11 @@ class Instance(pulumi.CustomResource):
1852
1870
  - LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance
1853
1871
  - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL: nonprod subscription enterprise instance
1854
1872
  - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance
1873
+ - LOOKER_CORE_TRIAL_STANDARD: A standard trial edition of Looker (Google Cloud core) product.
1874
+ - LOOKER_CORE_TRIAL_ENTERPRISE: An enterprise trial edition of Looker (Google Cloud core) product.
1875
+ - LOOKER_CORE_TRIAL_EMBED: An embed trial edition of Looker (Google Cloud core) product.
1855
1876
  Default value is `LOOKER_CORE_TRIAL`.
1856
- Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`.
1877
+ Possible values are: `LOOKER_CORE_TRIAL`, `LOOKER_CORE_STANDARD`, `LOOKER_CORE_STANDARD_ANNUAL`, `LOOKER_CORE_ENTERPRISE_ANNUAL`, `LOOKER_CORE_EMBED_ANNUAL`, `LOOKER_CORE_NONPROD_STANDARD_ANNUAL`, `LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL`, `LOOKER_CORE_NONPROD_EMBED_ANNUAL`, `LOOKER_CORE_TRIAL_STANDARD`, `LOOKER_CORE_TRIAL_ENTERPRISE`, `LOOKER_CORE_TRIAL_EMBED`.
1857
1878
  """
1858
1879
  return pulumi.get(self, "platform_edition")
1859
1880
 
@@ -27,6 +27,12 @@ __all__ = [
27
27
  'ClusterGcpConfigAccessConfigNetworkConfigArgsDict',
28
28
  'ClusterRebalanceConfigArgs',
29
29
  'ClusterRebalanceConfigArgsDict',
30
+ 'ClusterTlsConfigArgs',
31
+ 'ClusterTlsConfigArgsDict',
32
+ 'ClusterTlsConfigTrustConfigArgs',
33
+ 'ClusterTlsConfigTrustConfigArgsDict',
34
+ 'ClusterTlsConfigTrustConfigCasConfigArgs',
35
+ 'ClusterTlsConfigTrustConfigCasConfigArgsDict',
30
36
  'ConnectClusterCapacityConfigArgs',
31
37
  'ConnectClusterCapacityConfigArgsDict',
32
38
  'ConnectClusterGcpConfigArgs',
@@ -341,6 +347,127 @@ class ClusterRebalanceConfigArgs:
341
347
  pulumi.set(self, "mode", value)
342
348
 
343
349
 
350
+ if not MYPY:
351
+ class ClusterTlsConfigArgsDict(TypedDict):
352
+ ssl_principal_mapping_rules: NotRequired[pulumi.Input[_builtins.str]]
353
+ """
354
+ The rules for mapping mTLS certificate Distinguished Names (DNs) to shortened principal names for Kafka ACLs. This field corresponds exactly to the ssl.principal.mapping.rules broker config and matches the format and syntax defined in the Apache Kafka documentation. Setting or modifying this field will trigger a rolling restart of the Kafka brokers to apply the change. An empty string means that the default Kafka behavior is used. Example: `RULE:^CN=(.?),OU=ServiceUsers.$/$1@example.com/,DEFAULT`
355
+ """
356
+ trust_config: NotRequired[pulumi.Input['ClusterTlsConfigTrustConfigArgsDict']]
357
+ """
358
+ The configuration of the broker truststore. If specified, clients can use mTLS for authentication.
359
+ Structure is documented below.
360
+ """
361
+ elif False:
362
+ ClusterTlsConfigArgsDict: TypeAlias = Mapping[str, Any]
363
+
364
+ @pulumi.input_type
365
+ class ClusterTlsConfigArgs:
366
+ def __init__(__self__, *,
367
+ ssl_principal_mapping_rules: Optional[pulumi.Input[_builtins.str]] = None,
368
+ trust_config: Optional[pulumi.Input['ClusterTlsConfigTrustConfigArgs']] = None):
369
+ """
370
+ :param pulumi.Input[_builtins.str] ssl_principal_mapping_rules: The rules for mapping mTLS certificate Distinguished Names (DNs) to shortened principal names for Kafka ACLs. This field corresponds exactly to the ssl.principal.mapping.rules broker config and matches the format and syntax defined in the Apache Kafka documentation. Setting or modifying this field will trigger a rolling restart of the Kafka brokers to apply the change. An empty string means that the default Kafka behavior is used. Example: `RULE:^CN=(.?),OU=ServiceUsers.$/$1@example.com/,DEFAULT`
371
+ :param pulumi.Input['ClusterTlsConfigTrustConfigArgs'] trust_config: The configuration of the broker truststore. If specified, clients can use mTLS for authentication.
372
+ Structure is documented below.
373
+ """
374
+ if ssl_principal_mapping_rules is not None:
375
+ pulumi.set(__self__, "ssl_principal_mapping_rules", ssl_principal_mapping_rules)
376
+ if trust_config is not None:
377
+ pulumi.set(__self__, "trust_config", trust_config)
378
+
379
+ @_builtins.property
380
+ @pulumi.getter(name="sslPrincipalMappingRules")
381
+ def ssl_principal_mapping_rules(self) -> Optional[pulumi.Input[_builtins.str]]:
382
+ """
383
+ The rules for mapping mTLS certificate Distinguished Names (DNs) to shortened principal names for Kafka ACLs. This field corresponds exactly to the ssl.principal.mapping.rules broker config and matches the format and syntax defined in the Apache Kafka documentation. Setting or modifying this field will trigger a rolling restart of the Kafka brokers to apply the change. An empty string means that the default Kafka behavior is used. Example: `RULE:^CN=(.?),OU=ServiceUsers.$/$1@example.com/,DEFAULT`
384
+ """
385
+ return pulumi.get(self, "ssl_principal_mapping_rules")
386
+
387
+ @ssl_principal_mapping_rules.setter
388
+ def ssl_principal_mapping_rules(self, value: Optional[pulumi.Input[_builtins.str]]):
389
+ pulumi.set(self, "ssl_principal_mapping_rules", value)
390
+
391
+ @_builtins.property
392
+ @pulumi.getter(name="trustConfig")
393
+ def trust_config(self) -> Optional[pulumi.Input['ClusterTlsConfigTrustConfigArgs']]:
394
+ """
395
+ The configuration of the broker truststore. If specified, clients can use mTLS for authentication.
396
+ Structure is documented below.
397
+ """
398
+ return pulumi.get(self, "trust_config")
399
+
400
+ @trust_config.setter
401
+ def trust_config(self, value: Optional[pulumi.Input['ClusterTlsConfigTrustConfigArgs']]):
402
+ pulumi.set(self, "trust_config", value)
403
+
404
+
405
+ if not MYPY:
406
+ class ClusterTlsConfigTrustConfigArgsDict(TypedDict):
407
+ cas_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['ClusterTlsConfigTrustConfigCasConfigArgsDict']]]]
408
+ """
409
+ Configuration for the Google Certificate Authority Service. To support mTLS, you must specify at least one `cas_configs` block. A maximum of 10 CA pools can be specified. Additional CA pools may be specified with additional `cas_configs` blocks.
410
+ Structure is documented below.
411
+ """
412
+ elif False:
413
+ ClusterTlsConfigTrustConfigArgsDict: TypeAlias = Mapping[str, Any]
414
+
415
+ @pulumi.input_type
416
+ class ClusterTlsConfigTrustConfigArgs:
417
+ def __init__(__self__, *,
418
+ cas_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterTlsConfigTrustConfigCasConfigArgs']]]] = None):
419
+ """
420
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterTlsConfigTrustConfigCasConfigArgs']]] cas_configs: Configuration for the Google Certificate Authority Service. To support mTLS, you must specify at least one `cas_configs` block. A maximum of 10 CA pools can be specified. Additional CA pools may be specified with additional `cas_configs` blocks.
421
+ Structure is documented below.
422
+ """
423
+ if cas_configs is not None:
424
+ pulumi.set(__self__, "cas_configs", cas_configs)
425
+
426
+ @_builtins.property
427
+ @pulumi.getter(name="casConfigs")
428
+ def cas_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterTlsConfigTrustConfigCasConfigArgs']]]]:
429
+ """
430
+ Configuration for the Google Certificate Authority Service. To support mTLS, you must specify at least one `cas_configs` block. A maximum of 10 CA pools can be specified. Additional CA pools may be specified with additional `cas_configs` blocks.
431
+ Structure is documented below.
432
+ """
433
+ return pulumi.get(self, "cas_configs")
434
+
435
+ @cas_configs.setter
436
+ def cas_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterTlsConfigTrustConfigCasConfigArgs']]]]):
437
+ pulumi.set(self, "cas_configs", value)
438
+
439
+
440
+ if not MYPY:
441
+ class ClusterTlsConfigTrustConfigCasConfigArgsDict(TypedDict):
442
+ ca_pool: pulumi.Input[_builtins.str]
443
+ """
444
+ The name of the CA pool to pull CA certificates from. The CA pool does not need to be in the same project or location as the Kafka cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/caPools/CA_POOL_ID.
445
+ """
446
+ elif False:
447
+ ClusterTlsConfigTrustConfigCasConfigArgsDict: TypeAlias = Mapping[str, Any]
448
+
449
+ @pulumi.input_type
450
+ class ClusterTlsConfigTrustConfigCasConfigArgs:
451
+ def __init__(__self__, *,
452
+ ca_pool: pulumi.Input[_builtins.str]):
453
+ """
454
+ :param pulumi.Input[_builtins.str] ca_pool: The name of the CA pool to pull CA certificates from. The CA pool does not need to be in the same project or location as the Kafka cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/caPools/CA_POOL_ID.
455
+ """
456
+ pulumi.set(__self__, "ca_pool", ca_pool)
457
+
458
+ @_builtins.property
459
+ @pulumi.getter(name="caPool")
460
+ def ca_pool(self) -> pulumi.Input[_builtins.str]:
461
+ """
462
+ The name of the CA pool to pull CA certificates from. The CA pool does not need to be in the same project or location as the Kafka cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/caPools/CA_POOL_ID.
463
+ """
464
+ return pulumi.get(self, "ca_pool")
465
+
466
+ @ca_pool.setter
467
+ def ca_pool(self, value: pulumi.Input[_builtins.str]):
468
+ pulumi.set(self, "ca_pool", value)
469
+
470
+
344
471
  if not MYPY:
345
472
  class ConnectClusterCapacityConfigArgsDict(TypedDict):
346
473
  memory_bytes: pulumi.Input[_builtins.str]
@@ -27,7 +27,8 @@ class ClusterArgs:
27
27
  location: pulumi.Input[_builtins.str],
28
28
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
29
29
  project: Optional[pulumi.Input[_builtins.str]] = None,
30
- rebalance_config: Optional[pulumi.Input['ClusterRebalanceConfigArgs']] = None):
30
+ rebalance_config: Optional[pulumi.Input['ClusterRebalanceConfigArgs']] = None,
31
+ tls_config: Optional[pulumi.Input['ClusterTlsConfigArgs']] = None):
31
32
  """
32
33
  The set of arguments for constructing a Cluster resource.
33
34
  :param pulumi.Input['ClusterCapacityConfigArgs'] capacity_config: A capacity configuration of a Kafka cluster.
@@ -43,6 +44,8 @@ class ClusterArgs:
43
44
  If it is not provided, the provider project is used.
44
45
  :param pulumi.Input['ClusterRebalanceConfigArgs'] rebalance_config: Defines rebalancing behavior of a Kafka cluster.
45
46
  Structure is documented below.
47
+ :param pulumi.Input['ClusterTlsConfigArgs'] tls_config: TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
48
+ Structure is documented below.
46
49
  """
47
50
  pulumi.set(__self__, "capacity_config", capacity_config)
48
51
  pulumi.set(__self__, "cluster_id", cluster_id)
@@ -54,6 +57,8 @@ class ClusterArgs:
54
57
  pulumi.set(__self__, "project", project)
55
58
  if rebalance_config is not None:
56
59
  pulumi.set(__self__, "rebalance_config", rebalance_config)
60
+ if tls_config is not None:
61
+ pulumi.set(__self__, "tls_config", tls_config)
57
62
 
58
63
  @_builtins.property
59
64
  @pulumi.getter(name="capacityConfig")
@@ -145,6 +150,19 @@ class ClusterArgs:
145
150
  def rebalance_config(self, value: Optional[pulumi.Input['ClusterRebalanceConfigArgs']]):
146
151
  pulumi.set(self, "rebalance_config", value)
147
152
 
153
+ @_builtins.property
154
+ @pulumi.getter(name="tlsConfig")
155
+ def tls_config(self) -> Optional[pulumi.Input['ClusterTlsConfigArgs']]:
156
+ """
157
+ TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
158
+ Structure is documented below.
159
+ """
160
+ return pulumi.get(self, "tls_config")
161
+
162
+ @tls_config.setter
163
+ def tls_config(self, value: Optional[pulumi.Input['ClusterTlsConfigArgs']]):
164
+ pulumi.set(self, "tls_config", value)
165
+
148
166
 
149
167
  @pulumi.input_type
150
168
  class _ClusterState:
@@ -161,6 +179,7 @@ class _ClusterState:
161
179
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
162
180
  rebalance_config: Optional[pulumi.Input['ClusterRebalanceConfigArgs']] = None,
163
181
  state: Optional[pulumi.Input[_builtins.str]] = None,
182
+ tls_config: Optional[pulumi.Input['ClusterTlsConfigArgs']] = None,
164
183
  update_time: Optional[pulumi.Input[_builtins.str]] = None):
165
184
  """
166
185
  Input properties used for looking up and filtering Cluster resources.
@@ -183,6 +202,8 @@ class _ClusterState:
183
202
  :param pulumi.Input['ClusterRebalanceConfigArgs'] rebalance_config: Defines rebalancing behavior of a Kafka cluster.
184
203
  Structure is documented below.
185
204
  :param pulumi.Input[_builtins.str] state: The current state of the cluster. Possible values: `STATE_UNSPECIFIED`, `CREATING`, `ACTIVE`, `DELETING`.
205
+ :param pulumi.Input['ClusterTlsConfigArgs'] tls_config: TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
206
+ Structure is documented below.
186
207
  :param pulumi.Input[_builtins.str] update_time: The time when the cluster was last updated.
187
208
  """
188
209
  if capacity_config is not None:
@@ -209,6 +230,8 @@ class _ClusterState:
209
230
  pulumi.set(__self__, "rebalance_config", rebalance_config)
210
231
  if state is not None:
211
232
  pulumi.set(__self__, "state", state)
233
+ if tls_config is not None:
234
+ pulumi.set(__self__, "tls_config", tls_config)
212
235
  if update_time is not None:
213
236
  pulumi.set(__self__, "update_time", update_time)
214
237
 
@@ -363,6 +386,19 @@ class _ClusterState:
363
386
  def state(self, value: Optional[pulumi.Input[_builtins.str]]):
364
387
  pulumi.set(self, "state", value)
365
388
 
389
+ @_builtins.property
390
+ @pulumi.getter(name="tlsConfig")
391
+ def tls_config(self) -> Optional[pulumi.Input['ClusterTlsConfigArgs']]:
392
+ """
393
+ TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
394
+ Structure is documented below.
395
+ """
396
+ return pulumi.get(self, "tls_config")
397
+
398
+ @tls_config.setter
399
+ def tls_config(self, value: Optional[pulumi.Input['ClusterTlsConfigArgs']]):
400
+ pulumi.set(self, "tls_config", value)
401
+
366
402
  @_builtins.property
367
403
  @pulumi.getter(name="updateTime")
368
404
  def update_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -389,6 +425,7 @@ class Cluster(pulumi.CustomResource):
389
425
  location: Optional[pulumi.Input[_builtins.str]] = None,
390
426
  project: Optional[pulumi.Input[_builtins.str]] = None,
391
427
  rebalance_config: Optional[pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']]] = None,
428
+ tls_config: Optional[pulumi.Input[Union['ClusterTlsConfigArgs', 'ClusterTlsConfigArgsDict']]] = None,
392
429
  __props__=None):
393
430
  """
394
431
  A Managed Service for Apache Kafka cluster. Apache Kafka is a trademark owned by the Apache Software Foundation.
@@ -423,6 +460,44 @@ class Cluster(pulumi.CustomResource):
423
460
  "key": "value",
424
461
  })
425
462
  ```
463
+ ### Managedkafka Cluster Mtls
464
+
465
+ ```python
466
+ import pulumi
467
+ import pulumi_gcp as gcp
468
+
469
+ ca_pool = gcp.certificateauthority.CaPool("ca_pool",
470
+ name="my-ca-pool",
471
+ location="us-central1",
472
+ tier="ENTERPRISE",
473
+ publishing_options={
474
+ "publish_ca_cert": True,
475
+ "publish_crl": True,
476
+ })
477
+ project = gcp.organizations.get_project()
478
+ example = gcp.managedkafka.Cluster("example",
479
+ cluster_id="my-cluster",
480
+ location="us-central1",
481
+ capacity_config={
482
+ "vcpu_count": "3",
483
+ "memory_bytes": "3221225472",
484
+ },
485
+ gcp_config={
486
+ "access_config": {
487
+ "network_configs": [{
488
+ "subnet": f"projects/{project.number}/regions/us-central1/subnetworks/default",
489
+ }],
490
+ },
491
+ },
492
+ tls_config={
493
+ "trust_config": {
494
+ "cas_configs": [{
495
+ "ca_pool": ca_pool.id,
496
+ }],
497
+ },
498
+ "ssl_principal_mapping_rules": "RULE:pattern/replacement/L,DEFAULT",
499
+ })
500
+ ```
426
501
  ### Managedkafka Cluster Cmek
427
502
 
428
503
  ```python
@@ -499,6 +574,8 @@ class Cluster(pulumi.CustomResource):
499
574
  If it is not provided, the provider project is used.
500
575
  :param pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']] rebalance_config: Defines rebalancing behavior of a Kafka cluster.
501
576
  Structure is documented below.
577
+ :param pulumi.Input[Union['ClusterTlsConfigArgs', 'ClusterTlsConfigArgsDict']] tls_config: TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
578
+ Structure is documented below.
502
579
  """
503
580
  ...
504
581
  @overload
@@ -539,6 +616,44 @@ class Cluster(pulumi.CustomResource):
539
616
  "key": "value",
540
617
  })
541
618
  ```
619
+ ### Managedkafka Cluster Mtls
620
+
621
+ ```python
622
+ import pulumi
623
+ import pulumi_gcp as gcp
624
+
625
+ ca_pool = gcp.certificateauthority.CaPool("ca_pool",
626
+ name="my-ca-pool",
627
+ location="us-central1",
628
+ tier="ENTERPRISE",
629
+ publishing_options={
630
+ "publish_ca_cert": True,
631
+ "publish_crl": True,
632
+ })
633
+ project = gcp.organizations.get_project()
634
+ example = gcp.managedkafka.Cluster("example",
635
+ cluster_id="my-cluster",
636
+ location="us-central1",
637
+ capacity_config={
638
+ "vcpu_count": "3",
639
+ "memory_bytes": "3221225472",
640
+ },
641
+ gcp_config={
642
+ "access_config": {
643
+ "network_configs": [{
644
+ "subnet": f"projects/{project.number}/regions/us-central1/subnetworks/default",
645
+ }],
646
+ },
647
+ },
648
+ tls_config={
649
+ "trust_config": {
650
+ "cas_configs": [{
651
+ "ca_pool": ca_pool.id,
652
+ }],
653
+ },
654
+ "ssl_principal_mapping_rules": "RULE:pattern/replacement/L,DEFAULT",
655
+ })
656
+ ```
542
657
  ### Managedkafka Cluster Cmek
543
658
 
544
659
  ```python
@@ -622,6 +737,7 @@ class Cluster(pulumi.CustomResource):
622
737
  location: Optional[pulumi.Input[_builtins.str]] = None,
623
738
  project: Optional[pulumi.Input[_builtins.str]] = None,
624
739
  rebalance_config: Optional[pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']]] = None,
740
+ tls_config: Optional[pulumi.Input[Union['ClusterTlsConfigArgs', 'ClusterTlsConfigArgsDict']]] = None,
625
741
  __props__=None):
626
742
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
627
743
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -646,6 +762,7 @@ class Cluster(pulumi.CustomResource):
646
762
  __props__.__dict__["location"] = location
647
763
  __props__.__dict__["project"] = project
648
764
  __props__.__dict__["rebalance_config"] = rebalance_config
765
+ __props__.__dict__["tls_config"] = tls_config
649
766
  __props__.__dict__["create_time"] = None
650
767
  __props__.__dict__["effective_labels"] = None
651
768
  __props__.__dict__["name"] = None
@@ -676,6 +793,7 @@ class Cluster(pulumi.CustomResource):
676
793
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
677
794
  rebalance_config: Optional[pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']]] = None,
678
795
  state: Optional[pulumi.Input[_builtins.str]] = None,
796
+ tls_config: Optional[pulumi.Input[Union['ClusterTlsConfigArgs', 'ClusterTlsConfigArgsDict']]] = None,
679
797
  update_time: Optional[pulumi.Input[_builtins.str]] = None) -> 'Cluster':
680
798
  """
681
799
  Get an existing Cluster resource's state with the given name, id, and optional extra
@@ -703,6 +821,8 @@ class Cluster(pulumi.CustomResource):
703
821
  :param pulumi.Input[Union['ClusterRebalanceConfigArgs', 'ClusterRebalanceConfigArgsDict']] rebalance_config: Defines rebalancing behavior of a Kafka cluster.
704
822
  Structure is documented below.
705
823
  :param pulumi.Input[_builtins.str] state: The current state of the cluster. Possible values: `STATE_UNSPECIFIED`, `CREATING`, `ACTIVE`, `DELETING`.
824
+ :param pulumi.Input[Union['ClusterTlsConfigArgs', 'ClusterTlsConfigArgsDict']] tls_config: TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
825
+ Structure is documented below.
706
826
  :param pulumi.Input[_builtins.str] update_time: The time when the cluster was last updated.
707
827
  """
708
828
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -721,6 +841,7 @@ class Cluster(pulumi.CustomResource):
721
841
  __props__.__dict__["pulumi_labels"] = pulumi_labels
722
842
  __props__.__dict__["rebalance_config"] = rebalance_config
723
843
  __props__.__dict__["state"] = state
844
+ __props__.__dict__["tls_config"] = tls_config
724
845
  __props__.__dict__["update_time"] = update_time
725
846
  return Cluster(resource_name, opts=opts, __props__=__props__)
726
847
 
@@ -827,6 +948,15 @@ class Cluster(pulumi.CustomResource):
827
948
  """
828
949
  return pulumi.get(self, "state")
829
950
 
951
+ @_builtins.property
952
+ @pulumi.getter(name="tlsConfig")
953
+ def tls_config(self) -> pulumi.Output['outputs.ClusterTlsConfig']:
954
+ """
955
+ TLS configuration for the Kafka cluster. This is used to configure mTLS authentication. To clear our a TLS configuration that has been previously set, please explicitly add an empty `tls_config` block.
956
+ Structure is documented below.
957
+ """
958
+ return pulumi.get(self, "tls_config")
959
+
830
960
  @_builtins.property
831
961
  @pulumi.getter(name="updateTime")
832
962
  def update_time(self) -> pulumi.Output[_builtins.str]:
@@ -396,8 +396,8 @@ class ConnectCluster(pulumi.CustomResource):
396
396
  import pulumi_time as time
397
397
 
398
398
  project = gcp.organizations.Project("project",
399
- project_id="tf-test_62793",
400
- name="tf-test_55438",
399
+ project_id="tf-test_32706",
400
+ name="tf-test_49082",
401
401
  org_id="123456789",
402
402
  billing_account="000000-0000000-0000000-000000",
403
403
  deletion_policy="DELETE")
@@ -524,8 +524,8 @@ class ConnectCluster(pulumi.CustomResource):
524
524
  import pulumi_time as time
525
525
 
526
526
  project = gcp.organizations.Project("project",
527
- project_id="tf-test_62793",
528
- name="tf-test_55438",
527
+ project_id="tf-test_32706",
528
+ name="tf-test_49082",
529
529
  org_id="123456789",
530
530
  billing_account="000000-0000000-0000000-000000",
531
531
  deletion_policy="DELETE")
@@ -287,8 +287,8 @@ class Connector(pulumi.CustomResource):
287
287
  import pulumi_time as time
288
288
 
289
289
  project = gcp.organizations.Project("project",
290
- project_id="tf-test_32706",
291
- name="tf-test_49082",
290
+ project_id="tf-test_60365",
291
+ name="tf-test_80215",
292
292
  org_id="123456789",
293
293
  billing_account="000000-0000000-0000000-000000",
294
294
  deletion_policy="DELETE")
@@ -443,8 +443,8 @@ class Connector(pulumi.CustomResource):
443
443
  import pulumi_time as time
444
444
 
445
445
  project = gcp.organizations.Project("project",
446
- project_id="tf-test_32706",
447
- name="tf-test_49082",
446
+ project_id="tf-test_60365",
447
+ name="tf-test_80215",
448
448
  org_id="123456789",
449
449
  billing_account="000000-0000000-0000000-000000",
450
450
  deletion_policy="DELETE")