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,6 +30,7 @@ class TunnelDestGroupIamBindingArgs:
30
30
  region: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a TunnelDestGroupIamBinding resource.
33
+ :param pulumi.Input[builtins.str] dest_group: 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.
@@ -66,6 +67,9 @@ class TunnelDestGroupIamBindingArgs:
66
67
  @property
67
68
  @pulumi.getter(name="destGroup")
68
69
  def dest_group(self) -> pulumi.Input[builtins.str]:
70
+ """
71
+ Used to find the parent resource to bind the IAM policy to
72
+ """
69
73
  return pulumi.get(self, "dest_group")
70
74
 
71
75
  @dest_group.setter
@@ -164,6 +168,7 @@ class _TunnelDestGroupIamBindingState:
164
168
  Input properties used for looking up and filtering TunnelDestGroupIamBinding resources.
165
169
  :param pulumi.Input['TunnelDestGroupIamBindingConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
166
170
  Structure is documented below.
171
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
167
172
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
168
173
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
169
174
  Each entry can have one of the following values:
@@ -217,6 +222,9 @@ class _TunnelDestGroupIamBindingState:
217
222
  @property
218
223
  @pulumi.getter(name="destGroup")
219
224
  def dest_group(self) -> Optional[pulumi.Input[builtins.str]]:
225
+ """
226
+ Used to find the parent resource to bind the IAM policy to
227
+ """
220
228
  return pulumi.get(self, "dest_group")
221
229
 
222
230
  @dest_group.setter
@@ -601,6 +609,7 @@ class TunnelDestGroupIamBinding(pulumi.CustomResource):
601
609
  :param pulumi.ResourceOptions opts: Options for the resource.
602
610
  :param pulumi.Input[Union['TunnelDestGroupIamBindingConditionArgs', 'TunnelDestGroupIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
603
611
  Structure is documented below.
612
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
604
613
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
605
614
  Each entry can have one of the following values:
606
615
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -981,6 +990,7 @@ class TunnelDestGroupIamBinding(pulumi.CustomResource):
981
990
  :param pulumi.ResourceOptions opts: Options for the resource.
982
991
  :param pulumi.Input[Union['TunnelDestGroupIamBindingConditionArgs', 'TunnelDestGroupIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
983
992
  Structure is documented below.
993
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
984
994
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
985
995
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
986
996
  Each entry can have one of the following values:
@@ -1028,6 +1038,9 @@ class TunnelDestGroupIamBinding(pulumi.CustomResource):
1028
1038
  @property
1029
1039
  @pulumi.getter(name="destGroup")
1030
1040
  def dest_group(self) -> pulumi.Output[builtins.str]:
1041
+ """
1042
+ Used to find the parent resource to bind the IAM policy to
1043
+ """
1031
1044
  return pulumi.get(self, "dest_group")
1032
1045
 
1033
1046
  @property
@@ -30,6 +30,7 @@ class TunnelDestGroupIamMemberArgs:
30
30
  region: Optional[pulumi.Input[builtins.str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a TunnelDestGroupIamMember resource.
33
+ :param pulumi.Input[builtins.str] dest_group: 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.
@@ -66,6 +67,9 @@ class TunnelDestGroupIamMemberArgs:
66
67
  @property
67
68
  @pulumi.getter(name="destGroup")
68
69
  def dest_group(self) -> pulumi.Input[builtins.str]:
70
+ """
71
+ Used to find the parent resource to bind the IAM policy to
72
+ """
69
73
  return pulumi.get(self, "dest_group")
70
74
 
71
75
  @dest_group.setter
@@ -164,6 +168,7 @@ class _TunnelDestGroupIamMemberState:
164
168
  Input properties used for looking up and filtering TunnelDestGroupIamMember resources.
165
169
  :param pulumi.Input['TunnelDestGroupIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
166
170
  Structure is documented below.
171
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
167
172
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
168
173
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
169
174
  Each entry can have one of the following values:
@@ -217,6 +222,9 @@ class _TunnelDestGroupIamMemberState:
217
222
  @property
218
223
  @pulumi.getter(name="destGroup")
219
224
  def dest_group(self) -> Optional[pulumi.Input[builtins.str]]:
225
+ """
226
+ Used to find the parent resource to bind the IAM policy to
227
+ """
220
228
  return pulumi.get(self, "dest_group")
221
229
 
222
230
  @dest_group.setter
@@ -601,6 +609,7 @@ class TunnelDestGroupIamMember(pulumi.CustomResource):
601
609
  :param pulumi.ResourceOptions opts: Options for the resource.
602
610
  :param pulumi.Input[Union['TunnelDestGroupIamMemberConditionArgs', 'TunnelDestGroupIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
603
611
  Structure is documented below.
612
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
604
613
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
605
614
  Each entry can have one of the following values:
606
615
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -981,6 +990,7 @@ class TunnelDestGroupIamMember(pulumi.CustomResource):
981
990
  :param pulumi.ResourceOptions opts: Options for the resource.
982
991
  :param pulumi.Input[Union['TunnelDestGroupIamMemberConditionArgs', 'TunnelDestGroupIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
983
992
  Structure is documented below.
993
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
984
994
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
985
995
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
986
996
  Each entry can have one of the following values:
@@ -1028,6 +1038,9 @@ class TunnelDestGroupIamMember(pulumi.CustomResource):
1028
1038
  @property
1029
1039
  @pulumi.getter(name="destGroup")
1030
1040
  def dest_group(self) -> pulumi.Output[builtins.str]:
1041
+ """
1042
+ Used to find the parent resource to bind the IAM policy to
1043
+ """
1031
1044
  return pulumi.get(self, "dest_group")
1032
1045
 
1033
1046
  @property
@@ -26,6 +26,7 @@ class TunnelDestGroupIamPolicyArgs:
26
26
  region: Optional[pulumi.Input[builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a TunnelDestGroupIamPolicy resource.
29
+ :param pulumi.Input[builtins.str] dest_group: 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.
31
32
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
@@ -45,6 +46,9 @@ class TunnelDestGroupIamPolicyArgs:
45
46
  @property
46
47
  @pulumi.getter(name="destGroup")
47
48
  def dest_group(self) -> pulumi.Input[builtins.str]:
49
+ """
50
+ Used to find the parent resource to bind the IAM policy to
51
+ """
48
52
  return pulumi.get(self, "dest_group")
49
53
 
50
54
  @dest_group.setter
@@ -103,6 +107,7 @@ class _TunnelDestGroupIamPolicyState:
103
107
  region: Optional[pulumi.Input[builtins.str]] = None):
104
108
  """
105
109
  Input properties used for looking up and filtering TunnelDestGroupIamPolicy resources.
110
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
106
111
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
107
112
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
108
113
  a `organizations_get_iam_policy` data source.
@@ -127,6 +132,9 @@ class _TunnelDestGroupIamPolicyState:
127
132
  @property
128
133
  @pulumi.getter(name="destGroup")
129
134
  def dest_group(self) -> Optional[pulumi.Input[builtins.str]]:
135
+ """
136
+ Used to find the parent resource to bind the IAM policy to
137
+ """
130
138
  return pulumi.get(self, "dest_group")
131
139
 
132
140
  @dest_group.setter
@@ -484,6 +492,7 @@ class TunnelDestGroupIamPolicy(pulumi.CustomResource):
484
492
 
485
493
  :param str resource_name: The name of the resource.
486
494
  :param pulumi.ResourceOptions opts: Options for the resource.
495
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
487
496
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
488
497
  a `organizations_get_iam_policy` data source.
489
498
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
@@ -842,6 +851,7 @@ class TunnelDestGroupIamPolicy(pulumi.CustomResource):
842
851
  :param str resource_name: The unique name of the resulting resource.
843
852
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
844
853
  :param pulumi.ResourceOptions opts: Options for the resource.
854
+ :param pulumi.Input[builtins.str] dest_group: Used to find the parent resource to bind the IAM policy to
845
855
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
846
856
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
847
857
  a `organizations_get_iam_policy` data source.
@@ -866,6 +876,9 @@ class TunnelDestGroupIamPolicy(pulumi.CustomResource):
866
876
  @property
867
877
  @pulumi.getter(name="destGroup")
868
878
  def dest_group(self) -> pulumi.Output[builtins.str]:
879
+ """
880
+ Used to find the parent resource to bind the IAM policy to
881
+ """
869
882
  return pulumi.get(self, "dest_group")
870
883
 
871
884
  @property
@@ -49,6 +49,9 @@ class TunnelInstanceIAMBindingArgs:
49
49
  Structure is documented below.
50
50
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
51
51
  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.
52
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
53
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
54
+ zone is specified, it is taken from the provider configuration.
52
55
  """
53
56
  pulumi.set(__self__, "instance", instance)
54
57
  pulumi.set(__self__, "members", members)
@@ -137,6 +140,11 @@ class TunnelInstanceIAMBindingArgs:
137
140
  @property
138
141
  @pulumi.getter
139
142
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
143
+ """
144
+ Used to find the parent resource to bind the IAM policy to. If not specified,
145
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
146
+ zone is specified, it is taken from the provider configuration.
147
+ """
140
148
  return pulumi.get(self, "zone")
141
149
 
142
150
  @zone.setter
@@ -176,6 +184,9 @@ class _TunnelInstanceIAMBindingState:
176
184
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
177
185
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
178
186
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
187
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
188
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
189
+ zone is specified, it is taken from the provider configuration.
179
190
  """
180
191
  if condition is not None:
181
192
  pulumi.set(__self__, "condition", condition)
@@ -281,6 +292,11 @@ class _TunnelInstanceIAMBindingState:
281
292
  @property
282
293
  @pulumi.getter
283
294
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
295
+ """
296
+ Used to find the parent resource to bind the IAM policy to. If not specified,
297
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
298
+ zone is specified, it is taken from the provider configuration.
299
+ """
284
300
  return pulumi.get(self, "zone")
285
301
 
286
302
  @zone.setter
@@ -606,6 +622,9 @@ class TunnelInstanceIAMBinding(pulumi.CustomResource):
606
622
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
607
623
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
608
624
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
625
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
626
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
627
+ zone is specified, it is taken from the provider configuration.
609
628
  """
610
629
  ...
611
630
  @overload
@@ -984,6 +1003,9 @@ class TunnelInstanceIAMBinding(pulumi.CustomResource):
984
1003
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
985
1004
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
986
1005
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
1006
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
1007
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
1008
+ zone is specified, it is taken from the provider configuration.
987
1009
  """
988
1010
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
989
1011
 
@@ -1063,5 +1085,10 @@ class TunnelInstanceIAMBinding(pulumi.CustomResource):
1063
1085
  @property
1064
1086
  @pulumi.getter
1065
1087
  def zone(self) -> pulumi.Output[builtins.str]:
1088
+ """
1089
+ Used to find the parent resource to bind the IAM policy to. If not specified,
1090
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
1091
+ zone is specified, it is taken from the provider configuration.
1092
+ """
1066
1093
  return pulumi.get(self, "zone")
1067
1094
 
@@ -49,6 +49,9 @@ class TunnelInstanceIAMMemberArgs:
49
49
  Structure is documented below.
50
50
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
51
51
  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.
52
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
53
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
54
+ zone is specified, it is taken from the provider configuration.
52
55
  """
53
56
  pulumi.set(__self__, "instance", instance)
54
57
  pulumi.set(__self__, "member", member)
@@ -137,6 +140,11 @@ class TunnelInstanceIAMMemberArgs:
137
140
  @property
138
141
  @pulumi.getter
139
142
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
143
+ """
144
+ Used to find the parent resource to bind the IAM policy to. If not specified,
145
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
146
+ zone is specified, it is taken from the provider configuration.
147
+ """
140
148
  return pulumi.get(self, "zone")
141
149
 
142
150
  @zone.setter
@@ -176,6 +184,9 @@ class _TunnelInstanceIAMMemberState:
176
184
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
177
185
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
178
186
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
187
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
188
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
189
+ zone is specified, it is taken from the provider configuration.
179
190
  """
180
191
  if condition is not None:
181
192
  pulumi.set(__self__, "condition", condition)
@@ -281,6 +292,11 @@ class _TunnelInstanceIAMMemberState:
281
292
  @property
282
293
  @pulumi.getter
283
294
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
295
+ """
296
+ Used to find the parent resource to bind the IAM policy to. If not specified,
297
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
298
+ zone is specified, it is taken from the provider configuration.
299
+ """
284
300
  return pulumi.get(self, "zone")
285
301
 
286
302
  @zone.setter
@@ -606,6 +622,9 @@ class TunnelInstanceIAMMember(pulumi.CustomResource):
606
622
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
607
623
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
608
624
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
625
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
626
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
627
+ zone is specified, it is taken from the provider configuration.
609
628
  """
610
629
  ...
611
630
  @overload
@@ -984,6 +1003,9 @@ class TunnelInstanceIAMMember(pulumi.CustomResource):
984
1003
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
985
1004
  `iap.TunnelInstanceIAMBinding` can be used per role. Note that custom roles must be of the format
986
1005
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
1006
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
1007
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
1008
+ zone is specified, it is taken from the provider configuration.
987
1009
  """
988
1010
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
989
1011
 
@@ -1063,5 +1085,10 @@ class TunnelInstanceIAMMember(pulumi.CustomResource):
1063
1085
  @property
1064
1086
  @pulumi.getter
1065
1087
  def zone(self) -> pulumi.Output[builtins.str]:
1088
+ """
1089
+ Used to find the parent resource to bind the IAM policy to. If not specified,
1090
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
1091
+ zone is specified, it is taken from the provider configuration.
1092
+ """
1066
1093
  return pulumi.get(self, "zone")
1067
1094
 
@@ -31,6 +31,9 @@ class TunnelInstanceIAMPolicyArgs:
31
31
  a `organizations_get_iam_policy` data source.
32
32
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
33
33
  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.
34
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
35
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
36
+ zone is specified, it is taken from the provider configuration.
34
37
  """
35
38
  pulumi.set(__self__, "instance", instance)
36
39
  pulumi.set(__self__, "policy_data", policy_data)
@@ -80,6 +83,11 @@ class TunnelInstanceIAMPolicyArgs:
80
83
  @property
81
84
  @pulumi.getter
82
85
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
86
+ """
87
+ Used to find the parent resource to bind the IAM policy to. If not specified,
88
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
89
+ zone is specified, it is taken from the provider configuration.
90
+ """
83
91
  return pulumi.get(self, "zone")
84
92
 
85
93
  @zone.setter
@@ -103,6 +111,9 @@ class _TunnelInstanceIAMPolicyState:
103
111
  a `organizations_get_iam_policy` data source.
104
112
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
105
113
  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.
114
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
115
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
116
+ zone is specified, it is taken from the provider configuration.
106
117
  """
107
118
  if etag is not None:
108
119
  pulumi.set(__self__, "etag", etag)
@@ -168,6 +179,11 @@ class _TunnelInstanceIAMPolicyState:
168
179
  @property
169
180
  @pulumi.getter
170
181
  def zone(self) -> Optional[pulumi.Input[builtins.str]]:
182
+ """
183
+ Used to find the parent resource to bind the IAM policy to. If not specified,
184
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
185
+ zone is specified, it is taken from the provider configuration.
186
+ """
171
187
  return pulumi.get(self, "zone")
172
188
 
173
189
  @zone.setter
@@ -477,6 +493,9 @@ class TunnelInstanceIAMPolicy(pulumi.CustomResource):
477
493
  a `organizations_get_iam_policy` data source.
478
494
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
479
495
  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.
496
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
497
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
498
+ zone is specified, it is taken from the provider configuration.
480
499
  """
481
500
  ...
482
501
  @overload
@@ -833,6 +852,9 @@ class TunnelInstanceIAMPolicy(pulumi.CustomResource):
833
852
  a `organizations_get_iam_policy` data source.
834
853
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
835
854
  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.
855
+ :param pulumi.Input[builtins.str] zone: Used to find the parent resource to bind the IAM policy to. If not specified,
856
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
857
+ zone is specified, it is taken from the provider configuration.
836
858
  """
837
859
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
838
860
 
@@ -882,5 +904,10 @@ class TunnelInstanceIAMPolicy(pulumi.CustomResource):
882
904
  @property
883
905
  @pulumi.getter
884
906
  def zone(self) -> pulumi.Output[builtins.str]:
907
+ """
908
+ Used to find the parent resource to bind the IAM policy to. If not specified,
909
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
910
+ zone is specified, it is taken from the provider configuration.
911
+ """
885
912
  return pulumi.get(self, "zone")
886
913
 
@@ -49,6 +49,9 @@ class WebRegionBackendServiceIamBindingArgs:
49
49
  Structure is documented below.
50
50
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
51
51
  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.
52
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
53
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
54
+ region is specified, it is taken from the provider configuration.
52
55
  """
53
56
  pulumi.set(__self__, "members", members)
54
57
  pulumi.set(__self__, "role", role)
@@ -137,6 +140,11 @@ class WebRegionBackendServiceIamBindingArgs:
137
140
  @property
138
141
  @pulumi.getter
139
142
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
143
+ """
144
+ Used to find the parent resource to bind the IAM policy to. If not specified,
145
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
146
+ region is specified, it is taken from the provider configuration.
147
+ """
140
148
  return pulumi.get(self, "region")
141
149
 
142
150
  @region.setter
@@ -172,6 +180,9 @@ class _WebRegionBackendServiceIamBindingState:
172
180
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
173
181
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
174
182
  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.
183
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
184
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
185
+ region is specified, it is taken from the provider configuration.
175
186
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
176
187
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
177
188
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -255,6 +266,11 @@ class _WebRegionBackendServiceIamBindingState:
255
266
  @property
256
267
  @pulumi.getter
257
268
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
269
+ """
270
+ Used to find the parent resource to bind the IAM policy to. If not specified,
271
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
272
+ region is specified, it is taken from the provider configuration.
273
+ """
258
274
  return pulumi.get(self, "region")
259
275
 
260
276
  @region.setter
@@ -600,6 +616,9 @@ class WebRegionBackendServiceIamBinding(pulumi.CustomResource):
600
616
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
601
617
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
602
618
  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.
619
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
620
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
621
+ region is specified, it is taken from the provider configuration.
603
622
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
604
623
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
605
624
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -976,6 +995,9 @@ class WebRegionBackendServiceIamBinding(pulumi.CustomResource):
976
995
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
977
996
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
978
997
  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.
998
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
999
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
1000
+ region is specified, it is taken from the provider configuration.
979
1001
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
980
1002
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
981
1003
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -1041,6 +1063,11 @@ class WebRegionBackendServiceIamBinding(pulumi.CustomResource):
1041
1063
  @property
1042
1064
  @pulumi.getter
1043
1065
  def region(self) -> pulumi.Output[builtins.str]:
1066
+ """
1067
+ Used to find the parent resource to bind the IAM policy to. If not specified,
1068
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
1069
+ region is specified, it is taken from the provider configuration.
1070
+ """
1044
1071
  return pulumi.get(self, "region")
1045
1072
 
1046
1073
  @property
@@ -49,6 +49,9 @@ class WebRegionBackendServiceIamMemberArgs:
49
49
  Structure is documented below.
50
50
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
51
51
  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.
52
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
53
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
54
+ region is specified, it is taken from the provider configuration.
52
55
  """
53
56
  pulumi.set(__self__, "member", member)
54
57
  pulumi.set(__self__, "role", role)
@@ -137,6 +140,11 @@ class WebRegionBackendServiceIamMemberArgs:
137
140
  @property
138
141
  @pulumi.getter
139
142
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
143
+ """
144
+ Used to find the parent resource to bind the IAM policy to. If not specified,
145
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
146
+ region is specified, it is taken from the provider configuration.
147
+ """
140
148
  return pulumi.get(self, "region")
141
149
 
142
150
  @region.setter
@@ -172,6 +180,9 @@ class _WebRegionBackendServiceIamMemberState:
172
180
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
173
181
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
174
182
  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.
183
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
184
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
185
+ region is specified, it is taken from the provider configuration.
175
186
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
176
187
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
177
188
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -255,6 +266,11 @@ class _WebRegionBackendServiceIamMemberState:
255
266
  @property
256
267
  @pulumi.getter
257
268
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
269
+ """
270
+ Used to find the parent resource to bind the IAM policy to. If not specified,
271
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
272
+ region is specified, it is taken from the provider configuration.
273
+ """
258
274
  return pulumi.get(self, "region")
259
275
 
260
276
  @region.setter
@@ -600,6 +616,9 @@ class WebRegionBackendServiceIamMember(pulumi.CustomResource):
600
616
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
601
617
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
602
618
  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.
619
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
620
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
621
+ region is specified, it is taken from the provider configuration.
603
622
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
604
623
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
605
624
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -976,6 +995,9 @@ class WebRegionBackendServiceIamMember(pulumi.CustomResource):
976
995
  * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
977
996
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
978
997
  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.
998
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
999
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
1000
+ region is specified, it is taken from the provider configuration.
979
1001
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
980
1002
  `iap.WebRegionBackendServiceIamBinding` can be used per role. Note that custom roles must be of the format
981
1003
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
@@ -1041,6 +1063,11 @@ class WebRegionBackendServiceIamMember(pulumi.CustomResource):
1041
1063
  @property
1042
1064
  @pulumi.getter
1043
1065
  def region(self) -> pulumi.Output[builtins.str]:
1066
+ """
1067
+ Used to find the parent resource to bind the IAM policy to. If not specified,
1068
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
1069
+ region is specified, it is taken from the provider configuration.
1070
+ """
1044
1071
  return pulumi.get(self, "region")
1045
1072
 
1046
1073
  @property
@@ -31,6 +31,9 @@ class WebRegionBackendServiceIamPolicyArgs:
31
31
  :param pulumi.Input[builtins.str] web_region_backend_service: Used to find the parent resource to bind the IAM policy to
32
32
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
33
33
  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.
34
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
35
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
36
+ region is specified, it is taken from the provider configuration.
34
37
  """
35
38
  pulumi.set(__self__, "policy_data", policy_data)
36
39
  pulumi.set(__self__, "web_region_backend_service", web_region_backend_service)
@@ -80,6 +83,11 @@ class WebRegionBackendServiceIamPolicyArgs:
80
83
  @property
81
84
  @pulumi.getter
82
85
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
86
+ """
87
+ Used to find the parent resource to bind the IAM policy to. If not specified,
88
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
89
+ region is specified, it is taken from the provider configuration.
90
+ """
83
91
  return pulumi.get(self, "region")
84
92
 
85
93
  @region.setter
@@ -102,6 +110,9 @@ class _WebRegionBackendServiceIamPolicyState:
102
110
  a `organizations_get_iam_policy` data source.
103
111
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
104
112
  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.
113
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
114
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
115
+ region is specified, it is taken from the provider configuration.
105
116
  :param pulumi.Input[builtins.str] web_region_backend_service: Used to find the parent resource to bind the IAM policy to
106
117
  """
107
118
  if etag is not None:
@@ -156,6 +167,11 @@ class _WebRegionBackendServiceIamPolicyState:
156
167
  @property
157
168
  @pulumi.getter
158
169
  def region(self) -> Optional[pulumi.Input[builtins.str]]:
170
+ """
171
+ Used to find the parent resource to bind the IAM policy to. If not specified,
172
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
173
+ region is specified, it is taken from the provider configuration.
174
+ """
159
175
  return pulumi.get(self, "region")
160
176
 
161
177
  @region.setter
@@ -474,6 +490,9 @@ class WebRegionBackendServiceIamPolicy(pulumi.CustomResource):
474
490
  a `organizations_get_iam_policy` data source.
475
491
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
476
492
  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.
493
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
494
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
495
+ region is specified, it is taken from the provider configuration.
477
496
  :param pulumi.Input[builtins.str] web_region_backend_service: Used to find the parent resource to bind the IAM policy to
478
497
  """
479
498
  ...
@@ -828,6 +847,9 @@ class WebRegionBackendServiceIamPolicy(pulumi.CustomResource):
828
847
  a `organizations_get_iam_policy` data source.
829
848
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
830
849
  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.
850
+ :param pulumi.Input[builtins.str] region: Used to find the parent resource to bind the IAM policy to. If not specified,
851
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
852
+ region is specified, it is taken from the provider configuration.
831
853
  :param pulumi.Input[builtins.str] web_region_backend_service: Used to find the parent resource to bind the IAM policy to
832
854
  """
833
855
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -870,6 +892,11 @@ class WebRegionBackendServiceIamPolicy(pulumi.CustomResource):
870
892
  @property
871
893
  @pulumi.getter
872
894
  def region(self) -> pulumi.Output[builtins.str]:
895
+ """
896
+ Used to find the parent resource to bind the IAM policy to. If not specified,
897
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
898
+ region is specified, it is taken from the provider configuration.
899
+ """
873
900
  return pulumi.get(self, "region")
874
901
 
875
902
  @property