pulumi-gcp 8.32.0a1747377897__py3-none-any.whl → 8.32.0a1747834582__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 (256) hide show
  1. pulumi_gcp/__init__.py +88 -0
  2. pulumi_gcp/accesscontextmanager/authorized_orgs_desc.py +2 -2
  3. pulumi_gcp/apigateway/api_config_iam_binding.py +13 -0
  4. pulumi_gcp/apigateway/api_config_iam_member.py +13 -0
  5. pulumi_gcp/apigateway/api_config_iam_policy.py +13 -0
  6. pulumi_gcp/apigateway/api_iam_binding.py +13 -0
  7. pulumi_gcp/apigateway/api_iam_member.py +13 -0
  8. pulumi_gcp/apigateway/api_iam_policy.py +13 -0
  9. pulumi_gcp/apigateway/gateway_iam_binding.py +13 -0
  10. pulumi_gcp/apigateway/gateway_iam_member.py +13 -0
  11. pulumi_gcp/apigateway/gateway_iam_policy.py +13 -0
  12. pulumi_gcp/apigateway/get_api_config_iam_policy.py +2 -0
  13. pulumi_gcp/apigateway/get_api_iam_policy.py +2 -0
  14. pulumi_gcp/apigateway/get_gateway_iam_policy.py +2 -0
  15. pulumi_gcp/apigee/environment_iam_binding.py +27 -0
  16. pulumi_gcp/apigee/environment_iam_member.py +27 -0
  17. pulumi_gcp/apigee/environment_iam_policy.py +27 -0
  18. pulumi_gcp/apigee/get_environment_iam_policy.py +6 -0
  19. pulumi_gcp/beyondcorp/__init__.py +1 -0
  20. pulumi_gcp/beyondcorp/application.py +8 -4
  21. pulumi_gcp/beyondcorp/application_iam_binding.py +26 -0
  22. pulumi_gcp/beyondcorp/application_iam_member.py +26 -0
  23. pulumi_gcp/beyondcorp/application_iam_policy.py +26 -0
  24. pulumi_gcp/beyondcorp/get_application_iam_policy.py +4 -0
  25. pulumi_gcp/beyondcorp/get_security_gateway.py +222 -0
  26. pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +2 -0
  27. pulumi_gcp/beyondcorp/outputs.py +45 -0
  28. pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +13 -0
  29. pulumi_gcp/beyondcorp/security_gateway_iam_member.py +13 -0
  30. pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +13 -0
  31. pulumi_gcp/bigquery/__init__.py +1 -0
  32. pulumi_gcp/bigquery/connection_iam_binding.py +4 -11
  33. pulumi_gcp/bigquery/connection_iam_member.py +4 -11
  34. pulumi_gcp/bigquery/connection_iam_policy.py +4 -11
  35. pulumi_gcp/bigquery/data_transfer_config.py +2 -2
  36. pulumi_gcp/bigquery/get_connection_iam_policy.py +2 -4
  37. pulumi_gcp/bigquery/get_table_iam_policy.py +4 -0
  38. pulumi_gcp/bigquery/iam_binding.py +26 -0
  39. pulumi_gcp/bigquery/iam_member.py +26 -0
  40. pulumi_gcp/bigquery/iam_policy.py +26 -0
  41. pulumi_gcp/bigquery/row_access_policy.py +787 -0
  42. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_binding.py +7 -7
  43. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_member.py +7 -7
  44. pulumi_gcp/bigqueryanalyticshub/data_exchange_iam_policy.py +7 -7
  45. pulumi_gcp/bigqueryanalyticshub/get_data_exchange_iam_policy.py +2 -2
  46. pulumi_gcp/bigqueryanalyticshub/get_listing_iam_policy.py +2 -2
  47. pulumi_gcp/bigqueryanalyticshub/listing_iam_binding.py +7 -7
  48. pulumi_gcp/bigqueryanalyticshub/listing_iam_member.py +7 -7
  49. pulumi_gcp/bigqueryanalyticshub/listing_iam_policy.py +7 -7
  50. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +6 -6
  51. pulumi_gcp/bigquerydatapolicy/data_policy_iam_binding.py +13 -0
  52. pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py +13 -0
  53. pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py +13 -0
  54. pulumi_gcp/bigquerydatapolicy/get_iam_policy.py +2 -0
  55. pulumi_gcp/bigtable/logical_view.py +49 -0
  56. pulumi_gcp/cloudbuild/trigger.py +2 -2
  57. pulumi_gcp/clouddeploy/get_delivery_pipeline_iam_policy.py +6 -0
  58. pulumi_gcp/clouddeploy/get_target_iam_policy.py +6 -0
  59. pulumi_gcp/colab/schedule.py +2 -2
  60. pulumi_gcp/compute/_inputs.py +126 -0
  61. pulumi_gcp/compute/backend_service.py +259 -51
  62. pulumi_gcp/compute/get_backend_service.py +23 -1
  63. pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
  64. pulumi_gcp/compute/get_instance_template.py +12 -1
  65. pulumi_gcp/compute/get_network_endpoint_group.py +12 -1
  66. pulumi_gcp/compute/global_forwarding_rule.py +199 -0
  67. pulumi_gcp/compute/instance_template.py +28 -0
  68. pulumi_gcp/compute/network_endpoint_group.py +28 -0
  69. pulumi_gcp/compute/outputs.py +110 -0
  70. pulumi_gcp/compute/region_backend_service.py +58 -51
  71. pulumi_gcp/container/cluster.py +47 -0
  72. pulumi_gcp/container/get_cluster.py +12 -1
  73. pulumi_gcp/datacatalog/entry_group_iam_binding.py +34 -0
  74. pulumi_gcp/datacatalog/entry_group_iam_member.py +34 -0
  75. pulumi_gcp/datacatalog/entry_group_iam_policy.py +34 -0
  76. pulumi_gcp/datacatalog/get_entry_group_iam_policy.py +8 -0
  77. pulumi_gcp/datacatalog/get_tag_template_iam_policy.py +8 -0
  78. pulumi_gcp/datacatalog/get_taxonomy_iam_policy.py +8 -0
  79. pulumi_gcp/datacatalog/tag_template_iam_binding.py +34 -0
  80. pulumi_gcp/datacatalog/tag_template_iam_member.py +34 -0
  81. pulumi_gcp/datacatalog/tag_template_iam_policy.py +34 -0
  82. pulumi_gcp/datacatalog/taxonomy_iam_binding.py +34 -0
  83. pulumi_gcp/datacatalog/taxonomy_iam_member.py +34 -0
  84. pulumi_gcp/datacatalog/taxonomy_iam_policy.py +34 -0
  85. pulumi_gcp/dataplex/__init__.py +5 -0
  86. pulumi_gcp/dataplex/_inputs.py +98 -0
  87. pulumi_gcp/dataplex/aspect_type_iam_binding.py +13 -0
  88. pulumi_gcp/dataplex/aspect_type_iam_member.py +13 -0
  89. pulumi_gcp/dataplex/aspect_type_iam_policy.py +13 -0
  90. pulumi_gcp/dataplex/asset_iam_binding.py +53 -0
  91. pulumi_gcp/dataplex/asset_iam_member.py +53 -0
  92. pulumi_gcp/dataplex/asset_iam_policy.py +53 -0
  93. pulumi_gcp/dataplex/datascan_iam_binding.py +13 -0
  94. pulumi_gcp/dataplex/datascan_iam_member.py +13 -0
  95. pulumi_gcp/dataplex/datascan_iam_policy.py +13 -0
  96. pulumi_gcp/dataplex/entry_group_iam_binding.py +13 -0
  97. pulumi_gcp/dataplex/entry_group_iam_member.py +13 -0
  98. pulumi_gcp/dataplex/entry_group_iam_policy.py +13 -0
  99. pulumi_gcp/dataplex/entry_type_iam_binding.py +13 -0
  100. pulumi_gcp/dataplex/entry_type_iam_member.py +13 -0
  101. pulumi_gcp/dataplex/entry_type_iam_policy.py +13 -0
  102. pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +2 -0
  103. pulumi_gcp/dataplex/get_asset_iam_policy.py +10 -0
  104. pulumi_gcp/dataplex/get_datascan_iam_policy.py +2 -0
  105. pulumi_gcp/dataplex/get_entry_group_iam_policy.py +2 -0
  106. pulumi_gcp/dataplex/get_entry_type_iam_policy.py +2 -0
  107. pulumi_gcp/dataplex/get_glossary_iam_policy.py +185 -0
  108. pulumi_gcp/dataplex/get_lake_iam_policy.py +6 -0
  109. pulumi_gcp/dataplex/get_task_iam_policy.py +2 -0
  110. pulumi_gcp/dataplex/get_zone_iam_policy.py +8 -0
  111. pulumi_gcp/dataplex/glossary.py +772 -0
  112. pulumi_gcp/dataplex/glossary_iam_binding.py +837 -0
  113. pulumi_gcp/dataplex/glossary_iam_member.py +837 -0
  114. pulumi_gcp/dataplex/glossary_iam_policy.py +676 -0
  115. pulumi_gcp/dataplex/lake_iam_binding.py +27 -0
  116. pulumi_gcp/dataplex/lake_iam_member.py +27 -0
  117. pulumi_gcp/dataplex/lake_iam_policy.py +27 -0
  118. pulumi_gcp/dataplex/outputs.py +56 -0
  119. pulumi_gcp/dataplex/task_iam_binding.py +13 -0
  120. pulumi_gcp/dataplex/task_iam_member.py +13 -0
  121. pulumi_gcp/dataplex/task_iam_policy.py +13 -0
  122. pulumi_gcp/dataplex/zone_iam_binding.py +40 -0
  123. pulumi_gcp/dataplex/zone_iam_member.py +40 -0
  124. pulumi_gcp/dataplex/zone_iam_policy.py +40 -0
  125. pulumi_gcp/dataproc/autoscaling_policy_iam_binding.py +4 -25
  126. pulumi_gcp/dataproc/autoscaling_policy_iam_member.py +4 -25
  127. pulumi_gcp/dataproc/autoscaling_policy_iam_policy.py +4 -25
  128. pulumi_gcp/dataproc/get_autoscaling_policy_iam_policy.py +2 -8
  129. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +8 -0
  130. pulumi_gcp/dataproc/get_metastore_federation_iam_policy.py +2 -0
  131. pulumi_gcp/dataproc/get_metastore_service_iam_policy.py +2 -0
  132. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +10 -0
  133. pulumi_gcp/dataproc/metastore_database_iam_binding.py +40 -0
  134. pulumi_gcp/dataproc/metastore_database_iam_member.py +40 -0
  135. pulumi_gcp/dataproc/metastore_database_iam_policy.py +40 -0
  136. pulumi_gcp/dataproc/metastore_federation_iam_binding.py +13 -0
  137. pulumi_gcp/dataproc/metastore_federation_iam_member.py +13 -0
  138. pulumi_gcp/dataproc/metastore_federation_iam_policy.py +13 -0
  139. pulumi_gcp/dataproc/metastore_service_iam_binding.py +13 -0
  140. pulumi_gcp/dataproc/metastore_service_iam_member.py +13 -0
  141. pulumi_gcp/dataproc/metastore_service_iam_policy.py +13 -0
  142. pulumi_gcp/dataproc/metastore_table_iam_binding.py +53 -0
  143. pulumi_gcp/dataproc/metastore_table_iam_member.py +53 -0
  144. pulumi_gcp/dataproc/metastore_table_iam_policy.py +53 -0
  145. pulumi_gcp/diagflow/_inputs.py +56 -0
  146. pulumi_gcp/diagflow/cx_agent.py +60 -0
  147. pulumi_gcp/diagflow/cx_flow.py +2 -0
  148. pulumi_gcp/diagflow/entity_type.py +2 -2
  149. pulumi_gcp/diagflow/outputs.py +35 -0
  150. pulumi_gcp/edgecontainer/node_pool.py +2 -2
  151. pulumi_gcp/endpoints/consumers_iam_binding.py +26 -0
  152. pulumi_gcp/endpoints/consumers_iam_member.py +26 -0
  153. pulumi_gcp/endpoints/consumers_iam_policy.py +26 -0
  154. pulumi_gcp/endpoints/get_service_consumers_iam_policy.py +8 -0
  155. pulumi_gcp/endpoints/get_service_iam_policy.py +6 -0
  156. pulumi_gcp/endpoints/service_iam_binding.py +13 -0
  157. pulumi_gcp/endpoints/service_iam_member.py +13 -0
  158. pulumi_gcp/endpoints/service_iam_policy.py +13 -0
  159. pulumi_gcp/firebase/__init__.py +3 -0
  160. pulumi_gcp/firebase/_inputs.py +1527 -0
  161. pulumi_gcp/firebase/app_hosting_backend.py +104 -0
  162. pulumi_gcp/firebase/app_hosting_default_domain.py +721 -0
  163. pulumi_gcp/firebase/app_hosting_domain.py +796 -0
  164. pulumi_gcp/firebase/app_hosting_traffic.py +914 -0
  165. pulumi_gcp/firebase/extensions_instance.py +4 -4
  166. pulumi_gcp/firebase/outputs.py +1075 -0
  167. pulumi_gcp/firestore/database.py +9 -0
  168. pulumi_gcp/gemini/get_repository_group_iam_policy.py +4 -0
  169. pulumi_gcp/gemini/repository_group_iam_binding.py +26 -0
  170. pulumi_gcp/gemini/repository_group_iam_member.py +26 -0
  171. pulumi_gcp/gemini/repository_group_iam_policy.py +26 -0
  172. pulumi_gcp/gkebackup/backup_channel.py +9 -9
  173. pulumi_gcp/gkebackup/restore_channel.py +9 -9
  174. pulumi_gcp/gkehub/get_membership_iam_policy.py +2 -0
  175. pulumi_gcp/gkehub/get_scope_iam_policy.py +2 -0
  176. pulumi_gcp/gkehub/membership_iam_binding.py +13 -0
  177. pulumi_gcp/gkehub/membership_iam_member.py +13 -0
  178. pulumi_gcp/gkehub/membership_iam_policy.py +13 -0
  179. pulumi_gcp/gkehub/scope_iam_binding.py +13 -0
  180. pulumi_gcp/gkehub/scope_iam_member.py +13 -0
  181. pulumi_gcp/gkehub/scope_iam_policy.py +13 -0
  182. pulumi_gcp/iam/__init__.py +4 -0
  183. pulumi_gcp/iam/_inputs.py +432 -0
  184. pulumi_gcp/iam/get_workload_identity_pool.py +35 -1
  185. pulumi_gcp/iam/get_workload_identity_pool_iam_policy.py +156 -0
  186. pulumi_gcp/iam/oauth_client_credential.py +6 -0
  187. pulumi_gcp/iam/outputs.py +510 -0
  188. pulumi_gcp/iam/workload_identity_pool.py +446 -24
  189. pulumi_gcp/iam/workload_identity_pool_iam_binding.py +539 -0
  190. pulumi_gcp/iam/workload_identity_pool_iam_member.py +539 -0
  191. pulumi_gcp/iam/workload_identity_pool_iam_policy.py +358 -0
  192. pulumi_gcp/iap/app_engine_service_iam_binding.py +14 -14
  193. pulumi_gcp/iap/app_engine_service_iam_member.py +14 -14
  194. pulumi_gcp/iap/app_engine_service_iam_policy.py +14 -14
  195. pulumi_gcp/iap/app_engine_version_iam_binding.py +14 -14
  196. pulumi_gcp/iap/app_engine_version_iam_member.py +14 -14
  197. pulumi_gcp/iap/app_engine_version_iam_policy.py +14 -14
  198. pulumi_gcp/iap/get_app_engine_service_iam_policy.py +4 -4
  199. pulumi_gcp/iap/get_app_engine_version_iam_policy.py +4 -4
  200. pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +2 -0
  201. pulumi_gcp/iap/get_tunnel_instance_iam_policy.py +6 -0
  202. pulumi_gcp/iap/get_web_region_backend_service_iam_policy.py +6 -0
  203. pulumi_gcp/iap/get_web_type_app_engine_iam_policy.py +2 -2
  204. pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +13 -0
  205. pulumi_gcp/iap/tunnel_dest_group_iam_member.py +13 -0
  206. pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +13 -0
  207. pulumi_gcp/iap/tunnel_instance_iam_binding.py +27 -0
  208. pulumi_gcp/iap/tunnel_instance_iam_member.py +27 -0
  209. pulumi_gcp/iap/tunnel_instance_iam_policy.py +27 -0
  210. pulumi_gcp/iap/web_region_backend_service_iam_binding.py +27 -0
  211. pulumi_gcp/iap/web_region_backend_service_iam_member.py +27 -0
  212. pulumi_gcp/iap/web_region_backend_service_iam_policy.py +27 -0
  213. pulumi_gcp/iap/web_type_app_enging_iam_binding.py +7 -7
  214. pulumi_gcp/iap/web_type_app_enging_iam_member.py +7 -7
  215. pulumi_gcp/iap/web_type_app_enging_iam_policy.py +7 -7
  216. pulumi_gcp/lustre/__init__.py +1 -0
  217. pulumi_gcp/lustre/get_instance.py +280 -0
  218. pulumi_gcp/lustre/instance.py +12 -0
  219. pulumi_gcp/netapp/backup.py +2 -2
  220. pulumi_gcp/networksecurity/intercept_deployment.py +10 -0
  221. pulumi_gcp/networksecurity/intercept_deployment_group.py +8 -0
  222. pulumi_gcp/networksecurity/intercept_endpoint_group.py +12 -0
  223. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +16 -0
  224. pulumi_gcp/pulumi-plugin.json +1 -1
  225. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +2 -0
  226. pulumi_gcp/secretmanager/get_secret_iam_policy.py +2 -0
  227. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +13 -0
  228. pulumi_gcp/secretmanager/regional_secret_iam_member.py +13 -0
  229. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +13 -0
  230. pulumi_gcp/secretmanager/secret_iam_binding.py +13 -0
  231. pulumi_gcp/secretmanager/secret_iam_member.py +13 -0
  232. pulumi_gcp/secretmanager/secret_iam_policy.py +13 -0
  233. pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +2 -4
  234. pulumi_gcp/securesourcemanager/get_repository_iam_policy.py +2 -4
  235. pulumi_gcp/securesourcemanager/repository_iam_binding.py +4 -11
  236. pulumi_gcp/securesourcemanager/repository_iam_member.py +4 -11
  237. pulumi_gcp/securesourcemanager/repository_iam_policy.py +4 -11
  238. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +2 -2
  239. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +2 -2
  240. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +13 -0
  241. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +13 -0
  242. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +13 -0
  243. pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +2 -0
  244. pulumi_gcp/vmwareengine/external_address.py +4 -4
  245. pulumi_gcp/workstations/get_workstation_config_iam_policy.py +6 -0
  246. pulumi_gcp/workstations/get_workstation_iam_policy.py +10 -0
  247. pulumi_gcp/workstations/workstation_config_iam_binding.py +33 -0
  248. pulumi_gcp/workstations/workstation_config_iam_member.py +33 -0
  249. pulumi_gcp/workstations/workstation_config_iam_policy.py +33 -0
  250. pulumi_gcp/workstations/workstation_iam_binding.py +53 -0
  251. pulumi_gcp/workstations/workstation_iam_member.py +53 -0
  252. pulumi_gcp/workstations/workstation_iam_policy.py +53 -0
  253. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/METADATA +1 -1
  254. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/RECORD +256 -241
  255. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/WHEEL +1 -1
  256. {pulumi_gcp-8.32.0a1747377897.dist-info → pulumi_gcp-8.32.0a1747834582.dist-info}/top_level.txt +0 -0
