pulumi-gcp 7.20.0__py3-none-any.whl → 7.20.0a1713918100__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 +0 -8
- pulumi_gcp/apigee/organization.py +0 -162
- pulumi_gcp/artifactregistry/_inputs.py +0 -186
- pulumi_gcp/artifactregistry/outputs.py +4 -297
- pulumi_gcp/artifactregistry/repository.py +16 -346
- pulumi_gcp/bigquery/table.py +0 -61
- pulumi_gcp/billing/budget.py +0 -54
- pulumi_gcp/cloudfunctionsv2/_inputs.py +0 -16
- pulumi_gcp/cloudfunctionsv2/function.py +0 -110
- pulumi_gcp/cloudfunctionsv2/outputs.py +0 -25
- pulumi_gcp/compute/_inputs.py +0 -48
- pulumi_gcp/compute/get_instance_group_manager.py +1 -11
- pulumi_gcp/compute/instance_group_manager.py +21 -68
- pulumi_gcp/compute/outputs.py +0 -93
- pulumi_gcp/compute/region_instance_group_manager.py +14 -61
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +128 -0
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +9 -3
- pulumi_gcp/dns/get_record_set.py +0 -3
- pulumi_gcp/dns/outputs.py +56 -34
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +3 -18
- pulumi_gcp/projects/__init__.py +0 -1
- pulumi_gcp/vmwareengine/_inputs.py +5 -63
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/outputs.py +5 -113
- pulumi_gcp/vmwareengine/private_cloud.py +94 -0
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +0 -32
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/RECORD +34 -35
- pulumi_gcp/projects/iam_member_remove.py +0 -313
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/top_level.txt +0 -0
@@ -1,313 +0,0 @@
|
|
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 pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
|
12
|
-
__all__ = ['IamMemberRemoveArgs', 'IamMemberRemove']
|
13
|
-
|
14
|
-
@pulumi.input_type
|
15
|
-
class IamMemberRemoveArgs:
|
16
|
-
def __init__(__self__, *,
|
17
|
-
member: pulumi.Input[str],
|
18
|
-
project: pulumi.Input[str],
|
19
|
-
role: pulumi.Input[str]):
|
20
|
-
"""
|
21
|
-
The set of arguments for constructing a IamMemberRemove resource.
|
22
|
-
:param pulumi.Input[str] member: The IAM principal that should not have the target role.
|
23
|
-
Each entry can have one of the following values:
|
24
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
25
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
26
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
27
|
-
* **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.
|
28
|
-
:param pulumi.Input[str] project: The project id of the target project.
|
29
|
-
:param pulumi.Input[str] role: The target role that should be removed.
|
30
|
-
"""
|
31
|
-
pulumi.set(__self__, "member", member)
|
32
|
-
pulumi.set(__self__, "project", project)
|
33
|
-
pulumi.set(__self__, "role", role)
|
34
|
-
|
35
|
-
@property
|
36
|
-
@pulumi.getter
|
37
|
-
def member(self) -> pulumi.Input[str]:
|
38
|
-
"""
|
39
|
-
The IAM principal that should not have the target role.
|
40
|
-
Each entry can have one of the following values:
|
41
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
42
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
43
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
44
|
-
* **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.
|
45
|
-
"""
|
46
|
-
return pulumi.get(self, "member")
|
47
|
-
|
48
|
-
@member.setter
|
49
|
-
def member(self, value: pulumi.Input[str]):
|
50
|
-
pulumi.set(self, "member", value)
|
51
|
-
|
52
|
-
@property
|
53
|
-
@pulumi.getter
|
54
|
-
def project(self) -> pulumi.Input[str]:
|
55
|
-
"""
|
56
|
-
The project id of the target project.
|
57
|
-
"""
|
58
|
-
return pulumi.get(self, "project")
|
59
|
-
|
60
|
-
@project.setter
|
61
|
-
def project(self, value: pulumi.Input[str]):
|
62
|
-
pulumi.set(self, "project", value)
|
63
|
-
|
64
|
-
@property
|
65
|
-
@pulumi.getter
|
66
|
-
def role(self) -> pulumi.Input[str]:
|
67
|
-
"""
|
68
|
-
The target role that should be removed.
|
69
|
-
"""
|
70
|
-
return pulumi.get(self, "role")
|
71
|
-
|
72
|
-
@role.setter
|
73
|
-
def role(self, value: pulumi.Input[str]):
|
74
|
-
pulumi.set(self, "role", value)
|
75
|
-
|
76
|
-
|
77
|
-
@pulumi.input_type
|
78
|
-
class _IamMemberRemoveState:
|
79
|
-
def __init__(__self__, *,
|
80
|
-
member: Optional[pulumi.Input[str]] = None,
|
81
|
-
project: Optional[pulumi.Input[str]] = None,
|
82
|
-
role: Optional[pulumi.Input[str]] = None):
|
83
|
-
"""
|
84
|
-
Input properties used for looking up and filtering IamMemberRemove resources.
|
85
|
-
:param pulumi.Input[str] member: The IAM principal that should not have the target role.
|
86
|
-
Each entry can have one of the following values:
|
87
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
88
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
89
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
90
|
-
* **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.
|
91
|
-
:param pulumi.Input[str] project: The project id of the target project.
|
92
|
-
:param pulumi.Input[str] role: The target role that should be removed.
|
93
|
-
"""
|
94
|
-
if member is not None:
|
95
|
-
pulumi.set(__self__, "member", member)
|
96
|
-
if project is not None:
|
97
|
-
pulumi.set(__self__, "project", project)
|
98
|
-
if role is not None:
|
99
|
-
pulumi.set(__self__, "role", role)
|
100
|
-
|
101
|
-
@property
|
102
|
-
@pulumi.getter
|
103
|
-
def member(self) -> Optional[pulumi.Input[str]]:
|
104
|
-
"""
|
105
|
-
The IAM principal that should not have the target role.
|
106
|
-
Each entry can have one of the following values:
|
107
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
108
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
109
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
110
|
-
* **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.
|
111
|
-
"""
|
112
|
-
return pulumi.get(self, "member")
|
113
|
-
|
114
|
-
@member.setter
|
115
|
-
def member(self, value: Optional[pulumi.Input[str]]):
|
116
|
-
pulumi.set(self, "member", value)
|
117
|
-
|
118
|
-
@property
|
119
|
-
@pulumi.getter
|
120
|
-
def project(self) -> Optional[pulumi.Input[str]]:
|
121
|
-
"""
|
122
|
-
The project id of the target project.
|
123
|
-
"""
|
124
|
-
return pulumi.get(self, "project")
|
125
|
-
|
126
|
-
@project.setter
|
127
|
-
def project(self, value: Optional[pulumi.Input[str]]):
|
128
|
-
pulumi.set(self, "project", value)
|
129
|
-
|
130
|
-
@property
|
131
|
-
@pulumi.getter
|
132
|
-
def role(self) -> Optional[pulumi.Input[str]]:
|
133
|
-
"""
|
134
|
-
The target role that should be removed.
|
135
|
-
"""
|
136
|
-
return pulumi.get(self, "role")
|
137
|
-
|
138
|
-
@role.setter
|
139
|
-
def role(self, value: Optional[pulumi.Input[str]]):
|
140
|
-
pulumi.set(self, "role", value)
|
141
|
-
|
142
|
-
|
143
|
-
class IamMemberRemove(pulumi.CustomResource):
|
144
|
-
@overload
|
145
|
-
def __init__(__self__,
|
146
|
-
resource_name: str,
|
147
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
148
|
-
member: Optional[pulumi.Input[str]] = None,
|
149
|
-
project: Optional[pulumi.Input[str]] = None,
|
150
|
-
role: Optional[pulumi.Input[str]] = None,
|
151
|
-
__props__=None):
|
152
|
-
"""
|
153
|
-
Ensures that a member:role pairing does not exist in a project's IAM policy.
|
154
|
-
|
155
|
-
On create, this resource will modify the policy to remove the `member` from the
|
156
|
-
`role`. If the membership is ever re-added, the next refresh will clear this
|
157
|
-
resource from state, proposing re-adding it to correct the membership. Import is
|
158
|
-
not supported- this resource will acquire the current policy and modify it as
|
159
|
-
part of creating the resource.
|
160
|
-
|
161
|
-
This resource will conflict with `projects.IAMPolicy` and
|
162
|
-
`projects.IAMBinding` resources that share a role, as well as
|
163
|
-
`projects.IAMMember` resources that target the same membership. When
|
164
|
-
multiple resources conflict the final state is not guaranteed to include or omit
|
165
|
-
the membership. Subsequent `pulumi up` calls will always show a diff
|
166
|
-
until the configuration is corrected.
|
167
|
-
|
168
|
-
For more information see
|
169
|
-
[the official documentation](https://cloud.google.com/iam/docs/granting-changing-revoking-access)
|
170
|
-
and
|
171
|
-
[API reference](https://cloud.google.com/resource-manager/reference/rest/v1/projects/setIamPolicy).
|
172
|
-
|
173
|
-
:param str resource_name: The name of the resource.
|
174
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
175
|
-
:param pulumi.Input[str] member: The IAM principal that should not have the target role.
|
176
|
-
Each entry can have one of the following values:
|
177
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
178
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
179
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
180
|
-
* **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.
|
181
|
-
:param pulumi.Input[str] project: The project id of the target project.
|
182
|
-
:param pulumi.Input[str] role: The target role that should be removed.
|
183
|
-
"""
|
184
|
-
...
|
185
|
-
@overload
|
186
|
-
def __init__(__self__,
|
187
|
-
resource_name: str,
|
188
|
-
args: IamMemberRemoveArgs,
|
189
|
-
opts: Optional[pulumi.ResourceOptions] = None):
|
190
|
-
"""
|
191
|
-
Ensures that a member:role pairing does not exist in a project's IAM policy.
|
192
|
-
|
193
|
-
On create, this resource will modify the policy to remove the `member` from the
|
194
|
-
`role`. If the membership is ever re-added, the next refresh will clear this
|
195
|
-
resource from state, proposing re-adding it to correct the membership. Import is
|
196
|
-
not supported- this resource will acquire the current policy and modify it as
|
197
|
-
part of creating the resource.
|
198
|
-
|
199
|
-
This resource will conflict with `projects.IAMPolicy` and
|
200
|
-
`projects.IAMBinding` resources that share a role, as well as
|
201
|
-
`projects.IAMMember` resources that target the same membership. When
|
202
|
-
multiple resources conflict the final state is not guaranteed to include or omit
|
203
|
-
the membership. Subsequent `pulumi up` calls will always show a diff
|
204
|
-
until the configuration is corrected.
|
205
|
-
|
206
|
-
For more information see
|
207
|
-
[the official documentation](https://cloud.google.com/iam/docs/granting-changing-revoking-access)
|
208
|
-
and
|
209
|
-
[API reference](https://cloud.google.com/resource-manager/reference/rest/v1/projects/setIamPolicy).
|
210
|
-
|
211
|
-
:param str resource_name: The name of the resource.
|
212
|
-
:param IamMemberRemoveArgs args: The arguments to use to populate this resource's properties.
|
213
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
214
|
-
"""
|
215
|
-
...
|
216
|
-
def __init__(__self__, resource_name: str, *args, **kwargs):
|
217
|
-
resource_args, opts = _utilities.get_resource_args_opts(IamMemberRemoveArgs, pulumi.ResourceOptions, *args, **kwargs)
|
218
|
-
if resource_args is not None:
|
219
|
-
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
220
|
-
else:
|
221
|
-
__self__._internal_init(resource_name, *args, **kwargs)
|
222
|
-
|
223
|
-
def _internal_init(__self__,
|
224
|
-
resource_name: str,
|
225
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
226
|
-
member: Optional[pulumi.Input[str]] = None,
|
227
|
-
project: Optional[pulumi.Input[str]] = None,
|
228
|
-
role: Optional[pulumi.Input[str]] = None,
|
229
|
-
__props__=None):
|
230
|
-
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
231
|
-
if not isinstance(opts, pulumi.ResourceOptions):
|
232
|
-
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
233
|
-
if opts.id is None:
|
234
|
-
if __props__ is not None:
|
235
|
-
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
236
|
-
__props__ = IamMemberRemoveArgs.__new__(IamMemberRemoveArgs)
|
237
|
-
|
238
|
-
if member is None and not opts.urn:
|
239
|
-
raise TypeError("Missing required property 'member'")
|
240
|
-
__props__.__dict__["member"] = member
|
241
|
-
if project is None and not opts.urn:
|
242
|
-
raise TypeError("Missing required property 'project'")
|
243
|
-
__props__.__dict__["project"] = project
|
244
|
-
if role is None and not opts.urn:
|
245
|
-
raise TypeError("Missing required property 'role'")
|
246
|
-
__props__.__dict__["role"] = role
|
247
|
-
super(IamMemberRemove, __self__).__init__(
|
248
|
-
'gcp:projects/iamMemberRemove:IamMemberRemove',
|
249
|
-
resource_name,
|
250
|
-
__props__,
|
251
|
-
opts)
|
252
|
-
|
253
|
-
@staticmethod
|
254
|
-
def get(resource_name: str,
|
255
|
-
id: pulumi.Input[str],
|
256
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
257
|
-
member: Optional[pulumi.Input[str]] = None,
|
258
|
-
project: Optional[pulumi.Input[str]] = None,
|
259
|
-
role: Optional[pulumi.Input[str]] = None) -> 'IamMemberRemove':
|
260
|
-
"""
|
261
|
-
Get an existing IamMemberRemove resource's state with the given name, id, and optional extra
|
262
|
-
properties used to qualify the lookup.
|
263
|
-
|
264
|
-
:param str resource_name: The unique name of the resulting resource.
|
265
|
-
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
266
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
267
|
-
:param pulumi.Input[str] member: The IAM principal that should not have the target role.
|
268
|
-
Each entry can have one of the following values:
|
269
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
270
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
271
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
272
|
-
* **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.
|
273
|
-
:param pulumi.Input[str] project: The project id of the target project.
|
274
|
-
:param pulumi.Input[str] role: The target role that should be removed.
|
275
|
-
"""
|
276
|
-
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
277
|
-
|
278
|
-
__props__ = _IamMemberRemoveState.__new__(_IamMemberRemoveState)
|
279
|
-
|
280
|
-
__props__.__dict__["member"] = member
|
281
|
-
__props__.__dict__["project"] = project
|
282
|
-
__props__.__dict__["role"] = role
|
283
|
-
return IamMemberRemove(resource_name, opts=opts, __props__=__props__)
|
284
|
-
|
285
|
-
@property
|
286
|
-
@pulumi.getter
|
287
|
-
def member(self) -> pulumi.Output[str]:
|
288
|
-
"""
|
289
|
-
The IAM principal that should not have the target role.
|
290
|
-
Each entry can have one of the following values:
|
291
|
-
* **user:{emailid}**: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
|
292
|
-
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
293
|
-
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
294
|
-
* **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.
|
295
|
-
"""
|
296
|
-
return pulumi.get(self, "member")
|
297
|
-
|
298
|
-
@property
|
299
|
-
@pulumi.getter
|
300
|
-
def project(self) -> pulumi.Output[str]:
|
301
|
-
"""
|
302
|
-
The project id of the target project.
|
303
|
-
"""
|
304
|
-
return pulumi.get(self, "project")
|
305
|
-
|
306
|
-
@property
|
307
|
-
@pulumi.getter
|
308
|
-
def role(self) -> pulumi.Output[str]:
|
309
|
-
"""
|
310
|
-
The target role that should be removed.
|
311
|
-
"""
|
312
|
-
return pulumi.get(self, "role")
|
313
|
-
|
File without changes
|
File without changes
|