pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.40.0a1754951145__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 (157) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
  3. pulumi_gcp/accesscontextmanager/outputs.py +15 -3
  4. pulumi_gcp/apigee/__init__.py +2 -0
  5. pulumi_gcp/apigee/_inputs.py +1435 -0
  6. pulumi_gcp/apigee/api_product.py +1698 -0
  7. pulumi_gcp/apigee/outputs.py +1081 -0
  8. pulumi_gcp/apigee/security_action.py +1010 -0
  9. pulumi_gcp/artifactregistry/__init__.py +1 -0
  10. pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
  11. pulumi_gcp/artifactregistry/outputs.py +109 -2
  12. pulumi_gcp/artifactregistry/repository.py +6 -6
  13. pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
  14. pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
  15. pulumi_gcp/bigquery/_inputs.py +6 -0
  16. pulumi_gcp/bigquery/get_table.py +23 -1
  17. pulumi_gcp/bigquery/outputs.py +4 -0
  18. pulumi_gcp/bigquery/table.py +62 -0
  19. pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
  20. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
  21. pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
  22. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
  23. pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
  24. pulumi_gcp/bigtable/__init__.py +1 -0
  25. pulumi_gcp/bigtable/_inputs.py +33 -0
  26. pulumi_gcp/bigtable/outputs.py +36 -0
  27. pulumi_gcp/bigtable/schema_bundle.py +568 -0
  28. pulumi_gcp/cloudfunctions/_inputs.py +48 -0
  29. pulumi_gcp/cloudfunctions/function.py +94 -0
  30. pulumi_gcp/cloudfunctions/get_function.py +23 -1
  31. pulumi_gcp/cloudfunctions/outputs.py +70 -0
  32. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  33. pulumi_gcp/cloudrunv2/job.py +2 -0
  34. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  35. pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
  36. pulumi_gcp/compute/__init__.py +1 -0
  37. pulumi_gcp/compute/_inputs.py +713 -22
  38. pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
  39. pulumi_gcp/compute/forwarding_rule.py +0 -21
  40. pulumi_gcp/compute/get_router.py +12 -1
  41. pulumi_gcp/compute/outputs.py +562 -22
  42. pulumi_gcp/compute/preview_feature.py +396 -0
  43. pulumi_gcp/compute/region_url_map.py +392 -0
  44. pulumi_gcp/compute/reservation.py +4 -4
  45. pulumi_gcp/compute/router.py +54 -0
  46. pulumi_gcp/compute/storage_pool.py +154 -0
  47. pulumi_gcp/compute/subnetwork.py +54 -0
  48. pulumi_gcp/config/__init__.pyi +2 -0
  49. pulumi_gcp/config/vars.py +4 -0
  50. pulumi_gcp/container/_inputs.py +278 -8
  51. pulumi_gcp/container/cluster.py +61 -21
  52. pulumi_gcp/container/get_cluster.py +12 -1
  53. pulumi_gcp/container/outputs.py +352 -8
  54. pulumi_gcp/dataproc/_inputs.py +249 -14
  55. pulumi_gcp/dataproc/batch.py +6 -0
  56. pulumi_gcp/dataproc/cluster.py +2 -0
  57. pulumi_gcp/dataproc/outputs.py +215 -12
  58. pulumi_gcp/dataproc/session_template.py +14 -2
  59. pulumi_gcp/developerconnect/__init__.py +1 -0
  60. pulumi_gcp/developerconnect/_inputs.py +583 -0
  61. pulumi_gcp/developerconnect/insights_config.py +895 -0
  62. pulumi_gcp/developerconnect/outputs.py +442 -0
  63. pulumi_gcp/diagflow/__init__.py +1 -0
  64. pulumi_gcp/diagflow/_inputs.py +1165 -58
  65. pulumi_gcp/diagflow/cx_generator.py +636 -0
  66. pulumi_gcp/diagflow/cx_tool.py +2 -2
  67. pulumi_gcp/diagflow/cx_webhook.py +380 -36
  68. pulumi_gcp/diagflow/outputs.py +848 -25
  69. pulumi_gcp/discoveryengine/__init__.py +2 -0
  70. pulumi_gcp/discoveryengine/_inputs.py +465 -0
  71. pulumi_gcp/discoveryengine/cmek_config.py +707 -0
  72. pulumi_gcp/discoveryengine/outputs.py +412 -0
  73. pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
  74. pulumi_gcp/firestore/field.py +6 -6
  75. pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
  76. pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
  77. pulumi_gcp/gkehub/membership_binding.py +6 -6
  78. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  79. pulumi_gcp/gkehub/namespace.py +4 -4
  80. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  81. pulumi_gcp/iam/__init__.py +4 -0
  82. pulumi_gcp/iam/_inputs.py +98 -0
  83. pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
  84. pulumi_gcp/iam/outputs.py +56 -0
  85. pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
  86. pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
  87. pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
  88. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  89. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  90. pulumi_gcp/looker/instance.py +28 -7
  91. pulumi_gcp/managedkafka/_inputs.py +127 -0
  92. pulumi_gcp/managedkafka/cluster.py +131 -1
  93. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  94. pulumi_gcp/managedkafka/connector.py +4 -4
  95. pulumi_gcp/managedkafka/outputs.py +128 -0
  96. pulumi_gcp/memorystore/instance.py +8 -12
  97. pulumi_gcp/modelarmor/__init__.py +1 -0
  98. pulumi_gcp/modelarmor/_inputs.py +683 -0
  99. pulumi_gcp/modelarmor/floorsetting.py +736 -0
  100. pulumi_gcp/modelarmor/outputs.py +618 -0
  101. pulumi_gcp/networkconnectivity/_inputs.py +60 -0
  102. pulumi_gcp/networkconnectivity/internal_range.py +136 -0
  103. pulumi_gcp/networkconnectivity/outputs.py +55 -0
  104. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  105. pulumi_gcp/oracledatabase/__init__.py +2 -0
  106. pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
  107. pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
  108. pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
  109. pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
  110. pulumi_gcp/oracledatabase/odb_network.py +721 -0
  111. pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
  112. pulumi_gcp/oracledatabase/outputs.py +83 -0
  113. pulumi_gcp/orgpolicy/policy.py +2 -2
  114. pulumi_gcp/parametermanager/parameter_version.py +62 -0
  115. pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
  116. pulumi_gcp/provider.py +20 -0
  117. pulumi_gcp/pubsub/subscription.py +46 -6
  118. pulumi_gcp/pubsub/topic.py +36 -0
  119. pulumi_gcp/pulumi-plugin.json +1 -1
  120. pulumi_gcp/redis/cluster.py +70 -0
  121. pulumi_gcp/redis/get_cluster.py +12 -1
  122. pulumi_gcp/redis/instance.py +8 -12
  123. pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
  124. pulumi_gcp/secretmanager/get_secret.py +12 -1
  125. pulumi_gcp/secretmanager/outputs.py +30 -0
  126. pulumi_gcp/secretmanager/regional_secret.py +61 -0
  127. pulumi_gcp/secretmanager/secret.py +61 -0
  128. pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
  129. pulumi_gcp/securesourcemanager/instance.py +112 -4
  130. pulumi_gcp/securesourcemanager/repository.py +112 -8
  131. pulumi_gcp/serviceaccount/get_account_key.py +1 -0
  132. pulumi_gcp/sql/_inputs.py +6 -6
  133. pulumi_gcp/sql/database.py +0 -12
  134. pulumi_gcp/sql/outputs.py +4 -4
  135. pulumi_gcp/storage/__init__.py +2 -0
  136. pulumi_gcp/storage/_inputs.py +451 -0
  137. pulumi_gcp/storage/bucket.py +7 -7
  138. pulumi_gcp/storage/bucket_object.py +34 -0
  139. pulumi_gcp/storage/get_bucket_object.py +12 -1
  140. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  141. pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
  142. pulumi_gcp/storage/insights_dataset_config.py +1280 -0
  143. pulumi_gcp/storage/outputs.py +619 -0
  144. pulumi_gcp/vertex/__init__.py +1 -0
  145. pulumi_gcp/vertex/_inputs.py +3646 -3
  146. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  147. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
  148. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  149. pulumi_gcp/vertex/outputs.py +2609 -2
  150. pulumi_gcp/vmwareengine/network_peering.py +7 -7
  151. pulumi_gcp/workbench/_inputs.py +118 -0
  152. pulumi_gcp/workbench/instance.py +171 -2
  153. pulumi_gcp/workbench/outputs.py +91 -0
  154. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
  155. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
  156. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
  157. {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,761 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
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__ = ['WorkforcePoolIamMemberArgs', 'WorkforcePoolIamMember']
20
+
21
+ @pulumi.input_type
22
+ class WorkforcePoolIamMemberArgs:
23
+ def __init__(__self__, *,
24
+ member: pulumi.Input[_builtins.str],
25
+ role: pulumi.Input[_builtins.str],
26
+ workforce_pool_id: pulumi.Input[_builtins.str],
27
+ condition: Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']] = None,
28
+ location: Optional[pulumi.Input[_builtins.str]] = None):
29
+ """
30
+ The set of arguments for constructing a WorkforcePoolIamMember resource.
31
+ :param pulumi.Input[_builtins.str] member: Identities that will be granted the privilege in `role`.
32
+ Each entry can have one of the following values:
33
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
34
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
35
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
36
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
37
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
38
+ * **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.
39
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
40
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
41
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
42
+ :param pulumi.Input[_builtins.str] role: The role that should be applied. Only one
43
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
44
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
45
+ :param pulumi.Input[_builtins.str] workforce_pool_id: Used to find the parent resource to bind the IAM policy to
46
+ :param pulumi.Input[_builtins.str] location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
47
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
48
+ location is specified, it is taken from the provider configuration.
49
+ """
50
+ pulumi.set(__self__, "member", member)
51
+ pulumi.set(__self__, "role", role)
52
+ pulumi.set(__self__, "workforce_pool_id", workforce_pool_id)
53
+ if condition is not None:
54
+ pulumi.set(__self__, "condition", condition)
55
+ if location is not None:
56
+ pulumi.set(__self__, "location", location)
57
+
58
+ @_builtins.property
59
+ @pulumi.getter
60
+ def member(self) -> pulumi.Input[_builtins.str]:
61
+ """
62
+ Identities that will be granted the privilege in `role`.
63
+ Each entry can have one of the following values:
64
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
65
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
66
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
67
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
68
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
69
+ * **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.
70
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
71
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
72
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
73
+ """
74
+ return pulumi.get(self, "member")
75
+
76
+ @member.setter
77
+ def member(self, value: pulumi.Input[_builtins.str]):
78
+ pulumi.set(self, "member", value)
79
+
80
+ @_builtins.property
81
+ @pulumi.getter
82
+ def role(self) -> pulumi.Input[_builtins.str]:
83
+ """
84
+ The role that should be applied. Only one
85
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
86
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
87
+ """
88
+ return pulumi.get(self, "role")
89
+
90
+ @role.setter
91
+ def role(self, value: pulumi.Input[_builtins.str]):
92
+ pulumi.set(self, "role", value)
93
+
94
+ @_builtins.property
95
+ @pulumi.getter(name="workforcePoolId")
96
+ def workforce_pool_id(self) -> pulumi.Input[_builtins.str]:
97
+ """
98
+ Used to find the parent resource to bind the IAM policy to
99
+ """
100
+ return pulumi.get(self, "workforce_pool_id")
101
+
102
+ @workforce_pool_id.setter
103
+ def workforce_pool_id(self, value: pulumi.Input[_builtins.str]):
104
+ pulumi.set(self, "workforce_pool_id", value)
105
+
106
+ @_builtins.property
107
+ @pulumi.getter
108
+ def condition(self) -> Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']]:
109
+ return pulumi.get(self, "condition")
110
+
111
+ @condition.setter
112
+ def condition(self, value: Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']]):
113
+ pulumi.set(self, "condition", value)
114
+
115
+ @_builtins.property
116
+ @pulumi.getter
117
+ def location(self) -> Optional[pulumi.Input[_builtins.str]]:
118
+ """
119
+ The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
120
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
121
+ location is specified, it is taken from the provider configuration.
122
+ """
123
+ return pulumi.get(self, "location")
124
+
125
+ @location.setter
126
+ def location(self, value: Optional[pulumi.Input[_builtins.str]]):
127
+ pulumi.set(self, "location", value)
128
+
129
+
130
+ @pulumi.input_type
131
+ class _WorkforcePoolIamMemberState:
132
+ def __init__(__self__, *,
133
+ condition: Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']] = None,
134
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
135
+ location: Optional[pulumi.Input[_builtins.str]] = None,
136
+ member: Optional[pulumi.Input[_builtins.str]] = None,
137
+ role: Optional[pulumi.Input[_builtins.str]] = None,
138
+ workforce_pool_id: Optional[pulumi.Input[_builtins.str]] = None):
139
+ """
140
+ Input properties used for looking up and filtering WorkforcePoolIamMember resources.
141
+ :param pulumi.Input[_builtins.str] etag: (Computed) The etag of the IAM policy.
142
+ :param pulumi.Input[_builtins.str] location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
143
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
144
+ location is specified, it is taken from the provider configuration.
145
+ :param pulumi.Input[_builtins.str] member: Identities that will be granted the privilege in `role`.
146
+ Each entry can have one of the following values:
147
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
148
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
149
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
150
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
151
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
152
+ * **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.
153
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
154
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
155
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
156
+ :param pulumi.Input[_builtins.str] role: The role that should be applied. Only one
157
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
158
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
159
+ :param pulumi.Input[_builtins.str] workforce_pool_id: Used to find the parent resource to bind the IAM policy to
160
+ """
161
+ if condition is not None:
162
+ pulumi.set(__self__, "condition", condition)
163
+ if etag is not None:
164
+ pulumi.set(__self__, "etag", etag)
165
+ if location is not None:
166
+ pulumi.set(__self__, "location", location)
167
+ if member is not None:
168
+ pulumi.set(__self__, "member", member)
169
+ if role is not None:
170
+ pulumi.set(__self__, "role", role)
171
+ if workforce_pool_id is not None:
172
+ pulumi.set(__self__, "workforce_pool_id", workforce_pool_id)
173
+
174
+ @_builtins.property
175
+ @pulumi.getter
176
+ def condition(self) -> Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']]:
177
+ return pulumi.get(self, "condition")
178
+
179
+ @condition.setter
180
+ def condition(self, value: Optional[pulumi.Input['WorkforcePoolIamMemberConditionArgs']]):
181
+ pulumi.set(self, "condition", value)
182
+
183
+ @_builtins.property
184
+ @pulumi.getter
185
+ def etag(self) -> Optional[pulumi.Input[_builtins.str]]:
186
+ """
187
+ (Computed) The etag of the IAM policy.
188
+ """
189
+ return pulumi.get(self, "etag")
190
+
191
+ @etag.setter
192
+ def etag(self, value: Optional[pulumi.Input[_builtins.str]]):
193
+ pulumi.set(self, "etag", value)
194
+
195
+ @_builtins.property
196
+ @pulumi.getter
197
+ def location(self) -> Optional[pulumi.Input[_builtins.str]]:
198
+ """
199
+ The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
200
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
201
+ location is specified, it is taken from the provider configuration.
202
+ """
203
+ return pulumi.get(self, "location")
204
+
205
+ @location.setter
206
+ def location(self, value: Optional[pulumi.Input[_builtins.str]]):
207
+ pulumi.set(self, "location", value)
208
+
209
+ @_builtins.property
210
+ @pulumi.getter
211
+ def member(self) -> Optional[pulumi.Input[_builtins.str]]:
212
+ """
213
+ Identities that will be granted the privilege in `role`.
214
+ Each entry can have one of the following values:
215
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
216
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
217
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
218
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
219
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
220
+ * **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.
221
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
222
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
223
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
224
+ """
225
+ return pulumi.get(self, "member")
226
+
227
+ @member.setter
228
+ def member(self, value: Optional[pulumi.Input[_builtins.str]]):
229
+ pulumi.set(self, "member", value)
230
+
231
+ @_builtins.property
232
+ @pulumi.getter
233
+ def role(self) -> Optional[pulumi.Input[_builtins.str]]:
234
+ """
235
+ The role that should be applied. Only one
236
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
237
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
238
+ """
239
+ return pulumi.get(self, "role")
240
+
241
+ @role.setter
242
+ def role(self, value: Optional[pulumi.Input[_builtins.str]]):
243
+ pulumi.set(self, "role", value)
244
+
245
+ @_builtins.property
246
+ @pulumi.getter(name="workforcePoolId")
247
+ def workforce_pool_id(self) -> Optional[pulumi.Input[_builtins.str]]:
248
+ """
249
+ Used to find the parent resource to bind the IAM policy to
250
+ """
251
+ return pulumi.get(self, "workforce_pool_id")
252
+
253
+ @workforce_pool_id.setter
254
+ def workforce_pool_id(self, value: Optional[pulumi.Input[_builtins.str]]):
255
+ pulumi.set(self, "workforce_pool_id", value)
256
+
257
+
258
+ @pulumi.type_token("gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember")
259
+ class WorkforcePoolIamMember(pulumi.CustomResource):
260
+ @overload
261
+ def __init__(__self__,
262
+ resource_name: str,
263
+ opts: Optional[pulumi.ResourceOptions] = None,
264
+ condition: Optional[pulumi.Input[Union['WorkforcePoolIamMemberConditionArgs', 'WorkforcePoolIamMemberConditionArgsDict']]] = None,
265
+ location: Optional[pulumi.Input[_builtins.str]] = None,
266
+ member: Optional[pulumi.Input[_builtins.str]] = None,
267
+ role: Optional[pulumi.Input[_builtins.str]] = None,
268
+ workforce_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
269
+ __props__=None):
270
+ """
271
+ Three different resources help you manage your IAM policy for Cloud IAM WorkforcePool. Each of these resources serves a different use case:
272
+
273
+ * `iam.WorkforcePoolIamPolicy`: Authoritative. Sets the IAM policy for the workforcepool and replaces any existing policy already attached.
274
+ * `iam.WorkforcePoolIamBinding`: 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 workforcepool are preserved.
275
+ * `iam.WorkforcePoolIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the workforcepool are preserved.
276
+
277
+ A data source can be used to retrieve policy data in advent you do not need creation
278
+
279
+ * `iam.WorkforcePoolIamPolicy`: Retrieves the IAM policy for the workforcepool
280
+
281
+ > **Note:** `iam.WorkforcePoolIamPolicy` **cannot** be used in conjunction with `iam.WorkforcePoolIamBinding` and `iam.WorkforcePoolIamMember` or they will fight over what your policy should be.
282
+
283
+ > **Note:** `iam.WorkforcePoolIamBinding` resources **can be** used in conjunction with `iam.WorkforcePoolIamMember` resources **only if** they do not grant privilege to the same role.
284
+
285
+ ## iam.WorkforcePoolIamPolicy
286
+
287
+ ```python
288
+ import pulumi
289
+ import pulumi_gcp as gcp
290
+
291
+ admin = gcp.organizations.get_iam_policy(bindings=[{
292
+ "role": "roles/iam.workforcePoolAdmin",
293
+ "members": ["user:jane@example.com"],
294
+ }])
295
+ policy = gcp.iam.WorkforcePoolIamPolicy("policy",
296
+ location=example["location"],
297
+ workforce_pool_id=example["workforcePoolId"],
298
+ policy_data=admin.policy_data)
299
+ ```
300
+
301
+ ## iam.WorkforcePoolIamBinding
302
+
303
+ ```python
304
+ import pulumi
305
+ import pulumi_gcp as gcp
306
+
307
+ binding = gcp.iam.WorkforcePoolIamBinding("binding",
308
+ location=example["location"],
309
+ workforce_pool_id=example["workforcePoolId"],
310
+ role="roles/iam.workforcePoolAdmin",
311
+ members=["user:jane@example.com"])
312
+ ```
313
+
314
+ ## iam.WorkforcePoolIamMember
315
+
316
+ ```python
317
+ import pulumi
318
+ import pulumi_gcp as gcp
319
+
320
+ member = gcp.iam.WorkforcePoolIamMember("member",
321
+ location=example["location"],
322
+ workforce_pool_id=example["workforcePoolId"],
323
+ role="roles/iam.workforcePoolAdmin",
324
+ member="user:jane@example.com")
325
+ ```
326
+
327
+ ## > **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
328
+
329
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
330
+ ---
331
+
332
+ # IAM policy for Cloud IAM WorkforcePool
333
+ Three different resources help you manage your IAM policy for Cloud IAM WorkforcePool. Each of these resources serves a different use case:
334
+
335
+ * `iam.WorkforcePoolIamPolicy`: Authoritative. Sets the IAM policy for the workforcepool and replaces any existing policy already attached.
336
+ * `iam.WorkforcePoolIamBinding`: 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 workforcepool are preserved.
337
+ * `iam.WorkforcePoolIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the workforcepool are preserved.
338
+
339
+ A data source can be used to retrieve policy data in advent you do not need creation
340
+
341
+ * `iam.WorkforcePoolIamPolicy`: Retrieves the IAM policy for the workforcepool
342
+
343
+ > **Note:** `iam.WorkforcePoolIamPolicy` **cannot** be used in conjunction with `iam.WorkforcePoolIamBinding` and `iam.WorkforcePoolIamMember` or they will fight over what your policy should be.
344
+
345
+ > **Note:** `iam.WorkforcePoolIamBinding` resources **can be** used in conjunction with `iam.WorkforcePoolIamMember` resources **only if** they do not grant privilege to the same role.
346
+
347
+ ## iam.WorkforcePoolIamPolicy
348
+
349
+ ```python
350
+ import pulumi
351
+ import pulumi_gcp as gcp
352
+
353
+ admin = gcp.organizations.get_iam_policy(bindings=[{
354
+ "role": "roles/iam.workforcePoolAdmin",
355
+ "members": ["user:jane@example.com"],
356
+ }])
357
+ policy = gcp.iam.WorkforcePoolIamPolicy("policy",
358
+ location=example["location"],
359
+ workforce_pool_id=example["workforcePoolId"],
360
+ policy_data=admin.policy_data)
361
+ ```
362
+
363
+ ## iam.WorkforcePoolIamBinding
364
+
365
+ ```python
366
+ import pulumi
367
+ import pulumi_gcp as gcp
368
+
369
+ binding = gcp.iam.WorkforcePoolIamBinding("binding",
370
+ location=example["location"],
371
+ workforce_pool_id=example["workforcePoolId"],
372
+ role="roles/iam.workforcePoolAdmin",
373
+ members=["user:jane@example.com"])
374
+ ```
375
+
376
+ ## iam.WorkforcePoolIamMember
377
+
378
+ ```python
379
+ import pulumi
380
+ import pulumi_gcp as gcp
381
+
382
+ member = gcp.iam.WorkforcePoolIamMember("member",
383
+ location=example["location"],
384
+ workforce_pool_id=example["workforcePoolId"],
385
+ role="roles/iam.workforcePoolAdmin",
386
+ member="user:jane@example.com")
387
+ ```
388
+
389
+ ## Import
390
+
391
+ For all import syntaxes, the "resource in question" can take any of the following forms:
392
+
393
+ * locations/{{location}}/workforcePools/{{workforce_pool_id}}
394
+
395
+ * {{location}}/{{workforce_pool_id}}
396
+
397
+ * {{workforce_pool_id}}
398
+
399
+ Any variables not passed in the import command will be taken from the provider configuration.
400
+
401
+ Cloud IAM workforcepool IAM resources can be imported using the resource identifiers, role, and member.
402
+
403
+ IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
404
+
405
+ ```sh
406
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor "locations/{{location}}/workforcePools/{{workforce_pool_id}} roles/iam.workforcePoolViewer user:jane@example.com"
407
+ ```
408
+
409
+ IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
410
+
411
+ ```sh
412
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor "locations/{{location}}/workforcePools/{{workforce_pool_id}} roles/iam.workforcePoolViewer"
413
+ ```
414
+
415
+ IAM policy imports use the identifier of the resource in question, e.g.
416
+
417
+ ```sh
418
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor locations/{{location}}/workforcePools/{{workforce_pool_id}}
419
+ ```
420
+
421
+ -> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
422
+
423
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
424
+
425
+ :param str resource_name: The name of the resource.
426
+ :param pulumi.ResourceOptions opts: Options for the resource.
427
+ :param pulumi.Input[_builtins.str] location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
428
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
429
+ location is specified, it is taken from the provider configuration.
430
+ :param pulumi.Input[_builtins.str] member: Identities that will be granted the privilege in `role`.
431
+ Each entry can have one of the following values:
432
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
433
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
434
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
435
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
436
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
437
+ * **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.
438
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
439
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
440
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
441
+ :param pulumi.Input[_builtins.str] role: The role that should be applied. Only one
442
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
443
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
444
+ :param pulumi.Input[_builtins.str] workforce_pool_id: Used to find the parent resource to bind the IAM policy to
445
+ """
446
+ ...
447
+ @overload
448
+ def __init__(__self__,
449
+ resource_name: str,
450
+ args: WorkforcePoolIamMemberArgs,
451
+ opts: Optional[pulumi.ResourceOptions] = None):
452
+ """
453
+ Three different resources help you manage your IAM policy for Cloud IAM WorkforcePool. Each of these resources serves a different use case:
454
+
455
+ * `iam.WorkforcePoolIamPolicy`: Authoritative. Sets the IAM policy for the workforcepool and replaces any existing policy already attached.
456
+ * `iam.WorkforcePoolIamBinding`: 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 workforcepool are preserved.
457
+ * `iam.WorkforcePoolIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the workforcepool are preserved.
458
+
459
+ A data source can be used to retrieve policy data in advent you do not need creation
460
+
461
+ * `iam.WorkforcePoolIamPolicy`: Retrieves the IAM policy for the workforcepool
462
+
463
+ > **Note:** `iam.WorkforcePoolIamPolicy` **cannot** be used in conjunction with `iam.WorkforcePoolIamBinding` and `iam.WorkforcePoolIamMember` or they will fight over what your policy should be.
464
+
465
+ > **Note:** `iam.WorkforcePoolIamBinding` resources **can be** used in conjunction with `iam.WorkforcePoolIamMember` resources **only if** they do not grant privilege to the same role.
466
+
467
+ ## iam.WorkforcePoolIamPolicy
468
+
469
+ ```python
470
+ import pulumi
471
+ import pulumi_gcp as gcp
472
+
473
+ admin = gcp.organizations.get_iam_policy(bindings=[{
474
+ "role": "roles/iam.workforcePoolAdmin",
475
+ "members": ["user:jane@example.com"],
476
+ }])
477
+ policy = gcp.iam.WorkforcePoolIamPolicy("policy",
478
+ location=example["location"],
479
+ workforce_pool_id=example["workforcePoolId"],
480
+ policy_data=admin.policy_data)
481
+ ```
482
+
483
+ ## iam.WorkforcePoolIamBinding
484
+
485
+ ```python
486
+ import pulumi
487
+ import pulumi_gcp as gcp
488
+
489
+ binding = gcp.iam.WorkforcePoolIamBinding("binding",
490
+ location=example["location"],
491
+ workforce_pool_id=example["workforcePoolId"],
492
+ role="roles/iam.workforcePoolAdmin",
493
+ members=["user:jane@example.com"])
494
+ ```
495
+
496
+ ## iam.WorkforcePoolIamMember
497
+
498
+ ```python
499
+ import pulumi
500
+ import pulumi_gcp as gcp
501
+
502
+ member = gcp.iam.WorkforcePoolIamMember("member",
503
+ location=example["location"],
504
+ workforce_pool_id=example["workforcePoolId"],
505
+ role="roles/iam.workforcePoolAdmin",
506
+ member="user:jane@example.com")
507
+ ```
508
+
509
+ ## > **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
510
+
511
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
512
+ ---
513
+
514
+ # IAM policy for Cloud IAM WorkforcePool
515
+ Three different resources help you manage your IAM policy for Cloud IAM WorkforcePool. Each of these resources serves a different use case:
516
+
517
+ * `iam.WorkforcePoolIamPolicy`: Authoritative. Sets the IAM policy for the workforcepool and replaces any existing policy already attached.
518
+ * `iam.WorkforcePoolIamBinding`: 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 workforcepool are preserved.
519
+ * `iam.WorkforcePoolIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the workforcepool are preserved.
520
+
521
+ A data source can be used to retrieve policy data in advent you do not need creation
522
+
523
+ * `iam.WorkforcePoolIamPolicy`: Retrieves the IAM policy for the workforcepool
524
+
525
+ > **Note:** `iam.WorkforcePoolIamPolicy` **cannot** be used in conjunction with `iam.WorkforcePoolIamBinding` and `iam.WorkforcePoolIamMember` or they will fight over what your policy should be.
526
+
527
+ > **Note:** `iam.WorkforcePoolIamBinding` resources **can be** used in conjunction with `iam.WorkforcePoolIamMember` resources **only if** they do not grant privilege to the same role.
528
+
529
+ ## iam.WorkforcePoolIamPolicy
530
+
531
+ ```python
532
+ import pulumi
533
+ import pulumi_gcp as gcp
534
+
535
+ admin = gcp.organizations.get_iam_policy(bindings=[{
536
+ "role": "roles/iam.workforcePoolAdmin",
537
+ "members": ["user:jane@example.com"],
538
+ }])
539
+ policy = gcp.iam.WorkforcePoolIamPolicy("policy",
540
+ location=example["location"],
541
+ workforce_pool_id=example["workforcePoolId"],
542
+ policy_data=admin.policy_data)
543
+ ```
544
+
545
+ ## iam.WorkforcePoolIamBinding
546
+
547
+ ```python
548
+ import pulumi
549
+ import pulumi_gcp as gcp
550
+
551
+ binding = gcp.iam.WorkforcePoolIamBinding("binding",
552
+ location=example["location"],
553
+ workforce_pool_id=example["workforcePoolId"],
554
+ role="roles/iam.workforcePoolAdmin",
555
+ members=["user:jane@example.com"])
556
+ ```
557
+
558
+ ## iam.WorkforcePoolIamMember
559
+
560
+ ```python
561
+ import pulumi
562
+ import pulumi_gcp as gcp
563
+
564
+ member = gcp.iam.WorkforcePoolIamMember("member",
565
+ location=example["location"],
566
+ workforce_pool_id=example["workforcePoolId"],
567
+ role="roles/iam.workforcePoolAdmin",
568
+ member="user:jane@example.com")
569
+ ```
570
+
571
+ ## Import
572
+
573
+ For all import syntaxes, the "resource in question" can take any of the following forms:
574
+
575
+ * locations/{{location}}/workforcePools/{{workforce_pool_id}}
576
+
577
+ * {{location}}/{{workforce_pool_id}}
578
+
579
+ * {{workforce_pool_id}}
580
+
581
+ Any variables not passed in the import command will be taken from the provider configuration.
582
+
583
+ Cloud IAM workforcepool IAM resources can be imported using the resource identifiers, role, and member.
584
+
585
+ IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
586
+
587
+ ```sh
588
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor "locations/{{location}}/workforcePools/{{workforce_pool_id}} roles/iam.workforcePoolViewer user:jane@example.com"
589
+ ```
590
+
591
+ IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
592
+
593
+ ```sh
594
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor "locations/{{location}}/workforcePools/{{workforce_pool_id}} roles/iam.workforcePoolViewer"
595
+ ```
596
+
597
+ IAM policy imports use the identifier of the resource in question, e.g.
598
+
599
+ ```sh
600
+ $ pulumi import gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember editor locations/{{location}}/workforcePools/{{workforce_pool_id}}
601
+ ```
602
+
603
+ -> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
604
+
605
+ full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
606
+
607
+ :param str resource_name: The name of the resource.
608
+ :param WorkforcePoolIamMemberArgs args: The arguments to use to populate this resource's properties.
609
+ :param pulumi.ResourceOptions opts: Options for the resource.
610
+ """
611
+ ...
612
+ def __init__(__self__, resource_name: str, *args, **kwargs):
613
+ resource_args, opts = _utilities.get_resource_args_opts(WorkforcePoolIamMemberArgs, pulumi.ResourceOptions, *args, **kwargs)
614
+ if resource_args is not None:
615
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
616
+ else:
617
+ __self__._internal_init(resource_name, *args, **kwargs)
618
+
619
+ def _internal_init(__self__,
620
+ resource_name: str,
621
+ opts: Optional[pulumi.ResourceOptions] = None,
622
+ condition: Optional[pulumi.Input[Union['WorkforcePoolIamMemberConditionArgs', 'WorkforcePoolIamMemberConditionArgsDict']]] = None,
623
+ location: Optional[pulumi.Input[_builtins.str]] = None,
624
+ member: Optional[pulumi.Input[_builtins.str]] = None,
625
+ role: Optional[pulumi.Input[_builtins.str]] = None,
626
+ workforce_pool_id: Optional[pulumi.Input[_builtins.str]] = None,
627
+ __props__=None):
628
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
629
+ if not isinstance(opts, pulumi.ResourceOptions):
630
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
631
+ if opts.id is None:
632
+ if __props__ is not None:
633
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
634
+ __props__ = WorkforcePoolIamMemberArgs.__new__(WorkforcePoolIamMemberArgs)
635
+
636
+ __props__.__dict__["condition"] = condition
637
+ __props__.__dict__["location"] = location
638
+ if member is None and not opts.urn:
639
+ raise TypeError("Missing required property 'member'")
640
+ __props__.__dict__["member"] = member
641
+ if role is None and not opts.urn:
642
+ raise TypeError("Missing required property 'role'")
643
+ __props__.__dict__["role"] = role
644
+ if workforce_pool_id is None and not opts.urn:
645
+ raise TypeError("Missing required property 'workforce_pool_id'")
646
+ __props__.__dict__["workforce_pool_id"] = workforce_pool_id
647
+ __props__.__dict__["etag"] = None
648
+ super(WorkforcePoolIamMember, __self__).__init__(
649
+ 'gcp:iam/workforcePoolIamMember:WorkforcePoolIamMember',
650
+ resource_name,
651
+ __props__,
652
+ opts)
653
+
654
+ @staticmethod
655
+ def get(resource_name: str,
656
+ id: pulumi.Input[str],
657
+ opts: Optional[pulumi.ResourceOptions] = None,
658
+ condition: Optional[pulumi.Input[Union['WorkforcePoolIamMemberConditionArgs', 'WorkforcePoolIamMemberConditionArgsDict']]] = None,
659
+ etag: Optional[pulumi.Input[_builtins.str]] = None,
660
+ location: Optional[pulumi.Input[_builtins.str]] = None,
661
+ member: Optional[pulumi.Input[_builtins.str]] = None,
662
+ role: Optional[pulumi.Input[_builtins.str]] = None,
663
+ workforce_pool_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'WorkforcePoolIamMember':
664
+ """
665
+ Get an existing WorkforcePoolIamMember resource's state with the given name, id, and optional extra
666
+ properties used to qualify the lookup.
667
+
668
+ :param str resource_name: The unique name of the resulting resource.
669
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
670
+ :param pulumi.ResourceOptions opts: Options for the resource.
671
+ :param pulumi.Input[_builtins.str] etag: (Computed) The etag of the IAM policy.
672
+ :param pulumi.Input[_builtins.str] location: The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
673
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
674
+ location is specified, it is taken from the provider configuration.
675
+ :param pulumi.Input[_builtins.str] member: Identities that will be granted the privilege in `role`.
676
+ Each entry can have one of the following values:
677
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
678
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
679
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
680
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
681
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
682
+ * **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.
683
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
684
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
685
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
686
+ :param pulumi.Input[_builtins.str] role: The role that should be applied. Only one
687
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
688
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
689
+ :param pulumi.Input[_builtins.str] workforce_pool_id: Used to find the parent resource to bind the IAM policy to
690
+ """
691
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
692
+
693
+ __props__ = _WorkforcePoolIamMemberState.__new__(_WorkforcePoolIamMemberState)
694
+
695
+ __props__.__dict__["condition"] = condition
696
+ __props__.__dict__["etag"] = etag
697
+ __props__.__dict__["location"] = location
698
+ __props__.__dict__["member"] = member
699
+ __props__.__dict__["role"] = role
700
+ __props__.__dict__["workforce_pool_id"] = workforce_pool_id
701
+ return WorkforcePoolIamMember(resource_name, opts=opts, __props__=__props__)
702
+
703
+ @_builtins.property
704
+ @pulumi.getter
705
+ def condition(self) -> pulumi.Output[Optional['outputs.WorkforcePoolIamMemberCondition']]:
706
+ return pulumi.get(self, "condition")
707
+
708
+ @_builtins.property
709
+ @pulumi.getter
710
+ def etag(self) -> pulumi.Output[_builtins.str]:
711
+ """
712
+ (Computed) The etag of the IAM policy.
713
+ """
714
+ return pulumi.get(self, "etag")
715
+
716
+ @_builtins.property
717
+ @pulumi.getter
718
+ def location(self) -> pulumi.Output[_builtins.str]:
719
+ """
720
+ The location for the resource. Used to find the parent resource to bind the IAM policy to. If not specified,
721
+ the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no
722
+ location is specified, it is taken from the provider configuration.
723
+ """
724
+ return pulumi.get(self, "location")
725
+
726
+ @_builtins.property
727
+ @pulumi.getter
728
+ def member(self) -> pulumi.Output[_builtins.str]:
729
+ """
730
+ Identities that will be granted the privilege in `role`.
731
+ Each entry can have one of the following values:
732
+ * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
733
+ * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
734
+ * **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
735
+ * **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
736
+ * **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
737
+ * **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.
738
+ * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
739
+ * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
740
+ * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
741
+ """
742
+ return pulumi.get(self, "member")
743
+
744
+ @_builtins.property
745
+ @pulumi.getter
746
+ def role(self) -> pulumi.Output[_builtins.str]:
747
+ """
748
+ The role that should be applied. Only one
749
+ `iam.WorkforcePoolIamBinding` can be used per role. Note that custom roles must be of the format
750
+ `[projects|organizations]/{parent-name}/roles/{role-name}`.
751
+ """
752
+ return pulumi.get(self, "role")
753
+
754
+ @_builtins.property
755
+ @pulumi.getter(name="workforcePoolId")
756
+ def workforce_pool_id(self) -> pulumi.Output[_builtins.str]:
757
+ """
758
+ Used to find the parent resource to bind the IAM policy to
759
+ """
760
+ return pulumi.get(self, "workforce_pool_id")
761
+