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
@@ -26,10 +26,10 @@ class AppEngineServiceIamPolicyArgs:
26
26
  project: Optional[pulumi.Input[builtins.str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a AppEngineServiceIamPolicy resource.
29
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
29
+ :param pulumi.Input[builtins.str] app_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
- :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
32
+ :param pulumi.Input[builtins.str] service: Used to find the parent resource to bind the IAM policy to
33
33
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
34
34
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
35
35
  """
@@ -43,7 +43,7 @@ class AppEngineServiceIamPolicyArgs:
43
43
  @pulumi.getter(name="appId")
44
44
  def app_id(self) -> pulumi.Input[builtins.str]:
45
45
  """
46
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
46
+ Used to find the parent resource to bind the IAM policy to
47
47
  """
48
48
  return pulumi.get(self, "app_id")
49
49
 
@@ -68,7 +68,7 @@ class AppEngineServiceIamPolicyArgs:
68
68
  @pulumi.getter
69
69
  def service(self) -> pulumi.Input[builtins.str]:
70
70
  """
71
- Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
71
+ Used to find the parent resource to bind the IAM policy to
72
72
  """
73
73
  return pulumi.get(self, "service")
74
74
 
@@ -100,13 +100,13 @@ class _AppEngineServiceIamPolicyState:
100
100
  service: Optional[pulumi.Input[builtins.str]] = None):
101
101
  """
102
102
  Input properties used for looking up and filtering AppEngineServiceIamPolicy resources.
103
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
103
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
104
104
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
105
105
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
106
106
  a `organizations_get_iam_policy` data source.
107
107
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
108
108
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
109
- :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
109
+ :param pulumi.Input[builtins.str] service: Used to find the parent resource to bind the IAM policy to
110
110
  """
111
111
  if app_id is not None:
112
112
  pulumi.set(__self__, "app_id", app_id)
@@ -123,7 +123,7 @@ class _AppEngineServiceIamPolicyState:
123
123
  @pulumi.getter(name="appId")
124
124
  def app_id(self) -> Optional[pulumi.Input[builtins.str]]:
125
125
  """
126
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
126
+ Used to find the parent resource to bind the IAM policy to
127
127
  """
128
128
  return pulumi.get(self, "app_id")
129
129
 
@@ -173,7 +173,7 @@ class _AppEngineServiceIamPolicyState:
173
173
  @pulumi.getter
174
174
  def service(self) -> Optional[pulumi.Input[builtins.str]]:
175
175
  """
176
- Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
176
+ Used to find the parent resource to bind the IAM policy to
177
177
  """
178
178
  return pulumi.get(self, "service")
179
179
 
@@ -477,12 +477,12 @@ class AppEngineServiceIamPolicy(pulumi.CustomResource):
477
477
 
478
478
  :param str resource_name: The name of the resource.
479
479
  :param pulumi.ResourceOptions opts: Options for the resource.
480
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
480
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
481
481
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
482
482
  a `organizations_get_iam_policy` data source.
483
483
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
484
484
  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.
485
- :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
485
+ :param pulumi.Input[builtins.str] service: Used to find the parent resource to bind the IAM policy to
486
486
  """
487
487
  ...
488
488
  @overload
@@ -833,13 +833,13 @@ class AppEngineServiceIamPolicy(pulumi.CustomResource):
833
833
  :param str resource_name: The unique name of the resulting resource.
834
834
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
835
835
  :param pulumi.ResourceOptions opts: Options for the resource.
836
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
836
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
837
837
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
838
838
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
839
839
  a `organizations_get_iam_policy` data source.
840
840
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
841
841
  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.
842
- :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
842
+ :param pulumi.Input[builtins.str] service: Used to find the parent resource to bind the IAM policy to
843
843
  """
844
844
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
845
845
 
@@ -856,7 +856,7 @@ class AppEngineServiceIamPolicy(pulumi.CustomResource):
856
856
  @pulumi.getter(name="appId")
857
857
  def app_id(self) -> pulumi.Output[builtins.str]:
858
858
  """
859
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
859
+ Used to find the parent resource to bind the IAM policy to
860
860
  """
861
861
  return pulumi.get(self, "app_id")
862
862
 
@@ -890,7 +890,7 @@ class AppEngineServiceIamPolicy(pulumi.CustomResource):
890
890
  @pulumi.getter
891
891
  def service(self) -> pulumi.Output[builtins.str]:
892
892
  """
893
- Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
893
+ Used to find the parent resource to bind the IAM policy to
894
894
  """
895
895
  return pulumi.get(self, "service")
896
896
 
@@ -31,7 +31,7 @@ class AppEngineVersionIamBindingArgs:
31
31
  project: Optional[pulumi.Input[builtins.str]] = None):
32
32
  """
33
33
  The set of arguments for constructing a AppEngineVersionIamBinding resource.
34
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
34
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
35
35
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
36
36
  Each entry can have one of the following values:
37
37
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -47,7 +47,7 @@ class AppEngineVersionIamBindingArgs:
47
47
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
48
48
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
49
49
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
50
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
50
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
51
51
  :param pulumi.Input['AppEngineVersionIamBindingConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
52
52
  Structure is documented below.
53
53
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
@@ -67,7 +67,7 @@ class AppEngineVersionIamBindingArgs:
67
67
  @pulumi.getter(name="appId")
68
68
  def app_id(self) -> pulumi.Input[builtins.str]:
69
69
  """
70
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
70
+ Used to find the parent resource to bind the IAM policy to
71
71
  """
72
72
  return pulumi.get(self, "app_id")
73
73
 
@@ -127,7 +127,7 @@ class AppEngineVersionIamBindingArgs:
127
127
  @pulumi.getter(name="versionId")
128
128
  def version_id(self) -> pulumi.Input[builtins.str]:
129
129
  """
130
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
130
+ Used to find the parent resource to bind the IAM policy to
131
131
  """
132
132
  return pulumi.get(self, "version_id")
133
133
 
@@ -175,7 +175,7 @@ class _AppEngineVersionIamBindingState:
175
175
  version_id: Optional[pulumi.Input[builtins.str]] = None):
176
176
  """
177
177
  Input properties used for looking up and filtering AppEngineVersionIamBinding resources.
178
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
178
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
179
179
  :param pulumi.Input['AppEngineVersionIamBindingConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
180
180
  Structure is documented below.
181
181
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
@@ -196,7 +196,7 @@ class _AppEngineVersionIamBindingState:
196
196
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
197
197
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
198
198
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
199
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
199
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
200
200
  """
201
201
  if app_id is not None:
202
202
  pulumi.set(__self__, "app_id", app_id)
@@ -219,7 +219,7 @@ class _AppEngineVersionIamBindingState:
219
219
  @pulumi.getter(name="appId")
220
220
  def app_id(self) -> Optional[pulumi.Input[builtins.str]]:
221
221
  """
222
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
222
+ Used to find the parent resource to bind the IAM policy to
223
223
  """
224
224
  return pulumi.get(self, "app_id")
225
225
 
@@ -317,7 +317,7 @@ class _AppEngineVersionIamBindingState:
317
317
  @pulumi.getter(name="versionId")
318
318
  def version_id(self) -> Optional[pulumi.Input[builtins.str]]:
319
319
  """
320
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
320
+ Used to find the parent resource to bind the IAM policy to
321
321
  """
322
322
  return pulumi.get(self, "version_id")
323
323
 
@@ -636,7 +636,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
636
636
 
637
637
  :param str resource_name: The name of the resource.
638
638
  :param pulumi.ResourceOptions opts: Options for the resource.
639
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
639
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
640
640
  :param pulumi.Input[Union['AppEngineVersionIamBindingConditionArgs', 'AppEngineVersionIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
641
641
  Structure is documented below.
642
642
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] members: Identities that will be granted the privilege in `role`.
@@ -656,7 +656,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
656
656
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
657
657
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
658
658
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
659
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
659
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
660
660
  """
661
661
  ...
662
662
  @overload
@@ -1032,7 +1032,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
1032
1032
  :param str resource_name: The unique name of the resulting resource.
1033
1033
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1034
1034
  :param pulumi.ResourceOptions opts: Options for the resource.
1035
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
1035
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
1036
1036
  :param pulumi.Input[Union['AppEngineVersionIamBindingConditionArgs', 'AppEngineVersionIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
1037
1037
  Structure is documented below.
1038
1038
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
@@ -1053,7 +1053,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
1053
1053
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
1054
1054
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
1055
1055
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
1056
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
1056
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
1057
1057
  """
1058
1058
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1059
1059
 
@@ -1073,7 +1073,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
1073
1073
  @pulumi.getter(name="appId")
1074
1074
  def app_id(self) -> pulumi.Output[builtins.str]:
1075
1075
  """
1076
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
1076
+ Used to find the parent resource to bind the IAM policy to
1077
1077
  """
1078
1078
  return pulumi.get(self, "app_id")
1079
1079
 
@@ -1143,7 +1143,7 @@ class AppEngineVersionIamBinding(pulumi.CustomResource):
1143
1143
  @pulumi.getter(name="versionId")
1144
1144
  def version_id(self) -> pulumi.Output[builtins.str]:
1145
1145
  """
1146
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
1146
+ Used to find the parent resource to bind the IAM policy to
1147
1147
  """
1148
1148
  return pulumi.get(self, "version_id")
1149
1149
 
@@ -31,7 +31,7 @@ class AppEngineVersionIamMemberArgs:
31
31
  project: Optional[pulumi.Input[builtins.str]] = None):
32
32
  """
33
33
  The set of arguments for constructing a AppEngineVersionIamMember resource.
34
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
34
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
35
35
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
36
36
  Each entry can have one of the following values:
37
37
  * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
@@ -47,7 +47,7 @@ class AppEngineVersionIamMemberArgs:
47
47
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
48
48
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
49
49
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
50
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
50
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
51
51
  :param pulumi.Input['AppEngineVersionIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
52
52
  Structure is documented below.
53
53
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
@@ -67,7 +67,7 @@ class AppEngineVersionIamMemberArgs:
67
67
  @pulumi.getter(name="appId")
68
68
  def app_id(self) -> pulumi.Input[builtins.str]:
69
69
  """
70
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
70
+ Used to find the parent resource to bind the IAM policy to
71
71
  """
72
72
  return pulumi.get(self, "app_id")
73
73
 
@@ -127,7 +127,7 @@ class AppEngineVersionIamMemberArgs:
127
127
  @pulumi.getter(name="versionId")
128
128
  def version_id(self) -> pulumi.Input[builtins.str]:
129
129
  """
130
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
130
+ Used to find the parent resource to bind the IAM policy to
131
131
  """
132
132
  return pulumi.get(self, "version_id")
133
133
 
@@ -175,7 +175,7 @@ class _AppEngineVersionIamMemberState:
175
175
  version_id: Optional[pulumi.Input[builtins.str]] = None):
176
176
  """
177
177
  Input properties used for looking up and filtering AppEngineVersionIamMember resources.
178
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
178
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
179
179
  :param pulumi.Input['AppEngineVersionIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
180
180
  Structure is documented below.
181
181
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
@@ -196,7 +196,7 @@ class _AppEngineVersionIamMemberState:
196
196
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
197
197
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
198
198
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
199
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
199
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
200
200
  """
201
201
  if app_id is not None:
202
202
  pulumi.set(__self__, "app_id", app_id)
@@ -219,7 +219,7 @@ class _AppEngineVersionIamMemberState:
219
219
  @pulumi.getter(name="appId")
220
220
  def app_id(self) -> Optional[pulumi.Input[builtins.str]]:
221
221
  """
222
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
222
+ Used to find the parent resource to bind the IAM policy to
223
223
  """
224
224
  return pulumi.get(self, "app_id")
225
225
 
@@ -317,7 +317,7 @@ class _AppEngineVersionIamMemberState:
317
317
  @pulumi.getter(name="versionId")
318
318
  def version_id(self) -> Optional[pulumi.Input[builtins.str]]:
319
319
  """
320
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
320
+ Used to find the parent resource to bind the IAM policy to
321
321
  """
322
322
  return pulumi.get(self, "version_id")
323
323
 
@@ -636,7 +636,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
636
636
 
637
637
  :param str resource_name: The name of the resource.
638
638
  :param pulumi.ResourceOptions opts: Options for the resource.
639
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
639
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
640
640
  :param pulumi.Input[Union['AppEngineVersionIamMemberConditionArgs', 'AppEngineVersionIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
641
641
  Structure is documented below.
642
642
  :param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
@@ -656,7 +656,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
656
656
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
657
657
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
658
658
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
659
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
659
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
660
660
  """
661
661
  ...
662
662
  @overload
@@ -1032,7 +1032,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
1032
1032
  :param str resource_name: The unique name of the resulting resource.
1033
1033
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1034
1034
  :param pulumi.ResourceOptions opts: Options for the resource.
1035
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
1035
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
1036
1036
  :param pulumi.Input[Union['AppEngineVersionIamMemberConditionArgs', 'AppEngineVersionIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
1037
1037
  Structure is documented below.
1038
1038
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
@@ -1053,7 +1053,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
1053
1053
  `iap.AppEngineVersionIamBinding` can be used per role. Note that custom roles must be of the format
1054
1054
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
1055
1055
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
1056
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
1056
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
1057
1057
  """
1058
1058
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1059
1059
 
@@ -1073,7 +1073,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
1073
1073
  @pulumi.getter(name="appId")
1074
1074
  def app_id(self) -> pulumi.Output[builtins.str]:
1075
1075
  """
1076
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
1076
+ Used to find the parent resource to bind the IAM policy to
1077
1077
  """
1078
1078
  return pulumi.get(self, "app_id")
1079
1079
 
@@ -1143,7 +1143,7 @@ class AppEngineVersionIamMember(pulumi.CustomResource):
1143
1143
  @pulumi.getter(name="versionId")
1144
1144
  def version_id(self) -> pulumi.Output[builtins.str]:
1145
1145
  """
1146
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
1146
+ Used to find the parent resource to bind the IAM policy to
1147
1147
  """
1148
1148
  return pulumi.get(self, "version_id")
1149
1149
 
@@ -27,11 +27,11 @@ class AppEngineVersionIamPolicyArgs:
27
27
  project: Optional[pulumi.Input[builtins.str]] = None):
28
28
  """
29
29
  The set of arguments for constructing a AppEngineVersionIamPolicy resource.
30
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
30
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
31
31
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
32
32
  a `organizations_get_iam_policy` data source.
33
33
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
34
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
34
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
35
35
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
36
36
  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.
37
37
  """
@@ -46,7 +46,7 @@ class AppEngineVersionIamPolicyArgs:
46
46
  @pulumi.getter(name="appId")
47
47
  def app_id(self) -> pulumi.Input[builtins.str]:
48
48
  """
49
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
49
+ Used to find the parent resource to bind the IAM policy to
50
50
  """
51
51
  return pulumi.get(self, "app_id")
52
52
 
@@ -83,7 +83,7 @@ class AppEngineVersionIamPolicyArgs:
83
83
  @pulumi.getter(name="versionId")
84
84
  def version_id(self) -> pulumi.Input[builtins.str]:
85
85
  """
86
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
86
+ Used to find the parent resource to bind the IAM policy to
87
87
  """
88
88
  return pulumi.get(self, "version_id")
89
89
 
@@ -116,14 +116,14 @@ class _AppEngineVersionIamPolicyState:
116
116
  version_id: Optional[pulumi.Input[builtins.str]] = None):
117
117
  """
118
118
  Input properties used for looking up and filtering AppEngineVersionIamPolicy resources.
119
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
119
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
120
120
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
121
121
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
122
122
  a `organizations_get_iam_policy` data source.
123
123
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
124
124
  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.
125
125
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
126
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
126
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
127
127
  """
128
128
  if app_id is not None:
129
129
  pulumi.set(__self__, "app_id", app_id)
@@ -142,7 +142,7 @@ class _AppEngineVersionIamPolicyState:
142
142
  @pulumi.getter(name="appId")
143
143
  def app_id(self) -> Optional[pulumi.Input[builtins.str]]:
144
144
  """
145
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
145
+ Used to find the parent resource to bind the IAM policy to
146
146
  """
147
147
  return pulumi.get(self, "app_id")
148
148
 
@@ -204,7 +204,7 @@ class _AppEngineVersionIamPolicyState:
204
204
  @pulumi.getter(name="versionId")
205
205
  def version_id(self) -> Optional[pulumi.Input[builtins.str]]:
206
206
  """
207
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
207
+ Used to find the parent resource to bind the IAM policy to
208
208
  """
209
209
  return pulumi.get(self, "version_id")
210
210
 
@@ -521,13 +521,13 @@ class AppEngineVersionIamPolicy(pulumi.CustomResource):
521
521
 
522
522
  :param str resource_name: The name of the resource.
523
523
  :param pulumi.ResourceOptions opts: Options for the resource.
524
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
524
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
525
525
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
526
526
  a `organizations_get_iam_policy` data source.
527
527
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
528
528
  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.
529
529
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
530
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
530
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
531
531
  """
532
532
  ...
533
533
  @overload
@@ -895,14 +895,14 @@ class AppEngineVersionIamPolicy(pulumi.CustomResource):
895
895
  :param str resource_name: The unique name of the resulting resource.
896
896
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
897
897
  :param pulumi.ResourceOptions opts: Options for the resource.
898
- :param pulumi.Input[builtins.str] app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
898
+ :param pulumi.Input[builtins.str] app_id: Used to find the parent resource to bind the IAM policy to
899
899
  :param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
900
900
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
901
901
  a `organizations_get_iam_policy` data source.
902
902
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
903
903
  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.
904
904
  :param pulumi.Input[builtins.str] service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
905
- :param pulumi.Input[builtins.str] version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
905
+ :param pulumi.Input[builtins.str] version_id: Used to find the parent resource to bind the IAM policy to
906
906
  """
907
907
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
908
908
 
@@ -920,7 +920,7 @@ class AppEngineVersionIamPolicy(pulumi.CustomResource):
920
920
  @pulumi.getter(name="appId")
921
921
  def app_id(self) -> pulumi.Output[builtins.str]:
922
922
  """
923
- Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
923
+ Used to find the parent resource to bind the IAM policy to
924
924
  """
925
925
  return pulumi.get(self, "app_id")
926
926
 
@@ -962,7 +962,7 @@ class AppEngineVersionIamPolicy(pulumi.CustomResource):
962
962
  @pulumi.getter(name="versionId")
963
963
  def version_id(self) -> pulumi.Output[builtins.str]:
964
964
  """
965
- Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
965
+ Used to find the parent resource to bind the IAM policy to
966
966
  """
967
967
  return pulumi.get(self, "version_id")
968
968
 
@@ -121,10 +121,10 @@ def get_app_engine_service_iam_policy(app_id: Optional[builtins.str] = None,
121
121
  ```
122
122
 
123
123
 
124
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
124
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
125
125
  :param builtins.str project: The ID of the project in which the resource belongs.
126
126
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
127
- :param builtins.str service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
127
+ :param builtins.str service: Used to find the parent resource to bind the IAM policy to
128
128
  """
129
129
  __args__ = dict()
130
130
  __args__['appId'] = app_id
@@ -159,10 +159,10 @@ def get_app_engine_service_iam_policy_output(app_id: Optional[pulumi.Input[built
159
159
  ```
160
160
 
161
161
 
162
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
162
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
163
163
  :param builtins.str project: The ID of the project in which the resource belongs.
164
164
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
165
- :param builtins.str service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
165
+ :param builtins.str service: Used to find the parent resource to bind the IAM policy to
166
166
  """
167
167
  __args__ = dict()
168
168
  __args__['appId'] = app_id
@@ -132,11 +132,11 @@ def get_app_engine_version_iam_policy(app_id: Optional[builtins.str] = None,
132
132
  ```
133
133
 
134
134
 
135
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
135
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
136
136
  :param builtins.str project: The ID of the project in which the resource belongs.
137
137
  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.
138
138
  :param builtins.str service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
139
- :param builtins.str version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
139
+ :param builtins.str version_id: Used to find the parent resource to bind the IAM policy to
140
140
  """
141
141
  __args__ = dict()
142
142
  __args__['appId'] = app_id
@@ -175,11 +175,11 @@ def get_app_engine_version_iam_policy_output(app_id: Optional[pulumi.Input[built
175
175
  ```
176
176
 
177
177
 
178
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
178
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
179
179
  :param builtins.str project: The ID of the project in which the resource belongs.
180
180
  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.
181
181
  :param builtins.str service: Service id of the App Engine application Used to find the parent resource to bind the IAM policy to
182
- :param builtins.str version_id: Version id of the App Engine application Used to find the parent resource to bind the IAM policy to
182
+ :param builtins.str version_id: Used to find the parent resource to bind the IAM policy to
183
183
  """
184
184
  __args__ = dict()
185
185
  __args__['appId'] = app_id
@@ -121,6 +121,7 @@ def get_tunnel_dest_group_iam_policy(dest_group: Optional[builtins.str] = None,
121
121
  ```
122
122
 
123
123
 
124
+ :param builtins.str dest_group: Used to find the parent resource to bind the IAM policy to
124
125
  :param builtins.str project: The ID of the project in which the resource belongs.
125
126
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
126
127
  :param builtins.str region: The region of the tunnel group. Must be the same as the network resources in the group.
@@ -161,6 +162,7 @@ def get_tunnel_dest_group_iam_policy_output(dest_group: Optional[pulumi.Input[bu
161
162
  ```
162
163
 
163
164
 
165
+ :param builtins.str dest_group: Used to find the parent resource to bind the IAM policy to
164
166
  :param builtins.str project: The ID of the project in which the resource belongs.
165
167
  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.
166
168
  :param builtins.str region: The region of the tunnel group. Must be the same as the network resources in the group.
@@ -124,6 +124,9 @@ def get_tunnel_instance_iam_policy(instance: Optional[builtins.str] = None,
124
124
  :param builtins.str instance: Used to find the parent resource to bind the IAM policy to
125
125
  :param builtins.str project: The ID of the project in which the resource belongs.
126
126
  If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
127
+ :param builtins.str zone: Used to find the parent resource to bind the IAM policy to. If not specified,
128
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
129
+ zone is specified, it is taken from the provider configuration.
127
130
  """
128
131
  __args__ = dict()
129
132
  __args__['instance'] = instance
@@ -161,6 +164,9 @@ def get_tunnel_instance_iam_policy_output(instance: Optional[pulumi.Input[builti
161
164
  :param builtins.str instance: Used to find the parent resource to bind the IAM policy to
162
165
  :param builtins.str project: The ID of the project in which the resource belongs.
163
166
  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.
167
+ :param builtins.str zone: Used to find the parent resource to bind the IAM policy to. If not specified,
168
+ the value will be parsed from the identifier of the parent resource. If no zone is provided in the parent identifier and no
169
+ zone is specified, it is taken from the provider configuration.
164
170
  """
165
171
  __args__ = dict()
166
172
  __args__['instance'] = instance
@@ -123,6 +123,9 @@ def get_web_region_backend_service_iam_policy(project: Optional[builtins.str] =
123
123
 
124
124
  :param builtins.str project: The ID of the project in which the resource belongs.
125
125
  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.
126
+ :param builtins.str region: Used to find the parent resource to bind the IAM policy to. If not specified,
127
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
128
+ region is specified, it is taken from the provider configuration.
126
129
  :param builtins.str web_region_backend_service: Used to find the parent resource to bind the IAM policy to
127
130
  """
128
131
  __args__ = dict()
@@ -160,6 +163,9 @@ def get_web_region_backend_service_iam_policy_output(project: Optional[pulumi.In
160
163
 
161
164
  :param builtins.str project: The ID of the project in which the resource belongs.
162
165
  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.
166
+ :param builtins.str region: Used to find the parent resource to bind the IAM policy to. If not specified,
167
+ the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
168
+ region is specified, it is taken from the provider configuration.
163
169
  :param builtins.str web_region_backend_service: Used to find the parent resource to bind the IAM policy to
164
170
  """
165
171
  __args__ = dict()
@@ -110,7 +110,7 @@ def get_web_type_app_engine_iam_policy(app_id: Optional[builtins.str] = None,
110
110
  ```
111
111
 
112
112
 
113
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
113
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
114
114
  :param builtins.str project: The ID of the project in which the resource belongs.
115
115
  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.
116
116
  """
@@ -143,7 +143,7 @@ def get_web_type_app_engine_iam_policy_output(app_id: Optional[pulumi.Input[buil
143
143
  ```
144
144
 
145
145
 
146
- :param builtins.str app_id: Id of the App Engine application. Used to find the parent resource to bind the IAM policy to
146
+ :param builtins.str app_id: Used to find the parent resource to bind the IAM policy to
147
147
  :param builtins.str project: The ID of the project in which the resource belongs.
148
148
  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.
149
149
  """