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,7 +30,7 @@ class DataExchangeIamBindingArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a DataExchangeIamBinding resource.
33
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
33
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
34
34
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
35
35
  Each entry can have one of the following values:
36
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -66,7 +66,7 @@ class DataExchangeIamBindingArgs:
66
66
  @pulumi.getter(name="dataExchangeId")
67
67
  def data_exchange_id(self) -> pulumi.Input[builtins.str]:
68
68
  """
69
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
69
+ Used to find the parent resource to bind the IAM policy to
70
70
  """
71
71
  return pulumi.get(self, "data_exchange_id")
72
72
 
@@ -160,7 +160,7 @@ class _DataExchangeIamBindingState:
160
160
  role: Optional[pulumi.Input[builtins.str]] = None):
161
161
  """
162
162
  Input properties used for looking up and filtering DataExchangeIamBinding resources.
163
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
163
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
164
164
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
165
165
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
166
166
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -211,7 +211,7 @@ class _DataExchangeIamBindingState:
211
211
  @pulumi.getter(name="dataExchangeId")
212
212
  def data_exchange_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
213
  """
214
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
214
+ Used to find the parent resource to bind the IAM policy to
215
215
  """
216
216
  return pulumi.get(self, "data_exchange_id")
217
217
 
@@ -473,7 +473,7 @@ class DataExchangeIamBinding(pulumi.CustomResource):
473
473
 
474
474
  :param str resource_name: The name of the resource.
475
475
  :param pulumi.ResourceOptions opts: Options for the resource.
476
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
476
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
477
477
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
478
478
  Used to find the parent resource to bind the IAM policy to. If not specified,
479
479
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -730,7 +730,7 @@ class DataExchangeIamBinding(pulumi.CustomResource):
730
730
  :param str resource_name: The unique name of the resulting resource.
731
731
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
732
732
  :param pulumi.ResourceOptions opts: Options for the resource.
733
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
733
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
734
734
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
735
735
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
736
736
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -775,7 +775,7 @@ class DataExchangeIamBinding(pulumi.CustomResource):
775
775
  @pulumi.getter(name="dataExchangeId")
776
776
  def data_exchange_id(self) -> pulumi.Output[builtins.str]:
777
777
  """
778
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
778
+ Used to find the parent resource to bind the IAM policy to
779
779
  """
780
780
  return pulumi.get(self, "data_exchange_id")
781
781
 
@@ -30,7 +30,7 @@ class DataExchangeIamMemberArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a DataExchangeIamMember resource.
33
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
33
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
34
34
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
35
35
  Each entry can have one of the following values:
36
36
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -66,7 +66,7 @@ class DataExchangeIamMemberArgs:
66
66
  @pulumi.getter(name="dataExchangeId")
67
67
  def data_exchange_id(self) -> pulumi.Input[builtins.str]:
68
68
  """
69
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
69
+ Used to find the parent resource to bind the IAM policy to
70
70
  """
71
71
  return pulumi.get(self, "data_exchange_id")
72
72
 
@@ -160,7 +160,7 @@ class _DataExchangeIamMemberState:
160
160
  role: Optional[pulumi.Input[builtins.str]] = None):
161
161
  """
162
162
  Input properties used for looking up and filtering DataExchangeIamMember resources.
163
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
163
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
164
164
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
165
165
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
166
166
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -211,7 +211,7 @@ class _DataExchangeIamMemberState:
211
211
  @pulumi.getter(name="dataExchangeId")
212
212
  def data_exchange_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
213
  """
214
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
214
+ Used to find the parent resource to bind the IAM policy to
215
215
  """
216
216
  return pulumi.get(self, "data_exchange_id")
217
217
 
@@ -473,7 +473,7 @@ class DataExchangeIamMember(pulumi.CustomResource):
473
473
 
474
474
  :param str resource_name: The name of the resource.
475
475
  :param pulumi.ResourceOptions opts: Options for the resource.
476
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
476
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
477
477
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
478
478
  Used to find the parent resource to bind the IAM policy to. If not specified,