@@ -30,8 +30,7 @@ class ConnectionIamBindingArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a ConnectionIamBinding resource.
33
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
34
- Used to find the parent resource to bind the IAM policy to
33
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
35
34
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
36
35
  Each entry can have one of the following values:
37
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -72,7 +71,6 @@ class ConnectionIamBindingArgs:
72
71
  @pulumi.getter(name="connectionId")
73
72
  def connection_id(self) -> pulumi.Input[builtins.str]:
74
73
  """
75
- Optional connection id that should be assigned to the created connection.
76
74
  Used to find the parent resource to bind the IAM policy to
77
75
  """
78
76
  return pulumi.get(self, "connection_id")
@@ -172,8 +170,7 @@ class _ConnectionIamBindingState:
172
170
  role: Optional[pulumi.Input[builtins.str]] = None):
173
171
  """
174
172
  Input properties used for looking up and filtering ConnectionIamBinding resources.
175
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
176
- Used to find the parent resource to bind the IAM policy to
173
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
177
174
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
178
175
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
179
176
  Cloud SQL instance must be in the same location as the connection
@@ -229,7 +226,6 @@ class _ConnectionIamBindingState:
229
226
  @pulumi.getter(name="connectionId")
230
227
  def connection_id(self) -> Optional[pulumi.Input[builtins.str]]:
231
228
  """
