pulumi-gcp 8.25.0a1743489606__py3-none-any.whl → 8.25.0a1743706148__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 (126) hide show
  1. pulumi_gcp/__init__.py +104 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  11. pulumi_gcp/bigtable/table.py +8 -8
  12. pulumi_gcp/chronicle/data_access_label.py +2 -2
  13. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  14. pulumi_gcp/chronicle/reference_list.py +16 -0
  15. pulumi_gcp/chronicle/retrohunt.py +16 -0
  16. pulumi_gcp/chronicle/rule.py +16 -0
  17. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  18. pulumi_gcp/chronicle/watchlist.py +16 -0
  19. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  20. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  21. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  22. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  23. pulumi_gcp/compute/__init__.py +1 -0
  24. pulumi_gcp/compute/_inputs.py +2011 -43
  25. pulumi_gcp/compute/backend_service.py +121 -3
  26. pulumi_gcp/compute/get_backend_service.py +15 -4
  27. pulumi_gcp/compute/get_instance.py +12 -1
  28. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  29. pulumi_gcp/compute/get_router.py +12 -1
  30. pulumi_gcp/compute/get_subnetwork.py +43 -1
  31. pulumi_gcp/compute/instance.py +47 -0
  32. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  33. pulumi_gcp/compute/instance_from_template.py +47 -0
  34. pulumi_gcp/compute/outputs.py +3578 -139
  35. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  36. pulumi_gcp/compute/router.py +54 -0
  37. pulumi_gcp/compute/subnetwork.py +35 -5
  38. pulumi_gcp/config/__init__.pyi +2 -0
  39. pulumi_gcp/config/outputs.py +27 -0
  40. pulumi_gcp/config/vars.py +4 -0
  41. pulumi_gcp/container/_inputs.py +12 -12
  42. pulumi_gcp/container/cluster.py +47 -0
  43. pulumi_gcp/container/get_cluster.py +12 -1
  44. pulumi_gcp/container/get_registry_image.py +4 -0
  45. pulumi_gcp/container/get_registry_repository.py +4 -0
  46. pulumi_gcp/container/outputs.py +8 -8
  47. pulumi_gcp/container/registry.py +4 -0
  48. pulumi_gcp/datafusion/instance.py +68 -0
  49. pulumi_gcp/dataproc/__init__.py +8 -0
  50. pulumi_gcp/dataproc/_inputs.py +196 -0
  51. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  52. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  53. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  54. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  55. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  56. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  57. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  58. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  59. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  60. pulumi_gcp/dataproc/outputs.py +112 -0
  61. pulumi_gcp/datastream/_inputs.py +311 -94
  62. pulumi_gcp/datastream/connection_profile.py +40 -0
  63. pulumi_gcp/datastream/outputs.py +244 -51
  64. pulumi_gcp/datastream/stream.py +216 -0
  65. pulumi_gcp/discoveryengine/__init__.py +1 -0
  66. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  67. pulumi_gcp/eventarc/__init__.py +1 -0
  68. pulumi_gcp/eventarc/enrollment.py +980 -0
  69. pulumi_gcp/firebase/__init__.py +1 -0
  70. pulumi_gcp/firebase/_inputs.py +484 -0
  71. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  72. pulumi_gcp/firebase/outputs.py +333 -0
  73. pulumi_gcp/identityplatform/_inputs.py +91 -0
  74. pulumi_gcp/identityplatform/outputs.py +73 -0
  75. pulumi_gcp/identityplatform/tenant.py +56 -0
  76. pulumi_gcp/managedkafka/cluster.py +2 -2
  77. pulumi_gcp/memorystore/__init__.py +1 -0
  78. pulumi_gcp/memorystore/_inputs.py +826 -0
  79. pulumi_gcp/memorystore/get_instance.py +23 -1
  80. pulumi_gcp/memorystore/instance.py +344 -23
  81. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  82. pulumi_gcp/memorystore/outputs.py +889 -8
  83. pulumi_gcp/networksecurity/_inputs.py +473 -0
  84. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  85. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  86. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  87. pulumi_gcp/networksecurity/outputs.py +291 -1
  88. pulumi_gcp/networksecurity/security_profile.py +8 -0
  89. pulumi_gcp/organizations/__init__.py +1 -0
  90. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/organizations/outputs.py +96 -0
  92. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  93. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  94. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  95. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  96. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  97. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  98. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  99. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  100. pulumi_gcp/parametermanager/outputs.py +11 -0
  101. pulumi_gcp/parametermanager/parameter.py +88 -0
  102. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  103. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  104. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  105. pulumi_gcp/provider.py +15 -0
  106. pulumi_gcp/pulumi-plugin.json +1 -1
  107. pulumi_gcp/redis/_inputs.py +136 -0
  108. pulumi_gcp/redis/cluster.py +54 -0
  109. pulumi_gcp/redis/outputs.py +114 -0
  110. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  111. pulumi_gcp/storage/__init__.py +4 -0
  112. pulumi_gcp/storage/_inputs.py +596 -0
  113. pulumi_gcp/storage/bucket.py +7 -7
  114. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  115. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  116. pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
  117. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  118. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  119. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  120. pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
  121. pulumi_gcp/storage/outputs.py +2132 -1312
  122. pulumi_gcp/workbench/instance.py +14 -2
  123. {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
  124. {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
  125. {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
  126. {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,895 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['MetastoreTableIamMemberArgs', 'MetastoreTableIamMember']
20
+
21
+ @pulumi.input_type
22
+ class MetastoreTableIamMemberArgs:
23
+ def __init__(__self__, *,
24
+ database_id: pulumi.Input[str],
25
+ member: pulumi.Input[str],
26
+ role: pulumi.Input[str],
27
+ service_id: pulumi.Input[str],
28
+ table: pulumi.Input[str],
29
+ condition: Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']] = None,
30
+ location: Optional[pulumi.Input[str]] = None,
31
+ project: Optional[pulumi.Input[str]] = None):
32
+ """
33
+ The set of arguments for constructing a MetastoreTableIamMember resource.
34
+ :param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
35
+ Each entry can have one of the following values:
36
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
37
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
38
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
39
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
40
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
41
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
42
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
43
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
44
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
45
+ :param pulumi.Input[str] role: The role that should be applied. Only one
46
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
47
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
48
+ :param pulumi.Input[str] table: Used to find the parent resource to bind the IAM policy to
49
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
50
+ If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
51
+ """
52
+ pulumi.set(__self__, "database_id", database_id)
53
+ pulumi.set(__self__, "member", member)
54
+ pulumi.set(__self__, "role", role)
55
+ pulumi.set(__self__, "service_id", service_id)
56
+ pulumi.set(__self__, "table", table)
57
+ if condition is not None:
58
+ pulumi.set(__self__, "condition", condition)
59
+ if location is not None:
60
+ pulumi.set(__self__, "location", location)
61
+ if project is not None:
62
+ pulumi.set(__self__, "project", project)
63
+
64
+ @property
65
+ @pulumi.getter(name="databaseId")
66
+ def database_id(self) -> pulumi.Input[str]:
67
+ return pulumi.get(self, "database_id")
68
+
69
+ @database_id.setter
70
+ def database_id(self, value: pulumi.Input[str]):
71
+ pulumi.set(self, "database_id", value)
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def member(self) -> pulumi.Input[str]:
76
+ """
77
+ Identities that will be granted the privilege in `role`.
78
+ Each entry can have one of the following values:
79
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
80
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
81
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
82
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
83
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
84
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
85
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
86
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
87
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
88
+ """
89
+ return pulumi.get(self, "member")
90
+
91
+ @member.setter
92
+ def member(self, value: pulumi.Input[str]):
93
+ pulumi.set(self, "member", value)
94
+
95
+ @property
96
+ @pulumi.getter
97
+ def role(self) -> pulumi.Input[str]:
98
+ """
99
+ The role that should be applied. Only one
100
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
101
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
102
+ """
103
+ return pulumi.get(self, "role")
104
+
105
+ @role.setter
106
+ def role(self, value: pulumi.Input[str]):
107
+ pulumi.set(self, "role", value)
108
+
109
+ @property
110
+ @pulumi.getter(name="serviceId")
111
+ def service_id(self) -> pulumi.Input[str]:
112
+ return pulumi.get(self, "service_id")
113
+
114
+ @service_id.setter
115
+ def service_id(self, value: pulumi.Input[str]):
116
+ pulumi.set(self, "service_id", value)
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def table(self) -> pulumi.Input[str]:
121
+ """
122
+ Used to find the parent resource to bind the IAM policy to
123
+ """
124
+ return pulumi.get(self, "table")
125
+
126
+ @table.setter
127
+ def table(self, value: pulumi.Input[str]):
128
+ pulumi.set(self, "table", value)
129
+
130
+ @property
131
+ @pulumi.getter
132
+ def condition(self) -> Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']]:
133
+ return pulumi.get(self, "condition")
134
+
135
+ @condition.setter
136
+ def condition(self, value: Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']]):
137
+ pulumi.set(self, "condition", value)
138
+
139
+ @property
140
+ @pulumi.getter
141
+ def location(self) -> Optional[pulumi.Input[str]]:
142
+ return pulumi.get(self, "location")
143
+
144
+ @location.setter
145
+ def location(self, value: Optional[pulumi.Input[str]]):
146
+ pulumi.set(self, "location", value)
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def project(self) -> Optional[pulumi.Input[str]]:
151
+ """
152
+ The ID of the project in which the resource belongs.
153
+ 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.
154
+ """
155
+ return pulumi.get(self, "project")
156
+
157
+ @project.setter
158
+ def project(self, value: Optional[pulumi.Input[str]]):
159
+ pulumi.set(self, "project", value)
160
+
161
+
162
+ @pulumi.input_type
163
+ class _MetastoreTableIamMemberState:
164
+ def __init__(__self__, *,
165
+ condition: Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']] = None,
166
+ database_id: Optional[pulumi.Input[str]] = None,
167
+ etag: Optional[pulumi.Input[str]] = None,
168
+ location: Optional[pulumi.Input[str]] = None,
169
+ member: Optional[pulumi.Input[str]] = None,
170
+ project: Optional[pulumi.Input[str]] = None,
171
+ role: Optional[pulumi.Input[str]] = None,
172
+ service_id: Optional[pulumi.Input[str]] = None,
173
+ table: Optional[pulumi.Input[str]] = None):
174
+ """
175
+ Input properties used for looking up and filtering MetastoreTableIamMember resources.
176
+ :param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
177
+ :param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
178
+ Each entry can have one of the following values:
179
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
180
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
181
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
182
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
183
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
184
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
185
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
186
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
187
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
188
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
189
+ 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.
190
+ :param pulumi.Input[str] role: The role that should be applied. Only one
191
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
192
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
193
+ :param pulumi.Input[str] table: Used to find the parent resource to bind the IAM policy to
194
+ """
195
+ if condition is not None:
196
+ pulumi.set(__self__, "condition", condition)
197
+ if database_id is not None:
198
+ pulumi.set(__self__, "database_id", database_id)
199
+ if etag is not None:
200
+ pulumi.set(__self__, "etag", etag)
201
+ if location is not None:
202
+ pulumi.set(__self__, "location", location)
203
+ if member is not None:
204
+ pulumi.set(__self__, "member", member)
205
+ if project is not None:
206
+ pulumi.set(__self__, "project", project)
207
+ if role is not None:
208
+ pulumi.set(__self__, "role", role)
209
+ if service_id is not None:
210
+ pulumi.set(__self__, "service_id", service_id)
211
+ if table is not None:
212
+ pulumi.set(__self__, "table", table)
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def condition(self) -> Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']]:
217
+ return pulumi.get(self, "condition")
218
+
219
+ @condition.setter
220
+ def condition(self, value: Optional[pulumi.Input['MetastoreTableIamMemberConditionArgs']]):
221
+ pulumi.set(self, "condition", value)
222
+
223
+ @property
224
+ @pulumi.getter(name="databaseId")
225
+ def database_id(self) -> Optional[pulumi.Input[str]]:
226
+ return pulumi.get(self, "database_id")
227
+
228
+ @database_id.setter
229
+ def database_id(self, value: Optional[pulumi.Input[str]]):
230
+ pulumi.set(self, "database_id", value)
231
+
232
+ @property
233
+ @pulumi.getter
234
+ def etag(self) -> Optional[pulumi.Input[str]]:
235
+ """
236
+ (Computed) The etag of the IAM policy.
237
+ """
238
+ return pulumi.get(self, "etag")
239
+
240
+ @etag.setter
241
+ def etag(self, value: Optional[pulumi.Input[str]]):
242
+ pulumi.set(self, "etag", value)
243
+
244
+ @property
245
+ @pulumi.getter
246
+ def location(self) -> Optional[pulumi.Input[str]]:
247
+ return pulumi.get(self, "location")
248
+
249
+ @location.setter
250
+ def location(self, value: Optional[pulumi.Input[str]]):
251
+ pulumi.set(self, "location", value)
252
+
253
+ @property
254
+ @pulumi.getter
255
+ def member(self) -> Optional[pulumi.Input[str]]:
256
+ """
257
+ Identities that will be granted the privilege in `role`.
258
+ Each entry can have one of the following values:
259
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
260
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
261
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
262
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
263
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
264
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
265
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
266
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
267
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
268
+ """
269
+ return pulumi.get(self, "member")
270
+
271
+ @member.setter
272
+ def member(self, value: Optional[pulumi.Input[str]]):
273
+ pulumi.set(self, "member", value)
274
+
275
+ @property
276
+ @pulumi.getter
277
+ def project(self) -> Optional[pulumi.Input[str]]:
278
+ """
279
+ The ID of the project in which the resource belongs.
280
+ 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.
281
+ """
282
+ return pulumi.get(self, "project")
283
+
284
+ @project.setter
285
+ def project(self, value: Optional[pulumi.Input[str]]):
286
+ pulumi.set(self, "project", value)
287
+
288
+ @property
289
+ @pulumi.getter
290
+ def role(self) -> Optional[pulumi.Input[str]]:
291
+ """
292
+ The role that should be applied. Only one
293
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
294
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
295
+ """
296
+ return pulumi.get(self, "role")
297
+
298
+ @role.setter
299
+ def role(self, value: Optional[pulumi.Input[str]]):
300
+ pulumi.set(self, "role", value)
301
+
302
+ @property
303
+ @pulumi.getter(name="serviceId")
304
+ def service_id(self) -> Optional[pulumi.Input[str]]:
305
+ return pulumi.get(self, "service_id")
306
+
307
+ @service_id.setter
308
+ def service_id(self, value: Optional[pulumi.Input[str]]):
309
+ pulumi.set(self, "service_id", value)
310
+
311
+ @property
312
+ @pulumi.getter
313
+ def table(self) -> Optional[pulumi.Input[str]]:
314
+ """
315
+ Used to find the parent resource to bind the IAM policy to
316
+ """
317
+ return pulumi.get(self, "table")
318
+
319
+ @table.setter
320
+ def table(self, value: Optional[pulumi.Input[str]]):
321
+ pulumi.set(self, "table", value)
322
+
323
+
324
+ class MetastoreTableIamMember(pulumi.CustomResource):
325
+ @overload
326
+ def __init__(__self__,
327
+ resource_name: str,
328
+ opts: Optional[pulumi.ResourceOptions] = None,
329
+ condition: Optional[pulumi.Input[Union['MetastoreTableIamMemberConditionArgs', 'MetastoreTableIamMemberConditionArgsDict']]] = None,
330
+ database_id: Optional[pulumi.Input[str]] = None,
331
+ location: Optional[pulumi.Input[str]] = None,
332
+ member: Optional[pulumi.Input[str]] = None,
333
+ project: Optional[pulumi.Input[str]] = None,
334
+ role: Optional[pulumi.Input[str]] = None,
335
+ service_id: Optional[pulumi.Input[str]] = None,
336
+ table: Optional[pulumi.Input[str]] = None,
337
+ __props__=None):
338
+ """
339
+ Three different resources help you manage your IAM policy for Dataproc Metastore Table. Each of these resources serves a different use case:
340
+
341
+ * `dataproc.MetastoreTableIamPolicy`: Authoritative. Sets the IAM policy for the table and replaces any existing policy already attached.
342
+ * `dataproc.MetastoreTableIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the table are preserved.
343
+ * `dataproc.MetastoreTableIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the table are preserved.
344
+
345
+ A data source can be used to retrieve policy data in advent you do not need creation
346
+
347
+ * `dataproc.MetastoreTableIamPolicy`: Retrieves the IAM policy for the table
348
+
349
+ > **Note:** `dataproc.MetastoreTableIamPolicy` **cannot** be used in conjunction with `dataproc.MetastoreTableIamBinding` and `dataproc.MetastoreTableIamMember` or they will fight over what your policy should be.
350
+
351
+ > **Note:** `dataproc.MetastoreTableIamBinding` resources **can be** used in conjunction with `dataproc.MetastoreTableIamMember` resources **only if** they do not grant privilege to the same role.
352
+
353
+ ## dataproc.MetastoreTableIamPolicy
354
+
355
+ ```python
356
+ import pulumi
357
+ import pulumi_gcp as gcp
358
+
359
+ admin = gcp.organizations.get_iam_policy(bindings=[{
360
+ "role": "roles/viewer",
361
+ "members": ["user:jane@example.com"],
362
+ }])
363
+ policy = gcp.dataproc.MetastoreTableIamPolicy("policy",
364
+ project=dpms_service["project"],
365
+ location=dpms_service["location"],
366
+ service_id=dpms_service["serviceId"],
367
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
368
+ table=hive["hiveConfig"][0]["properties"]["table"],
369
+ policy_data=admin.policy_data)
370
+ ```
371
+
372
+ ## dataproc.MetastoreTableIamBinding
373
+
374
+ ```python
375
+ import pulumi
376
+ import pulumi_gcp as gcp
377
+
378
+ binding = gcp.dataproc.MetastoreTableIamBinding("binding",
379
+ project=dpms_service["project"],
380
+ location=dpms_service["location"],
381
+ service_id=dpms_service["serviceId"],
382
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
383
+ table=hive["hiveConfig"][0]["properties"]["table"],
384
+ role="roles/viewer",
385
+ members=["user:jane@example.com"])
386
+ ```
387
+
388
+ ## dataproc.MetastoreTableIamMember
389
+
390
+ ```python
391
+ import pulumi
392
+ import pulumi_gcp as gcp
393
+
394
+ member = gcp.dataproc.MetastoreTableIamMember("member",
395
+ project=dpms_service["project"],
396
+ location=dpms_service["location"],
397
+ service_id=dpms_service["serviceId"],
398
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
399
+ table=hive["hiveConfig"][0]["properties"]["table"],
400
+ role="roles/viewer",
401
+ member="user:jane@example.com")
402
+ ```
403
+
404
+ ## This resource supports User Project Overrides.
405
+
406
+ -
407
+
408
+ # IAM policy for Dataproc Metastore Table
409
+ Three different resources help you manage your IAM policy for Dataproc Metastore Table. Each of these resources serves a different use case:
410
+
411
+ * `dataproc.MetastoreTableIamPolicy`: Authoritative. Sets the IAM policy for the table and replaces any existing policy already attached.
412
+ * `dataproc.MetastoreTableIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the table are preserved.
413
+ * `dataproc.MetastoreTableIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the table are preserved.
414
+
415
+ A data source can be used to retrieve policy data in advent you do not need creation
416
+
417
+ * `dataproc.MetastoreTableIamPolicy`: Retrieves the IAM policy for the table
418
+
419
+ > **Note:** `dataproc.MetastoreTableIamPolicy` **cannot** be used in conjunction with `dataproc.MetastoreTableIamBinding` and `dataproc.MetastoreTableIamMember` or they will fight over what your policy should be.
420
+
421
+ > **Note:** `dataproc.MetastoreTableIamBinding` resources **can be** used in conjunction with `dataproc.MetastoreTableIamMember` resources **only if** they do not grant privilege to the same role.
422
+
423
+ ## dataproc.MetastoreTableIamPolicy
424
+
425
+ ```python
426
+ import pulumi
427
+ import pulumi_gcp as gcp
428
+
429
+ admin = gcp.organizations.get_iam_policy(bindings=[{
430
+ "role": "roles/viewer",
431
+ "members": ["user:jane@example.com"],
432
+ }])
433
+ policy = gcp.dataproc.MetastoreTableIamPolicy("policy",
434
+ project=dpms_service["project"],
435
+ location=dpms_service["location"],
436
+ service_id=dpms_service["serviceId"],
437
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
438
+ table=hive["hiveConfig"][0]["properties"]["table"],
439
+ policy_data=admin.policy_data)
440
+ ```
441
+
442
+ ## dataproc.MetastoreTableIamBinding
443
+
444
+ ```python
445
+ import pulumi
446
+ import pulumi_gcp as gcp
447
+
448
+ binding = gcp.dataproc.MetastoreTableIamBinding("binding",
449
+ project=dpms_service["project"],
450
+ location=dpms_service["location"],
451
+ service_id=dpms_service["serviceId"],
452
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
453
+ table=hive["hiveConfig"][0]["properties"]["table"],
454
+ role="roles/viewer",
455
+ members=["user:jane@example.com"])
456
+ ```
457
+
458
+ ## dataproc.MetastoreTableIamMember
459
+
460
+ ```python
461
+ import pulumi
462
+ import pulumi_gcp as gcp
463
+
464
+ member = gcp.dataproc.MetastoreTableIamMember("member",
465
+ project=dpms_service["project"],
466
+ location=dpms_service["location"],
467
+ service_id=dpms_service["serviceId"],
468
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
469
+ table=hive["hiveConfig"][0]["properties"]["table"],
470
+ role="roles/viewer",
471
+ member="user:jane@example.com")
472
+ ```
473
+
474
+ ## Import
475
+
476
+ For all import syntaxes, the "resource in question" can take any of the following forms:
477
+
478
+ * projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{name}}
479
+
480
+ * {{project}}/{{location}}/{{serviceId}}/{{databaseId}}/{{name}}
481
+
482
+ * {{location}}/{{serviceId}}/{{databaseId}}/{{name}}
483
+
484
+ * {{name}}
485
+
486
+ Any variables not passed in the import command will be taken from the provider configuration.
487
+
488
+ Dataproc Metastore table IAM resources can be imported using the resource identifiers, role, and member.
489
+
490
+ IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
491
+
492
+ ```sh
493
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor "projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}} roles/viewer user:jane@example.com"
494
+ ```
495
+
496
+ IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
497
+
498
+ ```sh
499
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor "projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}} roles/viewer"
500
+ ```
501
+
502
+ IAM policy imports use the identifier of the resource in question, e.g.
503
+
504
+ ```sh
505
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}}
506
+ ```
507
+
508
+ -> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
509
+
510
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
511
+
512
+ :param str resource_name: The name of the resource.
513
+ :param pulumi.ResourceOptions opts: Options for the resource.
514
+ :param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
515
+ Each entry can have one of the following values:
516
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
517
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
518
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
519
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
520
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
521
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
522
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
523
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
524
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
525
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
526
+ 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.
527
+ :param pulumi.Input[str] role: The role that should be applied. Only one
528
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
529
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
530
+ :param pulumi.Input[str] table: Used to find the parent resource to bind the IAM policy to
531
+ """
532
+ ...
533
+ @overload
534
+ def __init__(__self__,
535
+ resource_name: str,
536
+ args: MetastoreTableIamMemberArgs,
537
+ opts: Optional[pulumi.ResourceOptions] = None):
538
+ """
539
+ Three different resources help you manage your IAM policy for Dataproc Metastore Table. Each of these resources serves a different use case:
540
+
541
+ * `dataproc.MetastoreTableIamPolicy`: Authoritative. Sets the IAM policy for the table and replaces any existing policy already attached.
542
+ * `dataproc.MetastoreTableIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the table are preserved.
543
+ * `dataproc.MetastoreTableIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the table are preserved.
544
+
545
+ A data source can be used to retrieve policy data in advent you do not need creation
546
+
547
+ * `dataproc.MetastoreTableIamPolicy`: Retrieves the IAM policy for the table
548
+
549
+ > **Note:** `dataproc.MetastoreTableIamPolicy` **cannot** be used in conjunction with `dataproc.MetastoreTableIamBinding` and `dataproc.MetastoreTableIamMember` or they will fight over what your policy should be.
550
+
551
+ > **Note:** `dataproc.MetastoreTableIamBinding` resources **can be** used in conjunction with `dataproc.MetastoreTableIamMember` resources **only if** they do not grant privilege to the same role.
552
+
553
+ ## dataproc.MetastoreTableIamPolicy
554
+
555
+ ```python
556
+ import pulumi
557
+ import pulumi_gcp as gcp
558
+
559
+ admin = gcp.organizations.get_iam_policy(bindings=[{
560
+ "role": "roles/viewer",
561
+ "members": ["user:jane@example.com"],
562
+ }])
563
+ policy = gcp.dataproc.MetastoreTableIamPolicy("policy",
564
+ project=dpms_service["project"],
565
+ location=dpms_service["location"],
566
+ service_id=dpms_service["serviceId"],
567
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
568
+ table=hive["hiveConfig"][0]["properties"]["table"],
569
+ policy_data=admin.policy_data)
570
+ ```
571
+
572
+ ## dataproc.MetastoreTableIamBinding
573
+
574
+ ```python
575
+ import pulumi
576
+ import pulumi_gcp as gcp
577
+
578
+ binding = gcp.dataproc.MetastoreTableIamBinding("binding",
579
+ project=dpms_service["project"],
580
+ location=dpms_service["location"],
581
+ service_id=dpms_service["serviceId"],
582
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
583
+ table=hive["hiveConfig"][0]["properties"]["table"],
584
+ role="roles/viewer",
585
+ members=["user:jane@example.com"])
586
+ ```
587
+
588
+ ## dataproc.MetastoreTableIamMember
589
+
590
+ ```python
591
+ import pulumi
592
+ import pulumi_gcp as gcp
593
+
594
+ member = gcp.dataproc.MetastoreTableIamMember("member",
595
+ project=dpms_service["project"],
596
+ location=dpms_service["location"],
597
+ service_id=dpms_service["serviceId"],
598
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
599
+ table=hive["hiveConfig"][0]["properties"]["table"],
600
+ role="roles/viewer",
601
+ member="user:jane@example.com")
602
+ ```
603
+
604
+ ## This resource supports User Project Overrides.
605
+
606
+ -
607
+
608
+ # IAM policy for Dataproc Metastore Table
609
+ Three different resources help you manage your IAM policy for Dataproc Metastore Table. Each of these resources serves a different use case:
610
+
611
+ * `dataproc.MetastoreTableIamPolicy`: Authoritative. Sets the IAM policy for the table and replaces any existing policy already attached.
612
+ * `dataproc.MetastoreTableIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the table are preserved.
613
+ * `dataproc.MetastoreTableIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the table are preserved.
614
+
615
+ A data source can be used to retrieve policy data in advent you do not need creation
616
+
617
+ * `dataproc.MetastoreTableIamPolicy`: Retrieves the IAM policy for the table
618
+
619
+ > **Note:** `dataproc.MetastoreTableIamPolicy` **cannot** be used in conjunction with `dataproc.MetastoreTableIamBinding` and `dataproc.MetastoreTableIamMember` or they will fight over what your policy should be.
620
+
621
+ > **Note:** `dataproc.MetastoreTableIamBinding` resources **can be** used in conjunction with `dataproc.MetastoreTableIamMember` resources **only if** they do not grant privilege to the same role.
622
+
623
+ ## dataproc.MetastoreTableIamPolicy
624
+
625
+ ```python
626
+ import pulumi
627
+ import pulumi_gcp as gcp
628
+
629
+ admin = gcp.organizations.get_iam_policy(bindings=[{
630
+ "role": "roles/viewer",
631
+ "members": ["user:jane@example.com"],
632
+ }])
633
+ policy = gcp.dataproc.MetastoreTableIamPolicy("policy",
634
+ project=dpms_service["project"],
635
+ location=dpms_service["location"],
636
+ service_id=dpms_service["serviceId"],
637
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
638
+ table=hive["hiveConfig"][0]["properties"]["table"],
639
+ policy_data=admin.policy_data)
640
+ ```
641
+
642
+ ## dataproc.MetastoreTableIamBinding
643
+
644
+ ```python
645
+ import pulumi
646
+ import pulumi_gcp as gcp
647
+
648
+ binding = gcp.dataproc.MetastoreTableIamBinding("binding",
649
+ project=dpms_service["project"],
650
+ location=dpms_service["location"],
651
+ service_id=dpms_service["serviceId"],
652
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
653
+ table=hive["hiveConfig"][0]["properties"]["table"],
654
+ role="roles/viewer",
655
+ members=["user:jane@example.com"])
656
+ ```
657
+
658
+ ## dataproc.MetastoreTableIamMember
659
+
660
+ ```python
661
+ import pulumi
662
+ import pulumi_gcp as gcp
663
+
664
+ member = gcp.dataproc.MetastoreTableIamMember("member",
665
+ project=dpms_service["project"],
666
+ location=dpms_service["location"],
667
+ service_id=dpms_service["serviceId"],
668
+ database_id=hive["hiveConfig"][0]["properties"]["database"],
669
+ table=hive["hiveConfig"][0]["properties"]["table"],
670
+ role="roles/viewer",
671
+ member="user:jane@example.com")
672
+ ```
673
+
674
+ ## Import
675
+
676
+ For all import syntaxes, the "resource in question" can take any of the following forms:
677
+
678
+ * projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{name}}
679
+
680
+ * {{project}}/{{location}}/{{serviceId}}/{{databaseId}}/{{name}}
681
+
682
+ * {{location}}/{{serviceId}}/{{databaseId}}/{{name}}
683
+
684
+ * {{name}}
685
+
686
+ Any variables not passed in the import command will be taken from the provider configuration.
687
+
688
+ Dataproc Metastore table IAM resources can be imported using the resource identifiers, role, and member.
689
+
690
+ IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
691
+
692
+ ```sh
693
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor "projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}} roles/viewer user:jane@example.com"
694
+ ```
695
+
696
+ IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
697
+
698
+ ```sh
699
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor "projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}} roles/viewer"
700
+ ```
701
+
702
+ IAM policy imports use the identifier of the resource in question, e.g.
703
+
704
+ ```sh
705
+ $ pulumi import gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember editor projects/{{project}}/locations/{{location}}/services/{{serviceId}}/databases/{{databaseId}}/tables/{{table}}
706
+ ```
707
+
708
+ -> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
709
+
710
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
711
+
712
+ :param str resource_name: The name of the resource.
713
+ :param MetastoreTableIamMemberArgs args: The arguments to use to populate this resource's properties.
714
+ :param pulumi.ResourceOptions opts: Options for the resource.
715
+ """
716
+ ...
717
+ def __init__(__self__, resource_name: str, *args, **kwargs):
718
+ resource_args, opts = _utilities.get_resource_args_opts(MetastoreTableIamMemberArgs, pulumi.ResourceOptions, *args, **kwargs)
719
+ if resource_args is not None:
720
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
721
+ else:
722
+ __self__._internal_init(resource_name, *args, **kwargs)
723
+
724
+ def _internal_init(__self__,
725
+ resource_name: str,
726
+ opts: Optional[pulumi.ResourceOptions] = None,
727
+ condition: Optional[pulumi.Input[Union['MetastoreTableIamMemberConditionArgs', 'MetastoreTableIamMemberConditionArgsDict']]] = None,
728
+ database_id: Optional[pulumi.Input[str]] = None,
729
+ location: Optional[pulumi.Input[str]] = None,
730
+ member: Optional[pulumi.Input[str]] = None,
731
+ project: Optional[pulumi.Input[str]] = None,
732
+ role: Optional[pulumi.Input[str]] = None,
733
+ service_id: Optional[pulumi.Input[str]] = None,
734
+ table: Optional[pulumi.Input[str]] = None,
735
+ __props__=None):
736
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
737
+ if not isinstance(opts, pulumi.ResourceOptions):
738
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
739
+ if opts.id is None:
740
+ if __props__ is not None:
741
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
742
+ __props__ = MetastoreTableIamMemberArgs.__new__(MetastoreTableIamMemberArgs)
743
+
744
+ __props__.__dict__["condition"] = condition
745
+ if database_id is None and not opts.urn:
746
+ raise TypeError("Missing required property 'database_id'")
747
+ __props__.__dict__["database_id"] = database_id
748
+ __props__.__dict__["location"] = location
749
+ if member is None and not opts.urn:
750
+ raise TypeError("Missing required property 'member'")
751
+ __props__.__dict__["member"] = member
752
+ __props__.__dict__["project"] = project
753
+ if role is None and not opts.urn:
754
+ raise TypeError("Missing required property 'role'")
755
+ __props__.__dict__["role"] = role
756
+ if service_id is None and not opts.urn:
757
+ raise TypeError("Missing required property 'service_id'")
758
+ __props__.__dict__["service_id"] = service_id
759
+ if table is None and not opts.urn:
760
+ raise TypeError("Missing required property 'table'")
761
+ __props__.__dict__["table"] = table
762
+ __props__.__dict__["etag"] = None
763
+ super(MetastoreTableIamMember, __self__).__init__(
764
+ 'gcp:dataproc/metastoreTableIamMember:MetastoreTableIamMember',
765
+ resource_name,
766
+ __props__,
767
+ opts)
768
+
769
+ @staticmethod
770
+ def get(resource_name: str,
771
+ id: pulumi.Input[str],
772
+ opts: Optional[pulumi.ResourceOptions] = None,
773
+ condition: Optional[pulumi.Input[Union['MetastoreTableIamMemberConditionArgs', 'MetastoreTableIamMemberConditionArgsDict']]] = None,
774
+ database_id: Optional[pulumi.Input[str]] = None,
775
+ etag: Optional[pulumi.Input[str]] = None,
776
+ location: Optional[pulumi.Input[str]] = None,
777
+ member: Optional[pulumi.Input[str]] = None,
778
+ project: Optional[pulumi.Input[str]] = None,
779
+ role: Optional[pulumi.Input[str]] = None,
780
+ service_id: Optional[pulumi.Input[str]] = None,
781
+ table: Optional[pulumi.Input[str]] = None) -> 'MetastoreTableIamMember':
782
+ """
783
+ Get an existing MetastoreTableIamMember resource's state with the given name, id, and optional extra
784
+ properties used to qualify the lookup.
785
+
786
+ :param str resource_name: The unique name of the resulting resource.
787
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
788
+ :param pulumi.ResourceOptions opts: Options for the resource.
789
+ :param pulumi.Input[str] etag: (Computed) The etag of the IAM policy.
790
+ :param pulumi.Input[str] member: Identities that will be granted the privilege in `role`.
791
+ Each entry can have one of the following values:
792
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
793
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
794
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
795
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
796
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
797
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
798
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
799
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
800
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
801
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
802
+ 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.
803
+ :param pulumi.Input[str] role: The role that should be applied. Only one
804
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
805
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
806
+ :param pulumi.Input[str] table: Used to find the parent resource to bind the IAM policy to
807
+ """
808
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
809
+
810
+ __props__ = _MetastoreTableIamMemberState.__new__(_MetastoreTableIamMemberState)
811
+
812
+ __props__.__dict__["condition"] = condition
813
+ __props__.__dict__["database_id"] = database_id
814
+ __props__.__dict__["etag"] = etag
815
+ __props__.__dict__["location"] = location
816
+ __props__.__dict__["member"] = member
817
+ __props__.__dict__["project"] = project
818
+ __props__.__dict__["role"] = role
819
+ __props__.__dict__["service_id"] = service_id
820
+ __props__.__dict__["table"] = table
821
+ return MetastoreTableIamMember(resource_name, opts=opts, __props__=__props__)
822
+
823
+ @property
824
+ @pulumi.getter
825
+ def condition(self) -> pulumi.Output[Optional['outputs.MetastoreTableIamMemberCondition']]:
826
+ return pulumi.get(self, "condition")
827
+
828
+ @property
829
+ @pulumi.getter(name="databaseId")
830
+ def database_id(self) -> pulumi.Output[str]:
831
+ return pulumi.get(self, "database_id")
832
+
833
+ @property
834
+ @pulumi.getter
835
+ def etag(self) -> pulumi.Output[str]:
836
+ """
837
+ (Computed) The etag of the IAM policy.
838
+ """
839
+ return pulumi.get(self, "etag")
840
+
841
+ @property
842
+ @pulumi.getter
843
+ def location(self) -> pulumi.Output[str]:
844
+ return pulumi.get(self, "location")
845
+
846
+ @property
847
+ @pulumi.getter
848
+ def member(self) -> pulumi.Output[str]:
849
+ """
850
+ Identities that will be granted the privilege in `role`.
851
+ Each entry can have one of the following values:
852
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
853
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
854
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
855
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
856
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
857
+ * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
858
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
859
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
860
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
861
+ """
862
+ return pulumi.get(self, "member")
863
+
864
+ @property
865
+ @pulumi.getter
866
+ def project(self) -> pulumi.Output[str]:
867
+ """
868
+ The ID of the project in which the resource belongs.
869
+ 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.
870
+ """
871
+ return pulumi.get(self, "project")
872
+
873
+ @property
874
+ @pulumi.getter
875
+ def role(self) -> pulumi.Output[str]:
876
+ """
877
+ The role that should be applied. Only one
878
+ `dataproc.MetastoreTableIamBinding` can be used per role. Note that custom roles must be of the format
879
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
880
+ """
881
+ return pulumi.get(self, "role")
882
+
883
+ @property
884
+ @pulumi.getter(name="serviceId")
885
+ def service_id(self) -> pulumi.Output[str]:
886
+ return pulumi.get(self, "service_id")
887
+
888
+ @property
889
+ @pulumi.getter
890
+ def table(self) -> pulumi.Output[str]:
891
+ """
892
+ Used to find the parent resource to bind the IAM policy to
893
+ """
894
+ return pulumi.get(self, "table")
895
+