479
479
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -730,7 +730,7 @@ class DataExchangeIamMember(pulumi.CustomResource):
730
730
  :param str resource_name: The unique name of the resulting resource.
731
731
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
732
732
  :param pulumi.ResourceOptions opts: Options for the resource.
733
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
733
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
734
734
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
735
735
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
736
736
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -775,7 +775,7 @@ class DataExchangeIamMember(pulumi.CustomResource):
775
775
  @pulumi.getter(name="dataExchangeId")
776
776
  def data_exchange_id(self) -> pulumi.Output[builtins.str]:
777
777
  """
778
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
778
+ Used to find the parent resource to bind the IAM policy to
779
779
  """
780
780
  return pulumi.get(self, "data_exchange_id")
781
781
 
@@ -26,7 +26,7 @@ class DataExchangeIamPolicyArgs:
26
26
  project: Optional[pulumi.Input[builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a DataExchangeIamPolicy resource.
29
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
29
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
30
30
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
31
31
  a `organizations_get_iam_policy` data source.
32
32
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
@@ -47,7 +47,7 @@ class DataExchangeIamPolicyArgs:
47
47
  @pulumi.getter(name="dataExchangeId")
48
48
  def data_exchange_id(self) -> pulumi.Input[builtins.str]:
49
49
  """
50
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
50
+ Used to find the parent resource to bind the IAM policy to
51
51
  """
52
52
  return pulumi.get(self, "data_exchange_id")
53
53
 
@@ -107,7 +107,7 @@ class _DataExchangeIamPolicyState:
107
107
  project: Optional[pulumi.Input[builtins.str]] = None):
108
108
  """
109
109
  Input properties used for looking up and filtering DataExchangeIamPolicy resources.
110
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
110
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
111
111
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
112
112
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
113
113
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -133,7 +133,7 @@ class _DataExchangeIamPolicyState:
133
133
  @pulumi.getter(name="dataExchangeId")
134
134
  def data_exchange_id(self) -> Optional[pulumi.Input[builtins.str]]:
135
135
  """
136
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
136
+ Used to find the parent resource to bind the IAM policy to
137
137
  """
138
138
  return pulumi.get(self, "data_exchange_id")
139
139
 
@@ -370,7 +370,7 @@ class DataExchangeIamPolicy(pulumi.CustomResource):
370
370
 
371
371
  :param str resource_name: The name of the resource.
372
372
  :param pulumi.ResourceOptions opts: Options for the resource.
373
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
373
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
374
374
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
375
375
  Used to find the parent resource to bind the IAM policy to. If not specified,
376
376
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -607,7 +607,7 @@ class DataExchangeIamPolicy(pulumi.CustomResource):
607
607
  :param str resource_name: The unique name of the resulting resource.
608
608
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
609
609
  :param pulumi.ResourceOptions opts: Options for the resource.
610
- :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
610
+ :param pulumi.Input[builtins.str] data_exchange_id: Used to find the parent resource to bind the IAM policy to
611
611
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
612
612
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange.
613
613
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -633,7 +633,7 @@ class DataExchangeIamPolicy(pulumi.CustomResource):
633
633
  @pulumi.getter(name="dataExchangeId")
634
634
  def data_exchange_id(self) -> pulumi.Output[builtins.str]:
635
635
  """
636
- The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
636
+ Used to find the parent resource to bind the IAM policy to
637
637
  """
638
638
  return pulumi.get(self, "data_exchange_id")
639
639
 
@@ -121,7 +121,7 @@ def get_data_exchange_iam_policy(data_exchange_id: Optional[builtins.str] = None
121
121
  ```
122
122
 
123
123
 
124
- :param builtins.str data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
124
+ :param builtins.str data_exchange_id: Used to find the parent resource to bind the IAM policy to
125
125
  :param builtins.str location: The name of the location this data exchange.
126
126
  Used to find the parent resource to bind the IAM policy to. If not specified,
127
127
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -162,7 +162,7 @@ def get_data_exchange_iam_policy_output(data_exchange_id: Optional[pulumi.Input[
162
162
  ```
163
163
 
164
164
 
165
- :param builtins.str data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
165
+ :param builtins.str data_exchange_id: Used to find the parent resource to bind the IAM policy to
166
166
  :param builtins.str location: The name of the location this data exchange.
167
167
  Used to find the parent resource to bind the IAM policy to. If not specified,
168
168
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -133,7 +133,7 @@ def get_listing_iam_policy(data_exchange_id: Optional[builtins.str] = None,
133
133
 
134
134
 
135
135
  :param builtins.str data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
136
- :param builtins.str listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
136
+ :param builtins.str listing_id: Used to find the parent resource to bind the IAM policy to
137
137
  :param builtins.str location: The name of the location this data exchange listing.
138
138
  Used to find the parent resource to bind the IAM policy to. If not specified,
139
139
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -179,7 +179,7 @@ def get_listing_iam_policy_output(data_exchange_id: Optional[pulumi.Input[builti
179
179
 
180
180
 
181
181
  :param builtins.str data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
182
- :param builtins.str listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
182
+ :param builtins.str listing_id: Used to find the parent resource to bind the IAM policy to
183
183
  :param builtins.str location: The name of the location this data exchange listing.
184
184
  Used to find the parent resource to bind the IAM policy to. If not specified,
185
185
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -32,7 +32,7 @@ class ListingIamBindingArgs:
32
32
  """
33
33
  The set of arguments for constructing a ListingIamBinding resource.
34
34
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
35
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
35
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
36
36
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
37
37
  Each entry can have one of the following values:
38
38
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -81,7 +81,7 @@ class ListingIamBindingArgs:
81
81
  @pulumi.getter(name="listingId")
82
82
  def listing_id(self) -> pulumi.Input[builtins.str]:
83
83
  """
84
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
84
+ Used to find the parent resource to bind the IAM policy to
85
85
  """
86
86
  return pulumi.get(self, "listing_id")
87
87
 
@@ -178,7 +178,7 @@ class _ListingIamBindingState:
178
178
  Input properties used for looking up and filtering ListingIamBinding resources.
179
179
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
180
180
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
181
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
181
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
182
182
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
183
183
  Used to find the parent resource to bind the IAM policy to. If not specified,
184
184
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -254,7 +254,7 @@ class _ListingIamBindingState:
254
254
  @pulumi.getter(name="listingId")
255
255
  def listing_id(self) -> Optional[pulumi.Input[builtins.str]]:
256
256
  """
257
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
257
+ Used to find the parent resource to bind the IAM policy to
258
258
  """
259
259
  return pulumi.get(self, "listing_id")
260
260
 
@@ -512,7 +512,7 @@ class ListingIamBinding(pulumi.CustomResource):
512
512
  :param str resource_name: The name of the resource.
513
513
  :param pulumi.ResourceOptions opts: Options for the resource.
514
514
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
515
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
515
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
516
516
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
517
517
  Used to find the parent resource to bind the IAM policy to. If not specified,
518
518
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -782,7 +782,7 @@ class ListingIamBinding(pulumi.CustomResource):
782
782
  :param pulumi.ResourceOptions opts: Options for the resource.
783
783
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
784
784
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
785
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
785
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
786
786
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
787
787
  Used to find the parent resource to bind the IAM policy to. If not specified,
788
788
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -843,7 +843,7 @@ class ListingIamBinding(pulumi.CustomResource):
843
843
  @pulumi.getter(name="listingId")
844
844
  def listing_id(self) -> pulumi.Output[builtins.str]:
845
845
  """
846
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
846
+ Used to find the parent resource to bind the IAM policy to
847
847
  """
848
848
  return pulumi.get(self, "listing_id")
849
849
 
@@ -32,7 +32,7 @@ class ListingIamMemberArgs:
32
32
  """
33
33
  The set of arguments for constructing a ListingIamMember resource.
34
34
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
35
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
35
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
36
36
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
37
37
  Each entry can have one of the following values:
38
38
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -81,7 +81,7 @@ class ListingIamMemberArgs:
81
81
  @pulumi.getter(name="listingId")
82
82
  def listing_id(self) -> pulumi.Input[builtins.str]:
83
83
  """
84
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
84
+ Used to find the parent resource to bind the IAM policy to
85
85
  """
86
86
  return pulumi.get(self, "listing_id")
87
87
 
@@ -178,7 +178,7 @@ class _ListingIamMemberState:
178
178
  Input properties used for looking up and filtering ListingIamMember resources.
179
179
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
180
180
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
181
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
181
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
182
182
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
183
183
  Used to find the parent resource to bind the IAM policy to. If not specified,
184
184
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -254,7 +254,7 @@ class _ListingIamMemberState:
254
254
  @pulumi.getter(name="listingId")
255
255
  def listing_id(self) -> Optional[pulumi.Input[builtins.str]]:
256
256
  """
257
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
257
+ Used to find the parent resource to bind the IAM policy to
258
258
  """
259
259
  return pulumi.get(self, "listing_id")
260
260
 
@@ -512,7 +512,7 @@ class ListingIamMember(pulumi.CustomResource):
512
512
  :param str resource_name: The name of the resource.
513
513
  :param pulumi.ResourceOptions opts: Options for the resource.
514
514
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
515
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
515
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
516
516
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
517
517
  Used to find the parent resource to bind the IAM policy to. If not specified,
518
518
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -782,7 +782,7 @@ class ListingIamMember(pulumi.CustomResource):
782
782
  :param pulumi.ResourceOptions opts: Options for the resource.
783
783
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
784
784
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
785
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
785
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
786
786
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
787
787
  Used to find the parent resource to bind the IAM policy to. If not specified,
788
788
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -843,7 +843,7 @@ class ListingIamMember(pulumi.CustomResource):
843
843
  @pulumi.getter(name="listingId")
844
844
  def listing_id(self) -> pulumi.Output[builtins.str]:
845
845
  """
846
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
846
+ Used to find the parent resource to bind the IAM policy to
847
847
  """
848
848
  return pulumi.get(self, "listing_id")
849
849
 
@@ -28,7 +28,7 @@ class ListingIamPolicyArgs:
28
28
  """
29
29
  The set of arguments for constructing a ListingIamPolicy resource.
30
30
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
31
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
31
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
32
32
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
33
33
  a `organizations_get_iam_policy` data source.
34
34
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
@@ -62,7 +62,7 @@ class ListingIamPolicyArgs:
62
62
  @pulumi.getter(name="listingId")
63
63
  def listing_id(self) -> pulumi.Input[builtins.str]:
64
64
  """
65
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
65
+ Used to find the parent resource to bind the IAM policy to
66
66
  """
67
67
  return pulumi.get(self, "listing_id")
68
68
 
@@ -125,7 +125,7 @@ class _ListingIamPolicyState:
125
125
  Input properties used for looking up and filtering ListingIamPolicy resources.
126
126
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
127
127
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
128
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
128
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
129
129
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
130
130
  Used to find the parent resource to bind the IAM policy to. If not specified,
131
131
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -176,7 +176,7 @@ class _ListingIamPolicyState:
176
176
  @pulumi.getter(name="listingId")
177
177
  def listing_id(self) -> Optional[pulumi.Input[builtins.str]]:
178
178
  """
179
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
179
+ Used to find the parent resource to bind the IAM policy to
180
180
  """
181
181
  return pulumi.get(self, "listing_id")
182
182
 
@@ -409,7 +409,7 @@ class ListingIamPolicy(pulumi.CustomResource):
409
409
  :param str resource_name: The name of the resource.
410
410
  :param pulumi.ResourceOptions opts: Options for the resource.
411
411
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
412
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
412
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
413
413
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
414
414
  Used to find the parent resource to bind the IAM policy to. If not specified,
415
415
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -659,7 +659,7 @@ class ListingIamPolicy(pulumi.CustomResource):
659
659
  :param pulumi.ResourceOptions opts: Options for the resource.
660
660
  :param pulumi.Input[builtins.str] data_exchange_id: The ID of the data exchange. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
661
661
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
662
- :param pulumi.Input[builtins.str] listing_id: The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
662
+ :param pulumi.Input[builtins.str] listing_id: Used to find the parent resource to bind the IAM policy to
663
663
  :param pulumi.Input[builtins.str] location: The name of the location this data exchange listing.
664
664
  Used to find the parent resource to bind the IAM policy to. If not specified,
665
665
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -701,7 +701,7 @@ class ListingIamPolicy(pulumi.CustomResource):
701
701
  @pulumi.getter(name="listingId")
702
702
  def listing_id(self) -> pulumi.Output[builtins.str]:
703
703
  """
704
- The ID of the listing. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Used to find the parent resource to bind the IAM policy to
704
+ Used to find the parent resource to bind the IAM policy to
705
705
  """
706
706
  return pulumi.get(self, "listing_id")
707
707
 
@@ -404,18 +404,18 @@ class ListingSubscription(pulumi.CustomResource):
404
404
  location="US",
405
405
  data_exchange_id="my_data_exchange",
406
406
  display_name="my_data_exchange",
407
- description="")
407
+ description="Test Description")
408
408
  subscription_dataset = gcp.bigquery.Dataset("subscription",
409
409
  dataset_id="my_listing",
410
410
  friendly_name="my_listing",
411
- description="",
411
+ description="Test Description",
412
412
  location="US")