232
- Optional connection id that should be assigned to the created connection.
233
229
  Used to find the parent resource to bind the IAM policy to
234
230
  """
235
231
  return pulumi.get(self, "connection_id")
@@ -497,8 +493,7 @@ class ConnectionIamBinding(pulumi.CustomResource):
497
493
 
498
494
  :param str resource_name: The name of the resource.
499
495
  :param pulumi.ResourceOptions opts: Options for the resource.
500
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
501
- Used to find the parent resource to bind the IAM policy to
496
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
502
497
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
503
498
  Cloud SQL instance must be in the same location as the connection
504
499
  with following exceptions: Cloud SQL us-central1 maps to BigQuery US, Cloud SQL europe-west1 maps to BigQuery EU.
@@ -760,8 +755,7 @@ class ConnectionIamBinding(pulumi.CustomResource):
760
755
  :param str resource_name: The unique name of the resulting resource.
761
756
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
762
757
  :param pulumi.ResourceOptions opts: Options for the resource.
763
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
764
- Used to find the parent resource to bind the IAM policy to
758
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
765
759
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
766
760
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
767
761
  Cloud SQL instance must be in the same location as the connection
@@ -811,7 +805,6 @@ class ConnectionIamBinding(pulumi.CustomResource):
811
805
  @pulumi.getter(name="connectionId")
812
806
  def connection_id(self) -> pulumi.Output[builtins.str]:
813
807
  """
