pulumi-gcp 8.27.0a1744872023__py3-none-any.whl → 8.27.0a1744903336__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.
- pulumi_gcp/__init__.py +80 -0
- pulumi_gcp/bigquery/_inputs.py +87 -30
- pulumi_gcp/bigquery/outputs.py +58 -20
- pulumi_gcp/bigquery/table.py +28 -14
- pulumi_gcp/cloudrun/service.py +46 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +85 -0
- pulumi_gcp/compute/_inputs.py +428 -1
- pulumi_gcp/compute/image.py +183 -0
- pulumi_gcp/compute/outputs.py +362 -3
- pulumi_gcp/compute/region_backend_service.py +6 -2
- pulumi_gcp/compute/snapshot.py +6 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
- pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
- pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
- pulumi_gcp/databasemigrationservice/outputs.py +18 -15
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +77 -0
- pulumi_gcp/developerconnect/account_connector.py +866 -0
- pulumi_gcp/developerconnect/outputs.py +64 -0
- pulumi_gcp/firestore/database.py +82 -0
- pulumi_gcp/firestore/index.py +263 -7
- pulumi_gcp/folder/service_identity.py +0 -26
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/connect_cluster.py +84 -40
- pulumi_gcp/managedkafka/connector.py +98 -44
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/memorystore/_inputs.py +69 -0
- pulumi_gcp/memorystore/get_instance.py +34 -1
- pulumi_gcp/memorystore/instance.py +140 -0
- pulumi_gcp/memorystore/outputs.py +80 -0
- pulumi_gcp/ml/engine_model.py +0 -22
- pulumi_gcp/monitoring/_inputs.py +37 -19
- pulumi_gcp/monitoring/outputs.py +39 -11
- pulumi_gcp/monitoring/uptime_check_config.py +8 -0
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +8 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +69 -0
- pulumi_gcp/redis/cluster.py +140 -0
- pulumi_gcp/redis/outputs.py +40 -0
- pulumi_gcp/storage/_inputs.py +111 -0
- pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
- pulumi_gcp/storage/outputs.py +174 -0
- pulumi_gcp/vertex/__init__.py +12 -0
- pulumi_gcp/vertex/_inputs.py +294 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_group.py +1 -1
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
- pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
- pulumi_gcp/vertex/outputs.py +168 -0
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/RECORD +76 -63
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,614 @@
|
|
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 builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = ['AiFeatureOnlineStoreFeatureviewIamMemberArgs', 'AiFeatureOnlineStoreFeatureviewIamMember']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class AiFeatureOnlineStoreFeatureviewIamMemberArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
feature_online_store: pulumi.Input[builtins.str],
|
26
|
+
feature_view: pulumi.Input[builtins.str],
|
27
|
+
member: pulumi.Input[builtins.str],
|
28
|
+
role: pulumi.Input[builtins.str],
|
29
|
+
condition: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']] = None,
|
30
|
+
project: Optional[pulumi.Input[builtins.str]] = None,
|
31
|
+
region: Optional[pulumi.Input[builtins.str]] = None):
|
32
|
+
"""
|
33
|
+
The set of arguments for constructing a AiFeatureOnlineStoreFeatureviewIamMember resource.
|
34
|
+
:param pulumi.Input[builtins.str] feature_view: Used to find the parent resource to bind the IAM policy to
|
35
|
+
:param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
|
36
|
+
Each entry can have one of the following values:
|
37
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
38
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
39
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
40
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
41
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
42
|
+
* **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.
|
43
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
44
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
45
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
46
|
+
:param pulumi.Input[builtins.str] role: The role that should be applied. Only one
|
47
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
48
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
49
|
+
:param pulumi.Input[builtins.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
|
+
:param pulumi.Input[builtins.str] region: The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
52
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
53
|
+
region is specified, it is taken from the provider configuration.
|
54
|
+
"""
|
55
|
+
pulumi.set(__self__, "feature_online_store", feature_online_store)
|
56
|
+
pulumi.set(__self__, "feature_view", feature_view)
|
57
|
+
pulumi.set(__self__, "member", member)
|
58
|
+
pulumi.set(__self__, "role", role)
|
59
|
+
if condition is not None:
|
60
|
+
pulumi.set(__self__, "condition", condition)
|
61
|
+
if project is not None:
|
62
|
+
pulumi.set(__self__, "project", project)
|
63
|
+
if region is not None:
|
64
|
+
pulumi.set(__self__, "region", region)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="featureOnlineStore")
|
68
|
+
def feature_online_store(self) -> pulumi.Input[builtins.str]:
|
69
|
+
return pulumi.get(self, "feature_online_store")
|
70
|
+
|
71
|
+
@feature_online_store.setter
|
72
|
+
def feature_online_store(self, value: pulumi.Input[builtins.str]):
|
73
|
+
pulumi.set(self, "feature_online_store", value)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="featureView")
|
77
|
+
def feature_view(self) -> pulumi.Input[builtins.str]:
|
78
|
+
"""
|
79
|
+
Used to find the parent resource to bind the IAM policy to
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "feature_view")
|
82
|
+
|
83
|
+
@feature_view.setter
|
84
|
+
def feature_view(self, value: pulumi.Input[builtins.str]):
|
85
|
+
pulumi.set(self, "feature_view", value)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter
|
89
|
+
def member(self) -> pulumi.Input[builtins.str]:
|
90
|
+
"""
|
91
|
+
Identities that will be granted the privilege in `role`.
|
92
|
+
Each entry can have one of the following values:
|
93
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
94
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
95
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
96
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
97
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
98
|
+
* **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.
|
99
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
100
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
101
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "member")
|
104
|
+
|
105
|
+
@member.setter
|
106
|
+
def member(self, value: pulumi.Input[builtins.str]):
|
107
|
+
pulumi.set(self, "member", value)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def role(self) -> pulumi.Input[builtins.str]:
|
112
|
+
"""
|
113
|
+
The role that should be applied. Only one
|
114
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
115
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "role")
|
118
|
+
|
119
|
+
@role.setter
|
120
|
+
def role(self, value: pulumi.Input[builtins.str]):
|
121
|
+
pulumi.set(self, "role", value)
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def condition(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']]:
|
126
|
+
return pulumi.get(self, "condition")
|
127
|
+
|
128
|
+
@condition.setter
|
129
|
+
def condition(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']]):
|
130
|
+
pulumi.set(self, "condition", value)
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter
|
134
|
+
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
135
|
+
"""
|
136
|
+
The ID of the project in which the resource belongs.
|
137
|
+
If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "project")
|
140
|
+
|
141
|
+
@project.setter
|
142
|
+
def project(self, value: Optional[pulumi.Input[builtins.str]]):
|
143
|
+
pulumi.set(self, "project", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter
|
147
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
148
|
+
"""
|
149
|
+
The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
150
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
151
|
+
region is specified, it is taken from the provider configuration.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "region")
|
154
|
+
|
155
|
+
@region.setter
|
156
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
157
|
+
pulumi.set(self, "region", value)
|
158
|
+
|
159
|
+
|
160
|
+
@pulumi.input_type
|
161
|
+
class _AiFeatureOnlineStoreFeatureviewIamMemberState:
|
162
|
+
def __init__(__self__, *,
|
163
|
+
condition: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']] = None,
|
164
|
+
etag: Optional[pulumi.Input[builtins.str]] = None,
|
165
|
+
feature_online_store: Optional[pulumi.Input[builtins.str]] = None,
|
166
|
+
feature_view: Optional[pulumi.Input[builtins.str]] = None,
|
167
|
+
member: Optional[pulumi.Input[builtins.str]] = None,
|
168
|
+
project: Optional[pulumi.Input[builtins.str]] = None,
|
169
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
170
|
+
role: Optional[pulumi.Input[builtins.str]] = None):
|
171
|
+
"""
|
172
|
+
Input properties used for looking up and filtering AiFeatureOnlineStoreFeatureviewIamMember resources.
|
173
|
+
:param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
|
174
|
+
:param pulumi.Input[builtins.str] feature_view: Used to find the parent resource to bind the IAM policy to
|
175
|
+
:param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
|
176
|
+
Each entry can have one of the following values:
|
177
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
178
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
179
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
180
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
181
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
182
|
+
* **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.
|
183
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
184
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
185
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
186
|
+
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
187
|
+
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.
|
188
|
+
:param pulumi.Input[builtins.str] region: The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
189
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
190
|
+
region is specified, it is taken from the provider configuration.
|
191
|
+
:param pulumi.Input[builtins.str] role: The role that should be applied. Only one
|
192
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
193
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
194
|
+
"""
|
195
|
+
if condition is not None:
|
196
|
+
pulumi.set(__self__, "condition", condition)
|
197
|
+
if etag is not None:
|
198
|
+
pulumi.set(__self__, "etag", etag)
|
199
|
+
if feature_online_store is not None:
|
200
|
+
pulumi.set(__self__, "feature_online_store", feature_online_store)
|
201
|
+
if feature_view is not None:
|
202
|
+
pulumi.set(__self__, "feature_view", feature_view)
|
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 region is not None:
|
208
|
+
pulumi.set(__self__, "region", region)
|
209
|
+
if role is not None:
|
210
|
+
pulumi.set(__self__, "role", role)
|
211
|
+
|
212
|
+
@property
|
213
|
+
@pulumi.getter
|
214
|
+
def condition(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']]:
|
215
|
+
return pulumi.get(self, "condition")
|
216
|
+
|
217
|
+
@condition.setter
|
218
|
+
def condition(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs']]):
|
219
|
+
pulumi.set(self, "condition", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter
|
223
|
+
def etag(self) -> Optional[pulumi.Input[builtins.str]]:
|
224
|
+
"""
|
225
|
+
(Computed) The etag of the IAM policy.
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "etag")
|
228
|
+
|
229
|
+
@etag.setter
|
230
|
+
def etag(self, value: Optional[pulumi.Input[builtins.str]]):
|
231
|
+
pulumi.set(self, "etag", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="featureOnlineStore")
|
235
|
+
def feature_online_store(self) -> Optional[pulumi.Input[builtins.str]]:
|
236
|
+
return pulumi.get(self, "feature_online_store")
|
237
|
+
|
238
|
+
@feature_online_store.setter
|
239
|
+
def feature_online_store(self, value: Optional[pulumi.Input[builtins.str]]):
|
240
|
+
pulumi.set(self, "feature_online_store", value)
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="featureView")
|
244
|
+
def feature_view(self) -> Optional[pulumi.Input[builtins.str]]:
|
245
|
+
"""
|
246
|
+
Used to find the parent resource to bind the IAM policy to
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "feature_view")
|
249
|
+
|
250
|
+
@feature_view.setter
|
251
|
+
def feature_view(self, value: Optional[pulumi.Input[builtins.str]]):
|
252
|
+
pulumi.set(self, "feature_view", value)
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter
|
256
|
+
def member(self) -> Optional[pulumi.Input[builtins.str]]:
|
257
|
+
"""
|
258
|
+
Identities that will be granted the privilege in `role`.
|
259
|
+
Each entry can have one of the following values:
|
260
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
261
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
262
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
263
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
264
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
265
|
+
* **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.
|
266
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
267
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
268
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "member")
|
271
|
+
|
272
|
+
@member.setter
|
273
|
+
def member(self, value: Optional[pulumi.Input[builtins.str]]):
|
274
|
+
pulumi.set(self, "member", value)
|
275
|
+
|
276
|
+
@property
|
277
|
+
@pulumi.getter
|
278
|
+
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
279
|
+
"""
|
280
|
+
The ID of the project in which the resource belongs.
|
281
|
+
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.
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "project")
|
284
|
+
|
285
|
+
@project.setter
|
286
|
+
def project(self, value: Optional[pulumi.Input[builtins.str]]):
|
287
|
+
pulumi.set(self, "project", value)
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter
|
291
|
+
def region(self) -> Optional[pulumi.Input[builtins.str]]:
|
292
|
+
"""
|
293
|
+
The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
294
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
295
|
+
region is specified, it is taken from the provider configuration.
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "region")
|
298
|
+
|
299
|
+
@region.setter
|
300
|
+
def region(self, value: Optional[pulumi.Input[builtins.str]]):
|
301
|
+
pulumi.set(self, "region", value)
|
302
|
+
|
303
|
+
@property
|
304
|
+
@pulumi.getter
|
305
|
+
def role(self) -> Optional[pulumi.Input[builtins.str]]:
|
306
|
+
"""
|
307
|
+
The role that should be applied. Only one
|
308
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
309
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "role")
|
312
|
+
|
313
|
+
@role.setter
|
314
|
+
def role(self, value: Optional[pulumi.Input[builtins.str]]):
|
315
|
+
pulumi.set(self, "role", value)
|
316
|
+
|
317
|
+
|
318
|
+
class AiFeatureOnlineStoreFeatureviewIamMember(pulumi.CustomResource):
|
319
|
+
@overload
|
320
|
+
def __init__(__self__,
|
321
|
+
resource_name: str,
|
322
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
323
|
+
condition: Optional[pulumi.Input[Union['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs', 'AiFeatureOnlineStoreFeatureviewIamMemberConditionArgsDict']]] = None,
|
324
|
+
feature_online_store: Optional[pulumi.Input[builtins.str]] = None,
|
325
|
+
feature_view: Optional[pulumi.Input[builtins.str]] = None,
|
326
|
+
member: Optional[pulumi.Input[builtins.str]] = None,
|
327
|
+
project: Optional[pulumi.Input[builtins.str]] = None,
|
328
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
329
|
+
role: Optional[pulumi.Input[builtins.str]] = None,
|
330
|
+
__props__=None):
|
331
|
+
"""
|
332
|
+
## Import
|
333
|
+
|
334
|
+
For all import syntaxes, the "resource in question" can take any of the following forms:
|
335
|
+
|
336
|
+
* {{feature_online_store}}/featureViews/{{name}}
|
337
|
+
|
338
|
+
* {{feature_online_store}}/{{name}}
|
339
|
+
|
340
|
+
* {{name}}
|
341
|
+
|
342
|
+
Any variables not passed in the import command will be taken from the provider configuration.
|
343
|
+
|
344
|
+
Vertex AI featureonlinestorefeatureview IAM resources can be imported using the resource identifiers, role, and member.
|
345
|
+
|
346
|
+
IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
|
347
|
+
|
348
|
+
```sh
|
349
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor "{{feature_online_store}}/featureViews/{{feature_online_store_featureview}} roles/viewer user:jane@example.com"
|
350
|
+
```
|
351
|
+
|
352
|
+
IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
|
353
|
+
|
354
|
+
```sh
|
355
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor "{{feature_online_store}}/featureViews/{{feature_online_store_featureview}} roles/viewer"
|
356
|
+
```
|
357
|
+
|
358
|
+
IAM policy imports use the identifier of the resource in question, e.g.
|
359
|
+
|
360
|
+
```sh
|
361
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor {{feature_online_store}}/featureViews/{{feature_online_store_featureview}}
|
362
|
+
```
|
363
|
+
|
364
|
+
-> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
|
365
|
+
|
366
|
+
full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
|
367
|
+
|
368
|
+
:param str resource_name: The name of the resource.
|
369
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
370
|
+
:param pulumi.Input[builtins.str] feature_view: Used to find the parent resource to bind the IAM policy to
|
371
|
+
:param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
|
372
|
+
Each entry can have one of the following values:
|
373
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
374
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
375
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
376
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
377
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
378
|
+
* **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.
|
379
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
380
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
381
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
382
|
+
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
383
|
+
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.
|
384
|
+
:param pulumi.Input[builtins.str] region: The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
385
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
386
|
+
region is specified, it is taken from the provider configuration.
|
387
|
+
:param pulumi.Input[builtins.str] role: The role that should be applied. Only one
|
388
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
389
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
390
|
+
"""
|
391
|
+
...
|
392
|
+
@overload
|
393
|
+
def __init__(__self__,
|
394
|
+
resource_name: str,
|
395
|
+
args: AiFeatureOnlineStoreFeatureviewIamMemberArgs,
|
396
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
397
|
+
"""
|
398
|
+
## Import
|
399
|
+
|
400
|
+
For all import syntaxes, the "resource in question" can take any of the following forms:
|
401
|
+
|
402
|
+
* {{feature_online_store}}/featureViews/{{name}}
|
403
|
+
|
404
|
+
* {{feature_online_store}}/{{name}}
|
405
|
+
|
406
|
+
* {{name}}
|
407
|
+
|
408
|
+
Any variables not passed in the import command will be taken from the provider configuration.
|
409
|
+
|
410
|
+
Vertex AI featureonlinestorefeatureview IAM resources can be imported using the resource identifiers, role, and member.
|
411
|
+
|
412
|
+
IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
|
413
|
+
|
414
|
+
```sh
|
415
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor "{{feature_online_store}}/featureViews/{{feature_online_store_featureview}} roles/viewer user:jane@example.com"
|
416
|
+
```
|
417
|
+
|
418
|
+
IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
|
419
|
+
|
420
|
+
```sh
|
421
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor "{{feature_online_store}}/featureViews/{{feature_online_store_featureview}} roles/viewer"
|
422
|
+
```
|
423
|
+
|
424
|
+
IAM policy imports use the identifier of the resource in question, e.g.
|
425
|
+
|
426
|
+
```sh
|
427
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember editor {{feature_online_store}}/featureViews/{{feature_online_store_featureview}}
|
428
|
+
```
|
429
|
+
|
430
|
+
-> **Custom Roles** If you're importing a IAM resource with a custom role, make sure to use the
|
431
|
+
|
432
|
+
full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
|
433
|
+
|
434
|
+
:param str resource_name: The name of the resource.
|
435
|
+
:param AiFeatureOnlineStoreFeatureviewIamMemberArgs args: The arguments to use to populate this resource's properties.
|
436
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
437
|
+
"""
|
438
|
+
...
|
439
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
440
|
+
resource_args, opts = _utilities.get_resource_args_opts(AiFeatureOnlineStoreFeatureviewIamMemberArgs, pulumi.ResourceOptions, *args, **kwargs)
|
441
|
+
if resource_args is not None:
|
442
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
443
|
+
else:
|
444
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
445
|
+
|
446
|
+
def _internal_init(__self__,
|
447
|
+
resource_name: str,
|
448
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
449
|
+
condition: Optional[pulumi.Input[Union['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs', 'AiFeatureOnlineStoreFeatureviewIamMemberConditionArgsDict']]] = None,
|
450
|
+
feature_online_store: Optional[pulumi.Input[builtins.str]] = None,
|
451
|
+
feature_view: Optional[pulumi.Input[builtins.str]] = None,
|
452
|
+
member: Optional[pulumi.Input[builtins.str]] = None,
|
453
|
+
project: Optional[pulumi.Input[builtins.str]] = None,
|
454
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
455
|
+
role: Optional[pulumi.Input[builtins.str]] = None,
|
456
|
+
__props__=None):
|
457
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
458
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
459
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
460
|
+
if opts.id is None:
|
461
|
+
if __props__ is not None:
|
462
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
463
|
+
__props__ = AiFeatureOnlineStoreFeatureviewIamMemberArgs.__new__(AiFeatureOnlineStoreFeatureviewIamMemberArgs)
|
464
|
+
|
465
|
+
__props__.__dict__["condition"] = condition
|
466
|
+
if feature_online_store is None and not opts.urn:
|
467
|
+
raise TypeError("Missing required property 'feature_online_store'")
|
468
|
+
__props__.__dict__["feature_online_store"] = feature_online_store
|
469
|
+
if feature_view is None and not opts.urn:
|
470
|
+
raise TypeError("Missing required property 'feature_view'")
|
471
|
+
__props__.__dict__["feature_view"] = feature_view
|
472
|
+
if member is None and not opts.urn:
|
473
|
+
raise TypeError("Missing required property 'member'")
|
474
|
+
__props__.__dict__["member"] = member
|
475
|
+
__props__.__dict__["project"] = project
|
476
|
+
__props__.__dict__["region"] = region
|
477
|
+
if role is None and not opts.urn:
|
478
|
+
raise TypeError("Missing required property 'role'")
|
479
|
+
__props__.__dict__["role"] = role
|
480
|
+
__props__.__dict__["etag"] = None
|
481
|
+
super(AiFeatureOnlineStoreFeatureviewIamMember, __self__).__init__(
|
482
|
+
'gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember',
|
483
|
+
resource_name,
|
484
|
+
__props__,
|
485
|
+
opts)
|
486
|
+
|
487
|
+
@staticmethod
|
488
|
+
def get(resource_name: str,
|
489
|
+
id: pulumi.Input[str],
|
490
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
491
|
+
condition: Optional[pulumi.Input[Union['AiFeatureOnlineStoreFeatureviewIamMemberConditionArgs', 'AiFeatureOnlineStoreFeatureviewIamMemberConditionArgsDict']]] = None,
|
492
|
+
etag: Optional[pulumi.Input[builtins.str]] = None,
|
493
|
+
feature_online_store: Optional[pulumi.Input[builtins.str]] = None,
|
494
|
+
feature_view: Optional[pulumi.Input[builtins.str]] = None,
|
495
|
+
member: Optional[pulumi.Input[builtins.str]] = None,
|
496
|
+
project: Optional[pulumi.Input[builtins.str]] = None,
|
497
|
+
region: Optional[pulumi.Input[builtins.str]] = None,
|
498
|
+
role: Optional[pulumi.Input[builtins.str]] = None) -> 'AiFeatureOnlineStoreFeatureviewIamMember':
|
499
|
+
"""
|
500
|
+
Get an existing AiFeatureOnlineStoreFeatureviewIamMember resource's state with the given name, id, and optional extra
|
501
|
+
properties used to qualify the lookup.
|
502
|
+
|
503
|
+
:param str resource_name: The unique name of the resulting resource.
|
504
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
505
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
506
|
+
:param pulumi.Input[builtins.str] etag: (Computed) The etag of the IAM policy.
|
507
|
+
:param pulumi.Input[builtins.str] feature_view: Used to find the parent resource to bind the IAM policy to
|
508
|
+
:param pulumi.Input[builtins.str] member: Identities that will be granted the privilege in `role`.
|
509
|
+
Each entry can have one of the following values:
|
510
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
511
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
512
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
513
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
514
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
515
|
+
* **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.
|
516
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
517
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
518
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
519
|
+
:param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
|
520
|
+
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.
|
521
|
+
:param pulumi.Input[builtins.str] region: The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
522
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
523
|
+
region is specified, it is taken from the provider configuration.
|
524
|
+
:param pulumi.Input[builtins.str] role: The role that should be applied. Only one
|
525
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
526
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
527
|
+
"""
|
528
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
529
|
+
|
530
|
+
__props__ = _AiFeatureOnlineStoreFeatureviewIamMemberState.__new__(_AiFeatureOnlineStoreFeatureviewIamMemberState)
|
531
|
+
|
532
|
+
__props__.__dict__["condition"] = condition
|
533
|
+
__props__.__dict__["etag"] = etag
|
534
|
+
__props__.__dict__["feature_online_store"] = feature_online_store
|
535
|
+
__props__.__dict__["feature_view"] = feature_view
|
536
|
+
__props__.__dict__["member"] = member
|
537
|
+
__props__.__dict__["project"] = project
|
538
|
+
__props__.__dict__["region"] = region
|
539
|
+
__props__.__dict__["role"] = role
|
540
|
+
return AiFeatureOnlineStoreFeatureviewIamMember(resource_name, opts=opts, __props__=__props__)
|
541
|
+
|
542
|
+
@property
|
543
|
+
@pulumi.getter
|
544
|
+
def condition(self) -> pulumi.Output[Optional['outputs.AiFeatureOnlineStoreFeatureviewIamMemberCondition']]:
|
545
|
+
return pulumi.get(self, "condition")
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter
|
549
|
+
def etag(self) -> pulumi.Output[builtins.str]:
|
550
|
+
"""
|
551
|
+
(Computed) The etag of the IAM policy.
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "etag")
|
554
|
+
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="featureOnlineStore")
|
557
|
+
def feature_online_store(self) -> pulumi.Output[builtins.str]:
|
558
|
+
return pulumi.get(self, "feature_online_store")
|
559
|
+
|
560
|
+
@property
|
561
|
+
@pulumi.getter(name="featureView")
|
562
|
+
def feature_view(self) -> pulumi.Output[builtins.str]:
|
563
|
+
"""
|
564
|
+
Used to find the parent resource to bind the IAM policy to
|
565
|
+
"""
|
566
|
+
return pulumi.get(self, "feature_view")
|
567
|
+
|
568
|
+
@property
|
569
|
+
@pulumi.getter
|
570
|
+
def member(self) -> pulumi.Output[builtins.str]:
|
571
|
+
"""
|
572
|
+
Identities that will be granted the privilege in `role`.
|
573
|
+
Each entry can have one of the following values:
|
574
|
+
* **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
|
575
|
+
* **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
|
576
|
+
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
577
|
+
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
578
|
+
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
579
|
+
* **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.
|
580
|
+
* **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
|
581
|
+
* **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
|
582
|
+
* **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
|
583
|
+
"""
|
584
|
+
return pulumi.get(self, "member")
|
585
|
+
|
586
|
+
@property
|
587
|
+
@pulumi.getter
|
588
|
+
def project(self) -> pulumi.Output[builtins.str]:
|
589
|
+
"""
|
590
|
+
The ID of the project in which the resource belongs.
|
591
|
+
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.
|
592
|
+
"""
|
593
|
+
return pulumi.get(self, "project")
|
594
|
+
|
595
|
+
@property
|
596
|
+
@pulumi.getter
|
597
|
+
def region(self) -> pulumi.Output[builtins.str]:
|
598
|
+
"""
|
599
|
+
The region for the resource. It should be the same as the featureonlinestore region. Used to find the parent resource to bind the IAM policy to. If not specified,
|
600
|
+
the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
|
601
|
+
region is specified, it is taken from the provider configuration.
|
602
|
+
"""
|
603
|
+
return pulumi.get(self, "region")
|
604
|
+
|
605
|
+
@property
|
606
|
+
@pulumi.getter
|
607
|
+
def role(self) -> pulumi.Output[builtins.str]:
|
608
|
+
"""
|
609
|
+
The role that should be applied. Only one
|
610
|
+
`vertex.AiFeatureOnlineStoreFeatureviewIamBinding` can be used per role. Note that custom roles must be of the format
|
611
|
+
`[projects|organizations]/{parent-name}/roles/{role-name}`.
|
612
|
+
"""
|
613
|
+
return pulumi.get(self, "role")
|
614
|
+
|