413
413
  subscription_listing = gcp.bigqueryanalyticshub.Listing("subscription",
414
414
  location="US",
415
415
  data_exchange_id=subscription.data_exchange_id,
416
416
  listing_id="my_listing",
417
417
  display_name="my_listing",
418
- description="",
418
+ description="Test Description",
419
419
  bigquery_dataset={
420
420
  "dataset": subscription_dataset.id,
421
421
  })
@@ -498,18 +498,18 @@ class ListingSubscription(pulumi.CustomResource):
498
498
  location="US",
499
499
  data_exchange_id="my_data_exchange",
500
500
  display_name="my_data_exchange",
501
- description="")
501
+ description="Test Description")
502
502
  subscription_dataset = gcp.bigquery.Dataset("subscription",
503
503
  dataset_id="my_listing",
504
504
  friendly_name="my_listing",
505
- description="",
505
+ description="Test Description",
506
506
  location="US")
507
507
  subscription_listing = gcp.bigqueryanalyticshub.Listing("subscription",
508
508
  location="US",
509
509
  data_exchange_id=subscription.data_exchange_id,
510
510
  listing_id="my_listing",
511
511
  display_name="my_listing",
512
- description="",
512
+ description="Test Description",
513
513
  bigquery_dataset={
514
514
  "dataset": subscription_dataset.id,
515
515
  })