814
- Optional connection id that should be assigned to the created connection.
815
808
  Used to find the parent resource to bind the IAM policy to
816
809
  """
817
810
  return pulumi.get(self, "connection_id")
@@ -30,8 +30,7 @@ class ConnectionIamMemberArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a ConnectionIamMember resource.
33
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
34
- Used to find the parent resource to bind the IAM policy to
33
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
35
34
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
36
35
  Each entry can have one of the following values:
37
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -72,7 +71,6 @@ class ConnectionIamMemberArgs:
72
71
  @pulumi.getter(name="connectionId")
73
72
  def connection_id(self) -> pulumi.Input[builtins.str]:
74
73
  """
75
- Optional connection id that should be assigned to the created connection.
76
74
  Used to find the parent resource to bind the IAM policy to
77
75
  """
78
76
  return pulumi.get(self, "connection_id")
@@ -172,8 +170,7 @@ class _ConnectionIamMemberState:
172
170
  role: Optional[pulumi.Input[builtins.str]] = None):
173
171
  """
174
172
  Input properties used for looking up and filtering ConnectionIamMember resources.
175
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
176
- Used to find the parent resource to bind the IAM policy to
173
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
177
174
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
178
175
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
179
176
  Cloud SQL instance must be in the same location as the connection
@@ -229,7 +226,6 @@ class _ConnectionIamMemberState:
229
226
  @pulumi.getter(name="connectionId")
