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
@@ -46,6 +46,11 @@ class WorkstationIamBindingArgs:
46
46
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
47
47
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
48
48
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
49
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
50
+ Used to find the parent resource to bind the IAM policy to
51
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
52
+ Used to find the parent resource to bind the IAM policy to
53
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
49
54
  :param pulumi.Input[builtins.str] location: The location where the workstation parent resources reside.
50
55
  Used to find the parent resource to bind the IAM policy to. If not specified,
51
56
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -104,6 +109,10 @@ class WorkstationIamBindingArgs:
104
109
  @property
105
110
  @pulumi.getter(name="workstationClusterId")
106
111
  def workstation_cluster_id(self) -> pulumi.Input[builtins.str]:
112
+ """
113
+ The ID of the parent workstation cluster.
114
+ Used to find the parent resource to bind the IAM policy to
115
+ """
107
116
  return pulumi.get(self, "workstation_cluster_id")
108
117
 
109
118
  @workstation_cluster_id.setter
@@ -113,6 +122,10 @@ class WorkstationIamBindingArgs:
113
122
  @property
114
123
  @pulumi.getter(name="workstationConfigId")
115
124
  def workstation_config_id(self) -> pulumi.Input[builtins.str]:
125
+ """
126
+ The ID of the parent workstation cluster config.
127
+ Used to find the parent resource to bind the IAM policy to
128
+ """
116
129
  return pulumi.get(self, "workstation_config_id")
117
130
 
118
131
  @workstation_config_id.setter
@@ -122,6 +135,9 @@ class WorkstationIamBindingArgs:
122
135
  @property
123
136
  @pulumi.getter(name="workstationId")
124
137
  def workstation_id(self) -> pulumi.Input[builtins.str]:
138
+ """
139
+ Used to find the parent resource to bind the IAM policy to
140
+ """
125
141
  return pulumi.get(self, "workstation_id")
126
142
 
127
143
  @workstation_id.setter
@@ -201,6 +217,11 @@ class _WorkstationIamBindingState:
201
217
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
202
218
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
203
219
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
220
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
221
+ Used to find the parent resource to bind the IAM policy to
222
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
223
+ Used to find the parent resource to bind the IAM policy to
224
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
204
225
  """
205
226
  if condition is not None:
206
227
  pulumi.set(__self__, "condition", condition)
@@ -309,6 +330,10 @@ class _WorkstationIamBindingState:
309
330
  @property
310
331
  @pulumi.getter(name="workstationClusterId")
311
332
  def workstation_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
333
+ """
334
+ The ID of the parent workstation cluster.
335
+ Used to find the parent resource to bind the IAM policy to
336
+ """
312
337
  return pulumi.get(self, "workstation_cluster_id")
313
338
 
314
339
  @workstation_cluster_id.setter
@@ -318,6 +343,10 @@ class _WorkstationIamBindingState:
318
343
  @property
319
344
  @pulumi.getter(name="workstationConfigId")
320
345
  def workstation_config_id(self) -> Optional[pulumi.Input[builtins.str]]:
346
+ """
347
+ The ID of the parent workstation cluster config.
348
+ Used to find the parent resource to bind the IAM policy to
349
+ """
321
350
  return pulumi.get(self, "workstation_config_id")
322
351
 
323
352
  @workstation_config_id.setter
@@ -327,6 +356,9 @@ class _WorkstationIamBindingState:
327
356
  @property
328
357
  @pulumi.getter(name="workstationId")
329
358
  def workstation_id(self) -> Optional[pulumi.Input[builtins.str]]:
359
+ """
360
+ Used to find the parent resource to bind the IAM policy to
361
+ """
330
362
  return pulumi.get(self, "workstation_id")
331
363
 
332
364
  @workstation_id.setter
@@ -410,6 +442,11 @@ class WorkstationIamBinding(pulumi.CustomResource):
410
442
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
411
443
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
412
444
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
445
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
446
+ Used to find the parent resource to bind the IAM policy to
447
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
448
+ Used to find the parent resource to bind the IAM policy to
449
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
413
450
  """
414
451
  ...
415
452
  @overload