@@ -30,6 +30,7 @@ class DataPolicyIamBindingArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a DataPolicyIamBinding resource.
33
+ :param pulumi.Input[builtins.str] data_policy_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.
@@ -64,6 +65,9 @@ class DataPolicyIamBindingArgs:
64
65
  @property
65
66
  @pulumi.getter(name="dataPolicyId")
66
67
  def data_policy_id(self) -> pulumi.Input[builtins.str]:
68
+ """
69
+ Used to find the parent resource to bind the IAM policy to
70
+ """
67
71
  return pulumi.get(self, "data_policy_id")
68
72
 
69
73
  @data_policy_id.setter
@@ -156,6 +160,7 @@ class _DataPolicyIamBindingState:
156
160
  role: Optional[pulumi.Input[builtins.str]] = None):
157
161
  """
158
162
  Input properties used for looking up and filtering DataPolicyIamBinding resources.
163
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
159
164
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
160
165
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
161
166
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -205,6 +210,9 @@ class _DataPolicyIamBindingState:
205
210
  @property
206
211
  @pulumi.getter(name="dataPolicyId")
207
212
  def data_policy_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
+ """
214
+ Used to find the parent resource to bind the IAM policy to
215
+ """
208
216
  return pulumi.get(self, "data_policy_id")
209
217
 
210
218
  @data_policy_id.setter
@@ -465,6 +473,7 @@ class DataPolicyIamBinding(pulumi.CustomResource):
465
473
 
466
474
  :param str resource_name: The name of the resource.
467
475
  :param pulumi.ResourceOptions opts: Options for the resource.
476
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
468
477
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
469
478
  Used to find the parent resource to bind the IAM policy to. If not specified,
470
479
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -721,6 +730,7 @@ class DataPolicyIamBinding(pulumi.CustomResource):
721
730
  :param str resource_name: The unique name of the resulting resource.
722
731
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
723
732
  :param pulumi.ResourceOptions opts: Options for the resource.
733
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
724
734
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
725
735
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
726
736
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -764,6 +774,9 @@ class DataPolicyIamBinding(pulumi.CustomResource):
764
774
  @property
765
775
  @pulumi.getter(name="dataPolicyId")
766
776
  def data_policy_id(self) -> pulumi.Output[builtins.str]:
777
+ """
778
+ Used to find the parent resource to bind the IAM policy to
779
+ """
767
780
  return pulumi.get(self, "data_policy_id")
768
781
 
769
782
  @property
@@ -30,6 +30,7 @@ class DataPolicyIamMemberArgs:
30
30
  project: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a DataPolicyIamMember resource.
33
+ :param pulumi.Input[builtins.str] data_policy_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.
@@ -64,6 +65,9 @@ class DataPolicyIamMemberArgs:
64
65
  @property
65
66
  @pulumi.getter(name="dataPolicyId")
66
67
  def data_policy_id(self) -> pulumi.Input[builtins.str]:
68
+ """
69
+ Used to find the parent resource to bind the IAM policy to
70
+ """
67
71
  return pulumi.get(self, "data_policy_id")
68
72
 
69
73
  @data_policy_id.setter
@@ -156,6 +160,7 @@ class _DataPolicyIamMemberState:
156
160
  role: Optional[pulumi.Input[builtins.str]] = None):
157
161
  """