230
227
  def connection_id(self) -> Optional[pulumi.Input[builtins.str]]:
231
228
  """
232
- Optional connection id that should be assigned to the created connection.
233
229
  Used to find the parent resource to bind the IAM policy to
234
230
  """
235
231
  return pulumi.get(self, "connection_id")
@@ -497,8 +493,7 @@ class ConnectionIamMember(pulumi.CustomResource):
497
493
 
498
494
  :param str resource_name: The name of the resource.
499
495
  :param pulumi.ResourceOptions opts: Options for the resource.
500
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
501
- Used to find the parent resource to bind the IAM policy to
496
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
502
497
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
503
498
  Cloud SQL instance must be in the same location as the connection
504
499
  with following exceptions: Cloud SQL us-central1 maps to BigQuery US, Cloud SQL europe-west1 maps to BigQuery EU.
@@ -760,8 +755,7 @@ class ConnectionIamMember(pulumi.CustomResource):
760
755
  :param str resource_name: The unique name of the resulting resource.
761
756
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
762
757
  :param pulumi.ResourceOptions opts: Options for the resource.
763
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
764
- Used to find the parent resource to bind the IAM policy to
758
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
765
759
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
766
760
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
767
761
  Cloud SQL instance must be in the same location as the connection
@@ -811,7 +805,6 @@ class ConnectionIamMember(pulumi.CustomResource):
811
805
  @pulumi.getter(name="connectionId")
812
806
  def connection_id(self) -> pulumi.Output[builtins.str]:
813
807
  """
814
- Optional connection id that should be assigned to the created connection.
815
808
  Used to find the parent resource to bind the IAM policy to
816
809
  """
817
810
  return pulumi.get(self, "connection_id")