@@ -554,6 +591,11 @@ class WorkstationIamBinding(pulumi.CustomResource):
554
591
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
555
592
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
556
593
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
594
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
595
+ Used to find the parent resource to bind the IAM policy to
596
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
597
+ Used to find the parent resource to bind the IAM policy to
598
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
557
599
  """
558
600
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
559
601
 
@@ -634,15 +676,26 @@ class WorkstationIamBinding(pulumi.CustomResource):
634
676
  @property
635
677
  @pulumi.getter(name="workstationClusterId")
636
678
  def workstation_cluster_id(self) -> pulumi.Output[builtins.str]:
679
+ """
680
+ The ID of the parent workstation cluster.
681
+ Used to find the parent resource to bind the IAM policy to
682
+ """
637
683
  return pulumi.get(self, "workstation_cluster_id")
638
684
 
639
685
  @property
640
686
  @pulumi.getter(name="workstationConfigId")
641
687
  def workstation_config_id(self) -> pulumi.Output[builtins.str]:
688
+ """
689
+ The ID of the parent workstation cluster config.
690
+ Used to find the parent resource to bind the IAM policy to
691
+ """
642
692
  return pulumi.get(self, "workstation_config_id")
643
693
 
644
694
  @property
645
695
  @pulumi.getter(name="workstationId")
646
696
  def workstation_id(self) -> pulumi.Output[builtins.str]:
697
+ """
698
+ Used to find the parent resource to bind the IAM policy to
699
+ """
647
700
  return pulumi.get(self, "workstation_id")
648
701
 
@@ -46,6 +46,11 @@ class WorkstationIamMemberArgs:
46
46
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
47
47
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
48
48
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
49
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
50
+ Used to find the parent resource to bind the IAM policy to
51
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
52
+ Used to find the parent resource to bind the IAM policy to
53
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
49
54
  :param pulumi.Input[builtins.str] location: The location where the workstation parent resources reside.
50
55
  Used to find the parent resource to bind the IAM policy to. If not specified,
51
56
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -104,6 +109,10 @@ class WorkstationIamMemberArgs:
104
109
  @property
105
110
  @pulumi.getter(name="workstationClusterId")
106
111
  def workstation_cluster_id(self) -> pulumi.Input[builtins.str]:
112
+ """
113
+ The ID of the parent workstation cluster.
114
+ Used to find the parent resource to bind the IAM policy to
115
+ """
107
116
  return pulumi.get(self, "workstation_cluster_id")
108
117
 
109
118
  @workstation_cluster_id.setter
@@ -113,6 +122,10 @@ class WorkstationIamMemberArgs:
113
122
  @property
114
123
  @pulumi.getter(name="workstationConfigId")
115
124
  def workstation_config_id(self) -> pulumi.Input[builtins.str]:
125
+ """
126
+ The ID of the parent workstation cluster config.
127
+ Used to find the parent resource to bind the IAM policy to
128
+ """
116
129
  return pulumi.get(self, "workstation_config_id")
117
130
 
118
131
  @workstation_config_id.setter
@@ -122,6 +135,9 @@ class WorkstationIamMemberArgs:
122
135
  @property
123
136
  @pulumi.getter(name="workstationId")
124
137
  def workstation_id(self) -> pulumi.Input[builtins.str]:
138
+ """
139
+ Used to find the parent resource to bind the IAM policy to
140
+ """
125
141
  return pulumi.get(self, "workstation_id")
126
142
 
127
143
  @workstation_id.setter
@@ -201,6 +217,11 @@ class _WorkstationIamMemberState:
201
217
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
202
218
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
203
219
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
220
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
221
+ Used to find the parent resource to bind the IAM policy to
222
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
223
+ Used to find the parent resource to bind the IAM policy to
224
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
204
225
  """
205
226
  if condition is not None:
206
227
  pulumi.set(__self__, "condition", condition)
@@ -309,6 +330,10 @@ class _WorkstationIamMemberState:
309
330
  @property
310
331
  @pulumi.getter(name="workstationClusterId")
311
332
  def workstation_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
333
+ """
334
+ The ID of the parent workstation cluster.
335
+ Used to find the parent resource to bind the IAM policy to
336
+ """
312
337
  return pulumi.get(self, "workstation_cluster_id")
313
338
 
314
339
  @workstation_cluster_id.setter
@@ -318,6 +343,10 @@ class _WorkstationIamMemberState:
318
343
  @property
319
344
  @pulumi.getter(name="workstationConfigId")
320
345
  def workstation_config_id(self) -> Optional[pulumi.Input[builtins.str]]:
346
+ """
347
+ The ID of the parent workstation cluster config.
348
+ Used to find the parent resource to bind the IAM policy to
349
+ """
321
350
  return pulumi.get(self, "workstation_config_id")
322
351
 
323
352
  @workstation_config_id.setter