158
162
  Input properties used for looking up and filtering DataPolicyIamMember resources.
163
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
159
164
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
160
165
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
161
166
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -205,6 +210,9 @@ class _DataPolicyIamMemberState:
205
210
  @property
206
211
  @pulumi.getter(name="dataPolicyId")
207
212
  def data_policy_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
+ """
214
+ Used to find the parent resource to bind the IAM policy to
215
+ """
208
216
  return pulumi.get(self, "data_policy_id")
209
217
 
210
218
  @data_policy_id.setter
@@ -465,6 +473,7 @@ class DataPolicyIamMember(pulumi.CustomResource):
465
473
 
466
474
  :param str resource_name: The name of the resource.
467
475
  :param pulumi.ResourceOptions opts: Options for the resource.
476
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
468
477
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
469
478
  Used to find the parent resource to bind the IAM policy to. If not specified,
470
479
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -721,6 +730,7 @@ class DataPolicyIamMember(pulumi.CustomResource):
721
730
  :param str resource_name: The unique name of the resulting resource.
722
731
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
723
732
  :param pulumi.ResourceOptions opts: Options for the resource.
733
+ :param pulumi.Input[builtins.str] data_policy_id: Used to find the parent resource to bind the IAM policy to
724
734
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
725
735
  :param pulumi.Input[builtins.str] location: The name of the location of the data policy.
726
736
  Used to find the parent resource to bind the IAM policy to. If not specified,
@@ -764,6 +774,9 @@ class DataPolicyIamMember(pulumi.CustomResource):
764
774
  @property
765
775
  @pulumi.getter(name="dataPolicyId")
766
776
  def data_policy_id(self) -> pulumi.Output[builtins.str]:
777
+ """
778
+ Used to find the parent resource to bind the IAM policy to
779
+ """
767
780
  return pulumi.get(self, "data_policy_id")
768
781
 
769
782
  @property