@@ -26,8 +26,7 @@ class ConnectionIamPolicyArgs:
26
26
  project: Optional[pulumi.Input[builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a ConnectionIamPolicy resource.
29
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
30
- Used to find the parent resource to bind the IAM policy to
29
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
31
30
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
32
31
  a `organizations_get_iam_policy` data source.
33
32
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
@@ -53,7 +52,6 @@ class ConnectionIamPolicyArgs:
53
52
  @pulumi.getter(name="connectionId")
54
53
  def connection_id(self) -> pulumi.Input[builtins.str]:
55
54
  """
56
- Optional connection id that should be assigned to the created connection.
57
55
  Used to find the parent resource to bind the IAM policy to
58
56
  """
59
57
  return pulumi.get(self, "connection_id")
@@ -119,8 +117,7 @@ class _ConnectionIamPolicyState:
119
117
  project: Optional[pulumi.Input[builtins.str]] = None):
120
118
  """
121
119
  Input properties used for looking up and filtering ConnectionIamPolicy resources.
122
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
123
- Used to find the parent resource to bind the IAM policy to
120
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
124
121
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
125
122
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
126
123
  Cloud SQL instance must be in the same location as the connection
@@ -151,7 +148,6 @@ class _ConnectionIamPolicyState:
151
148
  @pulumi.getter(name="connectionId")
152
149
  def connection_id(self) -> Optional[pulumi.Input[builtins.str]]:
153
150
  """
154
- Optional connection id that should be assigned to the created connection.
155
151
  Used to find the parent resource to bind the IAM policy to
156
152
  """
157
153
  return pulumi.get(self, "connection_id")
@@ -394,8 +390,7 @@ class ConnectionIamPolicy(pulumi.CustomResource):
394
390
 
395
391
  :param str resource_name: The name of the resource.
396
392
  :param pulumi.ResourceOptions opts: Options for the resource.
397
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
398
- Used to find the parent resource to bind the IAM policy to
393
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
399
394
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
400
395
  Cloud SQL instance must be in the same location as the connection
401
396
  with following exceptions: Cloud SQL us-central1 maps to BigQuery US, Cloud SQL europe-west1 maps to BigQuery EU.
@@ -637,8 +632,7 @@ class ConnectionIamPolicy(pulumi.CustomResource):
637
632
  :param str resource_name: The unique name of the resulting resource.
638
633
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
639
634
  :param pulumi.ResourceOptions opts: Options for the resource.
640
- :param pulumi.Input[builtins.str] connection_id: Optional connection id that should be assigned to the created connection.
641
- Used to find the parent resource to bind the IAM policy to
635
+ :param pulumi.Input[builtins.str] connection_id: Used to find the parent resource to bind the IAM policy to
642
636
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
643
637
  :param pulumi.Input[builtins.str] location: The geographic location where the connection should reside.
644
638
  Cloud SQL instance must be in the same location as the connection
@@ -669,7 +663,6 @@ class ConnectionIamPolicy(pulumi.CustomResource):
669
663
  @pulumi.getter(name="connectionId")
670
664
  def connection_id(self) -> pulumi.Output[builtins.str]:
671
665
  """
672
- Optional connection id that should be assigned to the created connection.
673
666
  Used to find the parent resource to bind the IAM policy to
674
667
  """
675
668
  return pulumi.get(self, "connection_id")
@@ -759,7 +759,7 @@ class DataTransferConfig(pulumi.CustomResource):
759
759
  name="example-key",
760
760
  key_ring=key_ring.id)
761
761
  query_config_cmek = gcp.bigquery.DataTransferConfig("query_config_cmek",
762
- display_name="",
762
+ display_name="display-name",
763
763
  location="asia-northeast1",
764
764
  data_source_id="scheduled_query",
765
765
  schedule="first sunday of quarter 00:00",
@@ -960,7 +960,7 @@ class DataTransferConfig(pulumi.CustomResource):
960
960
  name="example-key",
961
961
  key_ring=key_ring.id)
962
962
  query_config_cmek = gcp.bigquery.DataTransferConfig("query_config_cmek",
963
- display_name="",
963
+ display_name="display-name",
964
964
  location="asia-northeast1",
965
965
  data_source_id="scheduled_query",
966
966
  schedule="first sunday of quarter 00:00",
@@ -121,8 +121,7 @@ def get_connection_iam_policy(connection_id: Optional[builtins.str] = None,
121
121
  ```
122
122
 
123
123
 
124
- :param builtins.str connection_id: Optional connection id that should be assigned to the created connection.
125
- Used to find the parent resource to bind the IAM policy to
124
+ :param builtins.str connection_id: Used to find the parent resource to bind the IAM policy to
126
125
  :param builtins.str location: The geographic location where the connection should reside.
127
126
  Cloud SQL instance must be in the same location as the connection
128
127
  with following exceptions: Cloud SQL us-central1 maps to BigQuery US, Cloud SQL europe-west1 maps to BigQuery EU.
@@ -168,8 +167,7 @@ def get_connection_iam_policy_output(connection_id: Optional[pulumi.Input[builti
168
167
  ```
169
168
 
170
169
 
171
- :param builtins.str connection_id: Optional connection id that should be assigned to the created connection.
172
- Used to find the parent resource to bind the IAM policy to
170
+ :param builtins.str connection_id: Used to find the parent resource to bind the IAM policy to
173
171
  :param builtins.str location: The geographic location where the connection should reside.
174
172
  Cloud SQL instance must be in the same location as the connection
175
173
  with following exceptions: Cloud SQL us-central1 maps to BigQuery US, Cloud SQL europe-west1 maps to BigQuery EU.
@@ -121,8 +121,10 @@ def get_table_iam_policy(dataset_id: Optional[builtins.str] = None,
121
121
  ```
122
122
 
123
123
 
124
+ :param builtins.str dataset_id: Used to find the parent resource to bind the IAM policy to
124
125
  :param builtins.str project: The ID of the project in which the resource belongs.
125
126
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
127
+ :param builtins.str table_id: Used to find the parent resource to bind the IAM policy to
126
128
  """
127
129
  __args__ = dict()
128
130
  __args__['datasetId'] = dataset_id
@@ -157,8 +159,10 @@ def get_table_iam_policy_output(dataset_id: Optional[pulumi.Input[builtins.str]]
157
159
  ```
158
160
 
159
161
 
162
+ :param builtins.str dataset_id: Used to find the parent resource to bind the IAM policy to
160
163
  :param builtins.str project: The ID of the project in which the resource belongs.
161
164
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
165
+ :param builtins.str table_id: Used to find the parent resource to bind the IAM policy to
162
166
  """
163
167
  __args__ = dict()
164
168
  __args__['datasetId'] = dataset_id
@@ -30,6 +30,7 @@ class IamBindingArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a IamBinding resource.
33
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
33
34
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
34
35
  Each entry can have one of the following values:
35
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -44,6 +45,7 @@ class IamBindingArgs:
44
45
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
45
46
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
46
47
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
48
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
47
49
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
48
50
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
49
51
  """
@@ -59,6 +61,9 @@ class IamBindingArgs:
59
61
  @property
60
62
  @pulumi.getter(name="datasetId")
61
63
  def dataset_id(self) -> pulumi.Input[builtins.str]:
64
+ """
65
+ Used to find the parent resource to bind the IAM policy to
66
+ """
62
67
  return pulumi.get(self, "dataset_id")
63
68
 
64
69
  @dataset_id.setter
@@ -104,6 +109,9 @@ class IamBindingArgs:
104
109
  @property
105
110
  @pulumi.getter(name="tableId")
106
111
  def table_id(self) -> pulumi.Input[builtins.str]:
112
+ """
113
+ Used to find the parent resource to bind the IAM policy to
114
+ """
107
115
  return pulumi.get(self, "table_id")
108
116
 
109
117
  @table_id.setter
@@ -145,6 +153,7 @@ class _IamBindingState:
145
153
  table_id: Optional[pulumi.Input[builtins.str]] = None):
146
154
  """
147
155
  Input properties used for looking up and filtering IamBinding resources.
156
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
148
157
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
149
158
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
150
159
  Each entry can have one of the following values:
@@ -162,6 +171,7 @@ class _IamBindingState:
162
171
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
163
172
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
164
173
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
174
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
165
175
  """
166
176
  if condition is not None:
167
177
  pulumi.set(__self__, "condition", condition)
@@ -190,6 +200,9 @@ class _IamBindingState:
190
200
  @property
191
201
  @pulumi.getter(name="datasetId")
192
202
  def dataset_id(self) -> Optional[pulumi.Input[builtins.str]]:
203
+ """
204
+ Used to find the parent resource to bind the IAM policy to
205
+ """
193
206
  return pulumi.get(self, "dataset_id")
194
207
 
195
208
  @dataset_id.setter
@@ -260,6 +273,9 @@ class _IamBindingState:
260
273
  @property
261
274
  @pulumi.getter(name="tableId")
262
275
  def table_id(self) -> Optional[pulumi.Input[builtins.str]]:
276
+ """
277
+ Used to find the parent resource to bind the IAM policy to
278
+ """
263
279
  return pulumi.get(self, "table_id")
264
280
 
265
281
  @table_id.setter
@@ -444,6 +460,7 @@ class IamBinding(pulumi.CustomResource):
444
460
 
445
461
  :param str resource_name: The name of the resource.
446
462
  :param pulumi.ResourceOptions opts: Options for the resource.
463
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
447
464
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
448
465
  Each entry can have one of the following values:
449
466
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -460,6 +477,7 @@ class IamBinding(pulumi.CustomResource):
460
477
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
461
478
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
462
479
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
480
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
463
481
  """
464
482
  ...
465
483
  @overload
@@ -698,6 +716,7 @@ class IamBinding(pulumi.CustomResource):
698
716
  :param str resource_name: The unique name of the resulting resource.
699
717
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
700
718
  :param pulumi.ResourceOptions opts: Options for the resource.
719
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
701
720
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
702
721
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
703
722
  Each entry can have one of the following values:
@@ -715,6 +734,7 @@ class IamBinding(pulumi.CustomResource):
715
734
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
716
735
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
717
736
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
737
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
718
738
  """
719
739
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
720
740
 
@@ -737,6 +757,9 @@ class IamBinding(pulumi.CustomResource):
737
757
  @property
738
758
  @pulumi.getter(name="datasetId")
739
759
  def dataset_id(self) -> pulumi.Output[builtins.str]:
760
+ """
761
+ Used to find the parent resource to bind the IAM policy to
762
+ """
740
763
  return pulumi.get(self, "dataset_id")
741
764
 
742
765
  @property
@@ -787,5 +810,8 @@ class IamBinding(pulumi.CustomResource):
787
810
  @property
788
811
  @pulumi.getter(name="tableId")
789
812
  def table_id(self) -> pulumi.Output[builtins.str]:
813
+ """
814
+ Used to find the parent resource to bind the IAM policy to
815
+ """
790
816
  return pulumi.get(self, "table_id")
791
817
 
@@ -30,6 +30,7 @@ class IamMemberArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a IamMember resource.
33
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
33
34
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
34
35
  Each entry can have one of the following values:
35
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -44,6 +45,7 @@ class IamMemberArgs:
44
45
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
45
46
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
46
47
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
48
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
47
49
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
48
50
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
49
51
  """
@@ -59,6 +61,9 @@ class IamMemberArgs:
59
61
  @property
60
62
  @pulumi.getter(name="datasetId")
61
63
  def dataset_id(self) -> pulumi.Input[builtins.str]:
64
+ """
65
+ Used to find the parent resource to bind the IAM policy to
66
+ """
62
67
  return pulumi.get(self, "dataset_id")
63
68
 
64
69
  @dataset_id.setter
@@ -104,6 +109,9 @@ class IamMemberArgs:
104
109
  @property
105
110
  @pulumi.getter(name="tableId")
106
111
  def table_id(self) -> pulumi.Input[builtins.str]:
112
+ """
113
+ Used to find the parent resource to bind the IAM policy to
114
+ """
107
115
  return pulumi.get(self, "table_id")
108
116
 
109
117
  @table_id.setter
@@ -145,6 +153,7 @@ class _IamMemberState:
145
153
  table_id: Optional[pulumi.Input[builtins.str]] = None):
146
154
  """
147
155
  Input properties used for looking up and filtering IamMember resources.
156
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
148
157
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
149
158
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
150
159
  Each entry can have one of the following values:
@@ -162,6 +171,7 @@ class _IamMemberState:
162
171
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
163
172
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
164
173
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
174
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
165
175
  """
166
176
  if condition is not None:
167
177
  pulumi.set(__self__, "condition", condition)
@@ -190,6 +200,9 @@ class _IamMemberState:
190
200
  @property
191
201
  @pulumi.getter(name="datasetId")
192
202
  def dataset_id(self) -> Optional[pulumi.Input[builtins.str]]:
203
+ """
204
+ Used to find the parent resource to bind the IAM policy to
205
+ """
193
206
  return pulumi.get(self, "dataset_id")
194
207
 
195
208
  @dataset_id.setter
@@ -260,6 +273,9 @@ class _IamMemberState:
260
273
  @property
261
274
  @pulumi.getter(name="tableId")
262
275
  def table_id(self) -> Optional[pulumi.Input[builtins.str]]:
276
+ """
277
+ Used to find the parent resource to bind the IAM policy to
278
+ """
263
279
  return pulumi.get(self, "table_id")
264
280
 
265
281
  @table_id.setter
@@ -444,6 +460,7 @@ class IamMember(pulumi.CustomResource):
444
460
 
445
461
  :param str resource_name: The name of the resource.
446
462
  :param pulumi.ResourceOptions opts: Options for the resource.
463
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
447
464
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
448
465
  Each entry can have one of the following values:
449
466
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -460,6 +477,7 @@ class IamMember(pulumi.CustomResource):
460
477
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
461
478
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
462
479
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
480
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
463
481
  """
464
482
  ...
465
483
  @overload
@@ -698,6 +716,7 @@ class IamMember(pulumi.CustomResource):
698
716
  :param str resource_name: The unique name of the resulting resource.
699
717
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
700
718
  :param pulumi.ResourceOptions opts: Options for the resource.
719
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
701
720
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
702
721
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
703
722
  Each entry can have one of the following values:
@@ -715,6 +734,7 @@ class IamMember(pulumi.CustomResource):
715
734
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
716
735
  `bigquery.IamBinding` can be used per role. Note that custom roles must be of the format
717
736
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
737
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
718
738
  """
719
739
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
720
740
 
@@ -737,6 +757,9 @@ class IamMember(pulumi.CustomResource):
737
757
  @property
738
758
  @pulumi.getter(name="datasetId")
739
759
  def dataset_id(self) -> pulumi.Output[builtins.str]:
760
+ """
761
+ Used to find the parent resource to bind the IAM policy to
762
+ """
740
763
  return pulumi.get(self, "dataset_id")
741
764
 
742
765
  @property
@@ -787,5 +810,8 @@ class IamMember(pulumi.CustomResource):
787
810
  @property
788
811
  @pulumi.getter(name="tableId")
789
812
  def table_id(self) -> pulumi.Output[builtins.str]:
813
+ """
814
+ Used to find the parent resource to bind the IAM policy to
815
+ """
790
816
  return pulumi.get(self, "table_id")
791
817
 
@@ -26,8 +26,10 @@ class IamPolicyArgs:
26
26
  project: Optional[pulumi.Input[builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a IamPolicy resource.
29
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
29
30
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
30
31
  a `organizations_get_iam_policy` data source.
32
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
31
33
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
32
34
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
33
35
  """
@@ -40,6 +42,9 @@ class IamPolicyArgs:
40
42
  @property
41
43
  @pulumi.getter(name="datasetId")
42
44
  def dataset_id(self) -> pulumi.Input[builtins.str]:
45
+ """
46
+ Used to find the parent resource to bind the IAM policy to
47
+ """
43
48
  return pulumi.get(self, "dataset_id")
44
49
 
45
50
  @dataset_id.setter
@@ -62,6 +67,9 @@ class IamPolicyArgs:
62
67
  @property
63
68
  @pulumi.getter(name="tableId")
64
69
  def table_id(self) -> pulumi.Input[builtins.str]:
70
+ """
71
+ Used to find the parent resource to bind the IAM policy to
72
+ """
65
73
  return pulumi.get(self, "table_id")
66
74
 
67
75
  @table_id.setter
@@ -92,11 +100,13 @@ class _IamPolicyState:
92
100
  table_id: Optional[pulumi.Input[builtins.str]] = None):
93
101
  """
94
102
  Input properties used for looking up and filtering IamPolicy resources.
103
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
95
104
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
96
105
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
97
106
  a `organizations_get_iam_policy` data source.
98
107
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
99
108
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
109
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
100
110
  """
101
111
  if dataset_id is not None:
102
112
  pulumi.set(__self__, "dataset_id", dataset_id)
@@ -112,6 +122,9 @@ class _IamPolicyState:
112
122
  @property
113
123
  @pulumi.getter(name="datasetId")
114
124
  def dataset_id(self) -> Optional[pulumi.Input[builtins.str]]:
125
+ """
126
+ Used to find the parent resource to bind the IAM policy to
127
+ """
115
128
  return pulumi.get(self, "dataset_id")
116
129
 
117
130
  @dataset_id.setter
@@ -159,6 +172,9 @@ class _IamPolicyState:
159
172
  @property
160
173
  @pulumi.getter(name="tableId")
161
174
  def table_id(self) -> Optional[pulumi.Input[builtins.str]]:
175
+ """
176
+ Used to find the parent resource to bind the IAM policy to
177
+ """
162
178
  return pulumi.get(self, "table_id")
163
179
 
164
180
  @table_id.setter
@@ -341,10 +357,12 @@ class IamPolicy(pulumi.CustomResource):
341
357
 
342
358
  :param str resource_name: The name of the resource.
343
359
  :param pulumi.ResourceOptions opts: Options for the resource.
360
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
344
361
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
345
362
  a `organizations_get_iam_policy` data source.
346
363
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
347
364
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
365
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
348
366
  """
349
367
  ...
350
368
  @overload
@@ -575,11 +593,13 @@ class IamPolicy(pulumi.CustomResource):
575
593
  :param str resource_name: The unique name of the resulting resource.
576
594
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
577
595
  :param pulumi.ResourceOptions opts: Options for the resource.
596
+ :param pulumi.Input[builtins.str] dataset_id: Used to find the parent resource to bind the IAM policy to
578
597
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
579
598
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
580
599
  a `organizations_get_iam_policy` data source.
581
600
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
582
601
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
602
+ :param pulumi.Input[builtins.str] table_id: Used to find the parent resource to bind the IAM policy to
583
603
  """
584
604
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
585
605
 
@@ -595,6 +615,9 @@ class IamPolicy(pulumi.CustomResource):
595
615
  @property
596
616
  @pulumi.getter(name="datasetId")
597
617
  def dataset_id(self) -> pulumi.Output[builtins.str]:
618
+ """
619
+ Used to find the parent resource to bind the IAM policy to
620
+ """
598
621
  return pulumi.get(self, "dataset_id")
599
622
 
600
623
  @property
@@ -626,5 +649,8 @@ class IamPolicy(pulumi.CustomResource):
626
649
  @property
627
650
  @pulumi.getter(name="tableId")
628
651
  def table_id(self) -> pulumi.Output[builtins.str]:
652
+ """
653
+ Used to find the parent resource to bind the IAM policy to
654
+ """
629
655
  return pulumi.get(self, "table_id")
630
656