@@ -327,6 +356,9 @@ class _WorkstationIamMemberState:
327
356
  @property
328
357
  @pulumi.getter(name="workstationId")
329
358
  def workstation_id(self) -> Optional[pulumi.Input[builtins.str]]:
359
+ """
360
+ Used to find the parent resource to bind the IAM policy to
361
+ """
330
362
  return pulumi.get(self, "workstation_id")
331
363
 
332
364
  @workstation_id.setter
@@ -410,6 +442,11 @@ class WorkstationIamMember(pulumi.CustomResource):
410
442
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
411
443
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
412
444
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
445
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
446
+ Used to find the parent resource to bind the IAM policy to
447
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
448
+ Used to find the parent resource to bind the IAM policy to
449
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
413
450
  """
414
451
  ...
415
452
  @overload
@@ -554,6 +591,11 @@ class WorkstationIamMember(pulumi.CustomResource):
554
591
  :param pulumi.Input[builtins.str] role: The role that should be applied. Only one
555
592
  `workstations.WorkstationIamBinding` can be used per role. Note that custom roles must be of the format
556
593
  `[projects|organizations]/{parent-name}/roles/{role-name}`.
594
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
595
+ Used to find the parent resource to bind the IAM policy to
596
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
597
+ Used to find the parent resource to bind the IAM policy to
598
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
557
599
  """
558
600
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
559
601
 
@@ -634,15 +676,26 @@ class WorkstationIamMember(pulumi.CustomResource):
634
676
  @property
635
677
  @pulumi.getter(name="workstationClusterId")
636
678
  def workstation_cluster_id(self) -> pulumi.Output[builtins.str]:
679
+ """
680
+ The ID of the parent workstation cluster.
681
+ Used to find the parent resource to bind the IAM policy to
682
+ """
637
683
  return pulumi.get(self, "workstation_cluster_id")
638
684
 
639
685
  @property
640
686
  @pulumi.getter(name="workstationConfigId")
641
687
  def workstation_config_id(self) -> pulumi.Output[builtins.str]:
688
+ """
689
+ The ID of the parent workstation cluster config.
690
+ Used to find the parent resource to bind the IAM policy to
691
+ """
642
692
  return pulumi.get(self, "workstation_config_id")
643
693
 
644
694
  @property
645
695
  @pulumi.getter(name="workstationId")
646
696
  def workstation_id(self) -> pulumi.Output[builtins.str]:
697
+ """
698
+ Used to find the parent resource to bind the IAM policy to
699
+ """
647
700
  return pulumi.get(self, "workstation_id")
648
701
 
@@ -30,6 +30,11 @@ class WorkstationIamPolicyArgs:
30
30
  The set of arguments for constructing a WorkstationIamPolicy resource.
31
31
  :param pulumi.Input[builtins.str] policy_data: The policy data generated by
32
32
  a `organizations_get_iam_policy` data source.
33
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
34
+ Used to find the parent resource to bind the IAM policy to
35
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
36
+ Used to find the parent resource to bind the IAM policy to
37
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
33
38
  :param pulumi.Input[builtins.str] location: The location where the workstation parent resources reside.
34
39
  Used to find the parent resource to bind the IAM policy to. If not specified,
35
40
  the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
@@ -62,6 +67,10 @@ class WorkstationIamPolicyArgs:
62
67
  @property
63
68
  @pulumi.getter(name="workstationClusterId")
64
69
  def workstation_cluster_id(self) -> pulumi.Input[builtins.str]:
70
+ """
71
+ The ID of the parent workstation cluster.
72
+ Used to find the parent resource to bind the IAM policy to
73
+ """
65
74
  return pulumi.get(self, "workstation_cluster_id")
66
75
 
67
76
  @workstation_cluster_id.setter
@@ -71,6 +80,10 @@ class WorkstationIamPolicyArgs:
71
80
  @property
72
81
  @pulumi.getter(name="workstationConfigId")
73
82
  def workstation_config_id(self) -> pulumi.Input[builtins.str]:
83
+ """
84
+ The ID of the parent workstation cluster config.
85
+ Used to find the parent resource to bind the IAM policy to
86
+ """
74
87
  return pulumi.get(self, "workstation_config_id")
75
88
 
76
89
  @workstation_config_id.setter
@@ -80,6 +93,9 @@ class WorkstationIamPolicyArgs:
80
93
  @property
81
94
  @pulumi.getter(name="workstationId")
82
95
  def workstation_id(self) -> pulumi.Input[builtins.str]:
96
+ """
97
+ Used to find the parent resource to bind the IAM policy to
98
+ """
83
99
  return pulumi.get(self, "workstation_id")
84
100
 
85
101
  @workstation_id.setter
@@ -136,6 +152,11 @@ class _WorkstationIamPolicyState:
136
152
  a `organizations_get_iam_policy` data source.
137
153
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
138
154
  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.
155
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
156
+ Used to find the parent resource to bind the IAM policy to
157
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
158
+ Used to find the parent resource to bind the IAM policy to
159
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
139
160
  """
140
161
  if etag is not None:
141
162
  pulumi.set(__self__, "etag", etag)
@@ -208,6 +229,10 @@ class _WorkstationIamPolicyState:
208
229
  @property
209
230
  @pulumi.getter(name="workstationClusterId")
210
231
  def workstation_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
232
+ """
233
+ The ID of the parent workstation cluster.
234
+ Used to find the parent resource to bind the IAM policy to
235
+ """
211
236
  return pulumi.get(self, "workstation_cluster_id")
212
237
 
213
238
  @workstation_cluster_id.setter
@@ -217,6 +242,10 @@ class _WorkstationIamPolicyState:
217
242
  @property
218
243
  @pulumi.getter(name="workstationConfigId")
219
244
  def workstation_config_id(self) -> Optional[pulumi.Input[builtins.str]]:
245
+ """
246
+ The ID of the parent workstation cluster config.
247
+ Used to find the parent resource to bind the IAM policy to
248
+ """
220
249
  return pulumi.get(self, "workstation_config_id")
221
250
 
222
251
  @workstation_config_id.setter
@@ -226,6 +255,9 @@ class _WorkstationIamPolicyState:
226
255
  @property
227
256
  @pulumi.getter(name="workstationId")
228
257
  def workstation_id(self) -> Optional[pulumi.Input[builtins.str]]:
258
+ """
259
+ Used to find the parent resource to bind the IAM policy to
260
+ """
229
261
  return pulumi.get(self, "workstation_id")
230
262
 
231
263
  @workstation_id.setter
@@ -295,6 +327,11 @@ class WorkstationIamPolicy(pulumi.CustomResource):
295
327
  a `organizations_get_iam_policy` data source.
296
328
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
297
329
  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.
330
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
331
+ Used to find the parent resource to bind the IAM policy to
332
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
333
+ Used to find the parent resource to bind the IAM policy to
334
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
298
335
  """
299
336
  ...
300
337
  @overload
@@ -419,6 +456,11 @@ class WorkstationIamPolicy(pulumi.CustomResource):
419
456
  a `organizations_get_iam_policy` data source.
420
457
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
421
458
  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.
459
+ :param pulumi.Input[builtins.str] workstation_cluster_id: The ID of the parent workstation cluster.
460
+ Used to find the parent resource to bind the IAM policy to
461
+ :param pulumi.Input[builtins.str] workstation_config_id: The ID of the parent workstation cluster config.
462
+ Used to find the parent resource to bind the IAM policy to
463
+ :param pulumi.Input[builtins.str] workstation_id: Used to find the parent resource to bind the IAM policy to
422
464
  """
423
465
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
424
466
 
@@ -473,15 +515,26 @@ class WorkstationIamPolicy(pulumi.CustomResource):
473
515
  @property
474
516
  @pulumi.getter(name="workstationClusterId")
475
517
  def workstation_cluster_id(self) -> pulumi.Output[builtins.str]:
518
+ """
519
+ The ID of the parent workstation cluster.
520
+ Used to find the parent resource to bind the IAM policy to
521
+ """
476
522
  return pulumi.get(self, "workstation_cluster_id")
477
523
 
478
524
  @property
479
525
  @pulumi.getter(name="workstationConfigId")
480
526
  def workstation_config_id(self) -> pulumi.Output[builtins.str]:
527
+ """
528
+ The ID of the parent workstation cluster config.
529
+ Used to find the parent resource to bind the IAM policy to
530
+ """
481
531
  return pulumi.get(self, "workstation_config_id")
482
532
 
483
533
  @property
484
534
  @pulumi.getter(name="workstationId")
485
535
  def workstation_id(self) -> pulumi.Output[builtins.str]:
536
+ """
537
+ Used to find the parent resource to bind the IAM policy to
538
+ """
486
539
  return pulumi.get(self, "workstation_id")
487
540
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_gcp
3
- Version: 8.32.0a1747377897
3
+ Version: 8.32.0a1747834582
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io