pulumi-gcp 7.25.0__py3-none-any.whl → 7.25.0a1717104660__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 -88
- pulumi_gcp/appengine/_inputs.py +0 -18
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +0 -16
- pulumi_gcp/bigquery/_inputs.py +2 -286
- pulumi_gcp/bigquery/outputs.py +2 -289
- pulumi_gcp/bigquery/table.py +35 -77
- pulumi_gcp/cloudfunctionsv2/function.py +4 -0
- pulumi_gcp/cloudrun/_inputs.py +4 -80
- pulumi_gcp/cloudrun/outputs.py +4 -137
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +176 -398
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +0 -82
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +161 -609
- pulumi_gcp/compute/region_ssl_policy.py +40 -39
- pulumi_gcp/compute/security_policy_rule.py +1 -55
- pulumi_gcp/container/_inputs.py +0 -560
- pulumi_gcp/container/outputs.py +51 -1106
- pulumi_gcp/dataplex/__init__.py +0 -10
- pulumi_gcp/dataplex/_inputs.py +0 -160
- pulumi_gcp/dataplex/outputs.py +0 -112
- pulumi_gcp/datastream/connection_profile.py +0 -47
- pulumi_gcp/datastream/private_connection.py +0 -47
- pulumi_gcp/datastream/stream.py +0 -47
- pulumi_gcp/kms/__init__.py +0 -2
- pulumi_gcp/networkservices/__init__.py +0 -1
- pulumi_gcp/networkservices/_inputs.py +27 -245
- pulumi_gcp/networkservices/lb_traffic_extension.py +14 -28
- pulumi_gcp/networkservices/outputs.py +20 -251
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +0 -16
- pulumi_gcp/pubsub/outputs.py +0 -25
- pulumi_gcp/pubsub/subscription.py +4 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/user.py +4 -4
- pulumi_gcp/tpu/_inputs.py +2 -2
- pulumi_gcp/tpu/outputs.py +2 -2
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/RECORD +45 -59
- pulumi_gcp/compute/get_subnetworks.py +0 -157
- pulumi_gcp/dataplex/aspect_type.py +0 -1077
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_member.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +0 -604
- pulumi_gcp/dataplex/entry_group.py +0 -722
- pulumi_gcp/dataplex/entry_group_iam_binding.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_member.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_policy.py +0 -604
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +0 -164
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +0 -164
- pulumi_gcp/kms/autokey_config.py +0 -366
- pulumi_gcp/kms/key_handle.py +0 -548
- pulumi_gcp/networkservices/lb_route_extension.py +0 -663
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/top_level.txt +0 -0
@@ -1,722 +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__ = ['EntryGroupArgs', 'EntryGroup']
|
13
|
-
|
14
|
-
@pulumi.input_type
|
15
|
-
class EntryGroupArgs:
|
16
|
-
def __init__(__self__, *,
|
17
|
-
description: Optional[pulumi.Input[str]] = None,
|
18
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
19
|
-
entry_group_id: Optional[pulumi.Input[str]] = None,
|
20
|
-
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
21
|
-
location: Optional[pulumi.Input[str]] = None,
|
22
|
-
project: Optional[pulumi.Input[str]] = None):
|
23
|
-
"""
|
24
|
-
The set of arguments for constructing a EntryGroup resource.
|
25
|
-
:param pulumi.Input[str] description: Description of the EntryGroup.
|
26
|
-
:param pulumi.Input[str] display_name: User friendly display name.
|
27
|
-
:param pulumi.Input[str] entry_group_id: The entry group id of the entry group.
|
28
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the EntryGroup.
|
29
|
-
|
30
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
31
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
32
|
-
:param pulumi.Input[str] location: The location where entry group will be created in.
|
33
|
-
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
34
|
-
If it is not provided, the provider project is used.
|
35
|
-
"""
|
36
|
-
if description is not None:
|
37
|
-
pulumi.set(__self__, "description", description)
|
38
|
-
if display_name is not None:
|
39
|
-
pulumi.set(__self__, "display_name", display_name)
|
40
|
-
if entry_group_id is not None:
|
41
|
-
pulumi.set(__self__, "entry_group_id", entry_group_id)
|
42
|
-
if labels is not None:
|
43
|
-
pulumi.set(__self__, "labels", labels)
|
44
|
-
if location is not None:
|
45
|
-
pulumi.set(__self__, "location", location)
|
46
|
-
if project is not None:
|
47
|
-
pulumi.set(__self__, "project", project)
|
48
|
-
|
49
|
-
@property
|
50
|
-
@pulumi.getter
|
51
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
52
|
-
"""
|
53
|
-
Description of the EntryGroup.
|
54
|
-
"""
|
55
|
-
return pulumi.get(self, "description")
|
56
|
-
|
57
|
-
@description.setter
|
58
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
59
|
-
pulumi.set(self, "description", value)
|
60
|
-
|
61
|
-
@property
|
62
|
-
@pulumi.getter(name="displayName")
|
63
|
-
def display_name(self) -> Optional[pulumi.Input[str]]:
|
64
|
-
"""
|
65
|
-
User friendly display name.
|
66
|
-
"""
|
67
|
-
return pulumi.get(self, "display_name")
|
68
|
-
|
69
|
-
@display_name.setter
|
70
|
-
def display_name(self, value: Optional[pulumi.Input[str]]):
|
71
|
-
pulumi.set(self, "display_name", value)
|
72
|
-
|
73
|
-
@property
|
74
|
-
@pulumi.getter(name="entryGroupId")
|
75
|
-
def entry_group_id(self) -> Optional[pulumi.Input[str]]:
|
76
|
-
"""
|
77
|
-
The entry group id of the entry group.
|
78
|
-
"""
|
79
|
-
return pulumi.get(self, "entry_group_id")
|
80
|
-
|
81
|
-
@entry_group_id.setter
|
82
|
-
def entry_group_id(self, value: Optional[pulumi.Input[str]]):
|
83
|
-
pulumi.set(self, "entry_group_id", value)
|
84
|
-
|
85
|
-
@property
|
86
|
-
@pulumi.getter
|
87
|
-
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
88
|
-
"""
|
89
|
-
User-defined labels for the EntryGroup.
|
90
|
-
|
91
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
92
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
93
|
-
"""
|
94
|
-
return pulumi.get(self, "labels")
|
95
|
-
|
96
|
-
@labels.setter
|
97
|
-
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
98
|
-
pulumi.set(self, "labels", value)
|
99
|
-
|
100
|
-
@property
|
101
|
-
@pulumi.getter
|
102
|
-
def location(self) -> Optional[pulumi.Input[str]]:
|
103
|
-
"""
|
104
|
-
The location where entry group will be created in.
|
105
|
-
"""
|
106
|
-
return pulumi.get(self, "location")
|
107
|
-
|
108
|
-
@location.setter
|
109
|
-
def location(self, value: Optional[pulumi.Input[str]]):
|
110
|
-
pulumi.set(self, "location", value)
|
111
|
-
|
112
|
-
@property
|
113
|
-
@pulumi.getter
|
114
|
-
def project(self) -> Optional[pulumi.Input[str]]:
|
115
|
-
"""
|
116
|
-
The ID of the project in which the resource belongs.
|
117
|
-
If it is not provided, the provider project is used.
|
118
|
-
"""
|
119
|
-
return pulumi.get(self, "project")
|
120
|
-
|
121
|
-
@project.setter
|
122
|
-
def project(self, value: Optional[pulumi.Input[str]]):
|
123
|
-
pulumi.set(self, "project", value)
|
124
|
-
|
125
|
-
|
126
|
-
@pulumi.input_type
|
127
|
-
class _EntryGroupState:
|
128
|
-
def __init__(__self__, *,
|
129
|
-
create_time: Optional[pulumi.Input[str]] = None,
|
130
|
-
description: Optional[pulumi.Input[str]] = None,
|
131
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
132
|
-
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
133
|
-
entry_group_id: Optional[pulumi.Input[str]] = None,
|
134
|
-
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
135
|
-
location: Optional[pulumi.Input[str]] = None,
|
136
|
-
name: Optional[pulumi.Input[str]] = None,
|
137
|
-
project: Optional[pulumi.Input[str]] = None,
|
138
|
-
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
139
|
-
transfer_status: Optional[pulumi.Input[str]] = None,
|
140
|
-
uid: Optional[pulumi.Input[str]] = None,
|
141
|
-
update_time: Optional[pulumi.Input[str]] = None):
|
142
|
-
"""
|
143
|
-
Input properties used for looking up and filtering EntryGroup resources.
|
144
|
-
:param pulumi.Input[str] create_time: The time when the EntryGroup was created.
|
145
|
-
:param pulumi.Input[str] description: Description of the EntryGroup.
|
146
|
-
:param pulumi.Input[str] display_name: User friendly display name.
|
147
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
148
|
-
:param pulumi.Input[str] entry_group_id: The entry group id of the entry group.
|
149
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the EntryGroup.
|
150
|
-
|
151
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
152
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
153
|
-
:param pulumi.Input[str] location: The location where entry group will be created in.
|
154
|
-
:param pulumi.Input[str] name: The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
|
155
|
-
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
156
|
-
If it is not provided, the provider project is used.
|
157
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
158
|
-
and default labels configured on the provider.
|
159
|
-
:param pulumi.Input[str] transfer_status: Denotes the transfer status of the Entry Group. It is unspecified
|
160
|
-
for Entry Group created from Dataplex API.
|
161
|
-
:param pulumi.Input[str] uid: System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
|
162
|
-
:param pulumi.Input[str] update_time: The time when the EntryGroup was last updated.
|
163
|
-
"""
|
164
|
-
if create_time is not None:
|
165
|
-
pulumi.set(__self__, "create_time", create_time)
|
166
|
-
if description is not None:
|
167
|
-
pulumi.set(__self__, "description", description)
|
168
|
-
if display_name is not None:
|
169
|
-
pulumi.set(__self__, "display_name", display_name)
|
170
|
-
if effective_labels is not None:
|
171
|
-
pulumi.set(__self__, "effective_labels", effective_labels)
|
172
|
-
if entry_group_id is not None:
|
173
|
-
pulumi.set(__self__, "entry_group_id", entry_group_id)
|
174
|
-
if labels is not None:
|
175
|
-
pulumi.set(__self__, "labels", labels)
|
176
|
-
if location is not None:
|
177
|
-
pulumi.set(__self__, "location", location)
|
178
|
-
if name is not None:
|
179
|
-
pulumi.set(__self__, "name", name)
|
180
|
-
if project is not None:
|
181
|
-
pulumi.set(__self__, "project", project)
|
182
|
-
if pulumi_labels is not None:
|
183
|
-
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
184
|
-
if transfer_status is not None:
|
185
|
-
pulumi.set(__self__, "transfer_status", transfer_status)
|
186
|
-
if uid is not None:
|
187
|
-
pulumi.set(__self__, "uid", uid)
|
188
|
-
if update_time is not None:
|
189
|
-
pulumi.set(__self__, "update_time", update_time)
|
190
|
-
|
191
|
-
@property
|
192
|
-
@pulumi.getter(name="createTime")
|
193
|
-
def create_time(self) -> Optional[pulumi.Input[str]]:
|
194
|
-
"""
|
195
|
-
The time when the EntryGroup was created.
|
196
|
-
"""
|
197
|
-
return pulumi.get(self, "create_time")
|
198
|
-
|
199
|
-
@create_time.setter
|
200
|
-
def create_time(self, value: Optional[pulumi.Input[str]]):
|
201
|
-
pulumi.set(self, "create_time", value)
|
202
|
-
|
203
|
-
@property
|
204
|
-
@pulumi.getter
|
205
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
206
|
-
"""
|
207
|
-
Description of the EntryGroup.
|
208
|
-
"""
|
209
|
-
return pulumi.get(self, "description")
|
210
|
-
|
211
|
-
@description.setter
|
212
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
213
|
-
pulumi.set(self, "description", value)
|
214
|
-
|
215
|
-
@property
|
216
|
-
@pulumi.getter(name="displayName")
|
217
|
-
def display_name(self) -> Optional[pulumi.Input[str]]:
|
218
|
-
"""
|
219
|
-
User friendly display name.
|
220
|
-
"""
|
221
|
-
return pulumi.get(self, "display_name")
|
222
|
-
|
223
|
-
@display_name.setter
|
224
|
-
def display_name(self, value: Optional[pulumi.Input[str]]):
|
225
|
-
pulumi.set(self, "display_name", value)
|
226
|
-
|
227
|
-
@property
|
228
|
-
@pulumi.getter(name="effectiveLabels")
|
229
|
-
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
230
|
-
"""
|
231
|
-
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
232
|
-
"""
|
233
|
-
return pulumi.get(self, "effective_labels")
|
234
|
-
|
235
|
-
@effective_labels.setter
|
236
|
-
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
237
|
-
pulumi.set(self, "effective_labels", value)
|
238
|
-
|
239
|
-
@property
|
240
|
-
@pulumi.getter(name="entryGroupId")
|
241
|
-
def entry_group_id(self) -> Optional[pulumi.Input[str]]:
|
242
|
-
"""
|
243
|
-
The entry group id of the entry group.
|
244
|
-
"""
|
245
|
-
return pulumi.get(self, "entry_group_id")
|
246
|
-
|
247
|
-
@entry_group_id.setter
|
248
|
-
def entry_group_id(self, value: Optional[pulumi.Input[str]]):
|
249
|
-
pulumi.set(self, "entry_group_id", value)
|
250
|
-
|
251
|
-
@property
|
252
|
-
@pulumi.getter
|
253
|
-
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
254
|
-
"""
|
255
|
-
User-defined labels for the EntryGroup.
|
256
|
-
|
257
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
258
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
259
|
-
"""
|
260
|
-
return pulumi.get(self, "labels")
|
261
|
-
|
262
|
-
@labels.setter
|
263
|
-
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
264
|
-
pulumi.set(self, "labels", value)
|
265
|
-
|
266
|
-
@property
|
267
|
-
@pulumi.getter
|
268
|
-
def location(self) -> Optional[pulumi.Input[str]]:
|
269
|
-
"""
|
270
|
-
The location where entry group will be created in.
|
271
|
-
"""
|
272
|
-
return pulumi.get(self, "location")
|
273
|
-
|
274
|
-
@location.setter
|
275
|
-
def location(self, value: Optional[pulumi.Input[str]]):
|
276
|
-
pulumi.set(self, "location", value)
|
277
|
-
|
278
|
-
@property
|
279
|
-
@pulumi.getter
|
280
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
281
|
-
"""
|
282
|
-
The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
|
283
|
-
"""
|
284
|
-
return pulumi.get(self, "name")
|
285
|
-
|
286
|
-
@name.setter
|
287
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
288
|
-
pulumi.set(self, "name", value)
|
289
|
-
|
290
|
-
@property
|
291
|
-
@pulumi.getter
|
292
|
-
def project(self) -> Optional[pulumi.Input[str]]:
|
293
|
-
"""
|
294
|
-
The ID of the project in which the resource belongs.
|
295
|
-
If it is not provided, the provider project is used.
|
296
|
-
"""
|
297
|
-
return pulumi.get(self, "project")
|
298
|
-
|
299
|
-
@project.setter
|
300
|
-
def project(self, value: Optional[pulumi.Input[str]]):
|
301
|
-
pulumi.set(self, "project", value)
|
302
|
-
|
303
|
-
@property
|
304
|
-
@pulumi.getter(name="pulumiLabels")
|
305
|
-
def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
306
|
-
"""
|
307
|
-
The combination of labels configured directly on the resource
|
308
|
-
and default labels configured on the provider.
|
309
|
-
"""
|
310
|
-
return pulumi.get(self, "pulumi_labels")
|
311
|
-
|
312
|
-
@pulumi_labels.setter
|
313
|
-
def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
314
|
-
pulumi.set(self, "pulumi_labels", value)
|
315
|
-
|
316
|
-
@property
|
317
|
-
@pulumi.getter(name="transferStatus")
|
318
|
-
def transfer_status(self) -> Optional[pulumi.Input[str]]:
|
319
|
-
"""
|
320
|
-
Denotes the transfer status of the Entry Group. It is unspecified
|
321
|
-
for Entry Group created from Dataplex API.
|
322
|
-
"""
|
323
|
-
return pulumi.get(self, "transfer_status")
|
324
|
-
|
325
|
-
@transfer_status.setter
|
326
|
-
def transfer_status(self, value: Optional[pulumi.Input[str]]):
|
327
|
-
pulumi.set(self, "transfer_status", value)
|
328
|
-
|
329
|
-
@property
|
330
|
-
@pulumi.getter
|
331
|
-
def uid(self) -> Optional[pulumi.Input[str]]:
|
332
|
-
"""
|
333
|
-
System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
|
334
|
-
"""
|
335
|
-
return pulumi.get(self, "uid")
|
336
|
-
|
337
|
-
@uid.setter
|
338
|
-
def uid(self, value: Optional[pulumi.Input[str]]):
|
339
|
-
pulumi.set(self, "uid", value)
|
340
|
-
|
341
|
-
@property
|
342
|
-
@pulumi.getter(name="updateTime")
|
343
|
-
def update_time(self) -> Optional[pulumi.Input[str]]:
|
344
|
-
"""
|
345
|
-
The time when the EntryGroup was last updated.
|
346
|
-
"""
|
347
|
-
return pulumi.get(self, "update_time")
|
348
|
-
|
349
|
-
@update_time.setter
|
350
|
-
def update_time(self, value: Optional[pulumi.Input[str]]):
|
351
|
-
pulumi.set(self, "update_time", value)
|
352
|
-
|
353
|
-
|
354
|
-
class EntryGroup(pulumi.CustomResource):
|
355
|
-
@overload
|
356
|
-
def __init__(__self__,
|
357
|
-
resource_name: str,
|
358
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
359
|
-
description: Optional[pulumi.Input[str]] = None,
|
360
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
361
|
-
entry_group_id: Optional[pulumi.Input[str]] = None,
|
362
|
-
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
363
|
-
location: Optional[pulumi.Input[str]] = None,
|
364
|
-
project: Optional[pulumi.Input[str]] = None,
|
365
|
-
__props__=None):
|
366
|
-
"""
|
367
|
-
An Entry Group represents a logical grouping of one or more Entries.
|
368
|
-
|
369
|
-
## Example Usage
|
370
|
-
|
371
|
-
### Dataplex Entry Group Basic
|
372
|
-
|
373
|
-
```python
|
374
|
-
import pulumi
|
375
|
-
import pulumi_gcp as gcp
|
376
|
-
|
377
|
-
test_entry_group_basic = gcp.dataplex.EntryGroup("test_entry_group_basic",
|
378
|
-
entry_group_id="entry-group-basic",
|
379
|
-
project="my-project-name",
|
380
|
-
location="us-central1")
|
381
|
-
```
|
382
|
-
### Dataplex Entry Group Full
|
383
|
-
|
384
|
-
```python
|
385
|
-
import pulumi
|
386
|
-
import pulumi_gcp as gcp
|
387
|
-
|
388
|
-
test_entry_group_full = gcp.dataplex.EntryGroup("test_entry_group_full",
|
389
|
-
entry_group_id="entry-group-full",
|
390
|
-
project="my-project-name",
|
391
|
-
location="us-central1",
|
392
|
-
labels={
|
393
|
-
"tag": "test-tf",
|
394
|
-
},
|
395
|
-
display_name="terraform entry group",
|
396
|
-
description="entry group created by Terraform")
|
397
|
-
```
|
398
|
-
|
399
|
-
## Import
|
400
|
-
|
401
|
-
EntryGroup can be imported using any of these accepted formats:
|
402
|
-
|
403
|
-
* `projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}`
|
404
|
-
|
405
|
-
* `{{project}}/{{location}}/{{entry_group_id}}`
|
406
|
-
|
407
|
-
* `{{location}}/{{entry_group_id}}`
|
408
|
-
|
409
|
-
When using the `pulumi import` command, EntryGroup can be imported using one of the formats above. For example:
|
410
|
-
|
411
|
-
```sh
|
412
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}
|
413
|
-
```
|
414
|
-
|
415
|
-
```sh
|
416
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{project}}/{{location}}/{{entry_group_id}}
|
417
|
-
```
|
418
|
-
|
419
|
-
```sh
|
420
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{location}}/{{entry_group_id}}
|
421
|
-
```
|
422
|
-
|
423
|
-
:param str resource_name: The name of the resource.
|
424
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
425
|
-
:param pulumi.Input[str] description: Description of the EntryGroup.
|
426
|
-
:param pulumi.Input[str] display_name: User friendly display name.
|
427
|
-
:param pulumi.Input[str] entry_group_id: The entry group id of the entry group.
|
428
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the EntryGroup.
|
429
|
-
|
430
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
431
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
432
|
-
:param pulumi.Input[str] location: The location where entry group will be created in.
|
433
|
-
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
434
|
-
If it is not provided, the provider project is used.
|
435
|
-
"""
|
436
|
-
...
|
437
|
-
@overload
|
438
|
-
def __init__(__self__,
|
439
|
-
resource_name: str,
|
440
|
-
args: Optional[EntryGroupArgs] = None,
|
441
|
-
opts: Optional[pulumi.ResourceOptions] = None):
|
442
|
-
"""
|
443
|
-
An Entry Group represents a logical grouping of one or more Entries.
|
444
|
-
|
445
|
-
## Example Usage
|
446
|
-
|
447
|
-
### Dataplex Entry Group Basic
|
448
|
-
|
449
|
-
```python
|
450
|
-
import pulumi
|
451
|
-
import pulumi_gcp as gcp
|
452
|
-
|
453
|
-
test_entry_group_basic = gcp.dataplex.EntryGroup("test_entry_group_basic",
|
454
|
-
entry_group_id="entry-group-basic",
|
455
|
-
project="my-project-name",
|
456
|
-
location="us-central1")
|
457
|
-
```
|
458
|
-
### Dataplex Entry Group Full
|
459
|
-
|
460
|
-
```python
|
461
|
-
import pulumi
|
462
|
-
import pulumi_gcp as gcp
|
463
|
-
|
464
|
-
test_entry_group_full = gcp.dataplex.EntryGroup("test_entry_group_full",
|
465
|
-
entry_group_id="entry-group-full",
|
466
|
-
project="my-project-name",
|
467
|
-
location="us-central1",
|
468
|
-
labels={
|
469
|
-
"tag": "test-tf",
|
470
|
-
},
|
471
|
-
display_name="terraform entry group",
|
472
|
-
description="entry group created by Terraform")
|
473
|
-
```
|
474
|
-
|
475
|
-
## Import
|
476
|
-
|
477
|
-
EntryGroup can be imported using any of these accepted formats:
|
478
|
-
|
479
|
-
* `projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}`
|
480
|
-
|
481
|
-
* `{{project}}/{{location}}/{{entry_group_id}}`
|
482
|
-
|
483
|
-
* `{{location}}/{{entry_group_id}}`
|
484
|
-
|
485
|
-
When using the `pulumi import` command, EntryGroup can be imported using one of the formats above. For example:
|
486
|
-
|
487
|
-
```sh
|
488
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default projects/{{project}}/locations/{{location}}/entryGroups/{{entry_group_id}}
|
489
|
-
```
|
490
|
-
|
491
|
-
```sh
|
492
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{project}}/{{location}}/{{entry_group_id}}
|
493
|
-
```
|
494
|
-
|
495
|
-
```sh
|
496
|
-
$ pulumi import gcp:dataplex/entryGroup:EntryGroup default {{location}}/{{entry_group_id}}
|
497
|
-
```
|
498
|
-
|
499
|
-
:param str resource_name: The name of the resource.
|
500
|
-
:param EntryGroupArgs args: The arguments to use to populate this resource's properties.
|
501
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
502
|
-
"""
|
503
|
-
...
|
504
|
-
def __init__(__self__, resource_name: str, *args, **kwargs):
|
505
|
-
resource_args, opts = _utilities.get_resource_args_opts(EntryGroupArgs, pulumi.ResourceOptions, *args, **kwargs)
|
506
|
-
if resource_args is not None:
|
507
|
-
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
508
|
-
else:
|
509
|
-
__self__._internal_init(resource_name, *args, **kwargs)
|
510
|
-
|
511
|
-
def _internal_init(__self__,
|
512
|
-
resource_name: str,
|
513
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
514
|
-
description: Optional[pulumi.Input[str]] = None,
|
515
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
516
|
-
entry_group_id: Optional[pulumi.Input[str]] = None,
|
517
|
-
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
518
|
-
location: Optional[pulumi.Input[str]] = None,
|
519
|
-
project: Optional[pulumi.Input[str]] = None,
|
520
|
-
__props__=None):
|
521
|
-
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
522
|
-
if not isinstance(opts, pulumi.ResourceOptions):
|
523
|
-
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
524
|
-
if opts.id is None:
|
525
|
-
if __props__ is not None:
|
526
|
-
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
527
|
-
__props__ = EntryGroupArgs.__new__(EntryGroupArgs)
|
528
|
-
|
529
|
-
__props__.__dict__["description"] = description
|
530
|
-
__props__.__dict__["display_name"] = display_name
|
531
|
-
__props__.__dict__["entry_group_id"] = entry_group_id
|
532
|
-
__props__.__dict__["labels"] = labels
|
533
|
-
__props__.__dict__["location"] = location
|
534
|
-
__props__.__dict__["project"] = project
|
535
|
-
__props__.__dict__["create_time"] = None
|
536
|
-
__props__.__dict__["effective_labels"] = None
|
537
|
-
__props__.__dict__["name"] = None
|
538
|
-
__props__.__dict__["pulumi_labels"] = None
|
539
|
-
__props__.__dict__["transfer_status"] = None
|
540
|
-
__props__.__dict__["uid"] = None
|
541
|
-
__props__.__dict__["update_time"] = None
|
542
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
543
|
-
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
544
|
-
super(EntryGroup, __self__).__init__(
|
545
|
-
'gcp:dataplex/entryGroup:EntryGroup',
|
546
|
-
resource_name,
|
547
|
-
__props__,
|
548
|
-
opts)
|
549
|
-
|
550
|
-
@staticmethod
|
551
|
-
def get(resource_name: str,
|
552
|
-
id: pulumi.Input[str],
|
553
|
-
opts: Optional[pulumi.ResourceOptions] = None,
|
554
|
-
create_time: Optional[pulumi.Input[str]] = None,
|
555
|
-
description: Optional[pulumi.Input[str]] = None,
|
556
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
557
|
-
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
558
|
-
entry_group_id: Optional[pulumi.Input[str]] = None,
|
559
|
-
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
560
|
-
location: Optional[pulumi.Input[str]] = None,
|
561
|
-
name: Optional[pulumi.Input[str]] = None,
|
562
|
-
project: Optional[pulumi.Input[str]] = None,
|
563
|
-
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
564
|
-
transfer_status: Optional[pulumi.Input[str]] = None,
|
565
|
-
uid: Optional[pulumi.Input[str]] = None,
|
566
|
-
update_time: Optional[pulumi.Input[str]] = None) -> 'EntryGroup':
|
567
|
-
"""
|
568
|
-
Get an existing EntryGroup resource's state with the given name, id, and optional extra
|
569
|
-
properties used to qualify the lookup.
|
570
|
-
|
571
|
-
:param str resource_name: The unique name of the resulting resource.
|
572
|
-
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
573
|
-
:param pulumi.ResourceOptions opts: Options for the resource.
|
574
|
-
:param pulumi.Input[str] create_time: The time when the EntryGroup was created.
|
575
|
-
:param pulumi.Input[str] description: Description of the EntryGroup.
|
576
|
-
:param pulumi.Input[str] display_name: User friendly display name.
|
577
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
578
|
-
:param pulumi.Input[str] entry_group_id: The entry group id of the entry group.
|
579
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the EntryGroup.
|
580
|
-
|
581
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
582
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
583
|
-
:param pulumi.Input[str] location: The location where entry group will be created in.
|
584
|
-
:param pulumi.Input[str] name: The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
|
585
|
-
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
586
|
-
If it is not provided, the provider project is used.
|
587
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
588
|
-
and default labels configured on the provider.
|
589
|
-
:param pulumi.Input[str] transfer_status: Denotes the transfer status of the Entry Group. It is unspecified
|
590
|
-
for Entry Group created from Dataplex API.
|
591
|
-
:param pulumi.Input[str] uid: System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
|
592
|
-
:param pulumi.Input[str] update_time: The time when the EntryGroup was last updated.
|
593
|
-
"""
|
594
|
-
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
595
|
-
|
596
|
-
__props__ = _EntryGroupState.__new__(_EntryGroupState)
|
597
|
-
|
598
|
-
__props__.__dict__["create_time"] = create_time
|
599
|
-
__props__.__dict__["description"] = description
|
600
|
-
__props__.__dict__["display_name"] = display_name
|
601
|
-
__props__.__dict__["effective_labels"] = effective_labels
|
602
|
-
__props__.__dict__["entry_group_id"] = entry_group_id
|
603
|
-
__props__.__dict__["labels"] = labels
|
604
|
-
__props__.__dict__["location"] = location
|
605
|
-
__props__.__dict__["name"] = name
|
606
|
-
__props__.__dict__["project"] = project
|
607
|
-
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
608
|
-
__props__.__dict__["transfer_status"] = transfer_status
|
609
|
-
__props__.__dict__["uid"] = uid
|
610
|
-
__props__.__dict__["update_time"] = update_time
|
611
|
-
return EntryGroup(resource_name, opts=opts, __props__=__props__)
|
612
|
-
|
613
|
-
@property
|
614
|
-
@pulumi.getter(name="createTime")
|
615
|
-
def create_time(self) -> pulumi.Output[str]:
|
616
|
-
"""
|
617
|
-
The time when the EntryGroup was created.
|
618
|
-
"""
|
619
|
-
return pulumi.get(self, "create_time")
|
620
|
-
|
621
|
-
@property
|
622
|
-
@pulumi.getter
|
623
|
-
def description(self) -> pulumi.Output[Optional[str]]:
|
624
|
-
"""
|
625
|
-
Description of the EntryGroup.
|
626
|
-
"""
|
627
|
-
return pulumi.get(self, "description")
|
628
|
-
|
629
|
-
@property
|
630
|
-
@pulumi.getter(name="displayName")
|
631
|
-
def display_name(self) -> pulumi.Output[Optional[str]]:
|
632
|
-
"""
|
633
|
-
User friendly display name.
|
634
|
-
"""
|
635
|
-
return pulumi.get(self, "display_name")
|
636
|
-
|
637
|
-
@property
|
638
|
-
@pulumi.getter(name="effectiveLabels")
|
639
|
-
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
640
|
-
"""
|
641
|
-
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
642
|
-
"""
|
643
|
-
return pulumi.get(self, "effective_labels")
|
644
|
-
|
645
|
-
@property
|
646
|
-
@pulumi.getter(name="entryGroupId")
|
647
|
-
def entry_group_id(self) -> pulumi.Output[Optional[str]]:
|
648
|
-
"""
|
649
|
-
The entry group id of the entry group.
|
650
|
-
"""
|
651
|
-
return pulumi.get(self, "entry_group_id")
|
652
|
-
|
653
|
-
@property
|
654
|
-
@pulumi.getter
|
655
|
-
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
656
|
-
"""
|
657
|
-
User-defined labels for the EntryGroup.
|
658
|
-
|
659
|
-
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
660
|
-
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
661
|
-
"""
|
662
|
-
return pulumi.get(self, "labels")
|
663
|
-
|
664
|
-
@property
|
665
|
-
@pulumi.getter
|
666
|
-
def location(self) -> pulumi.Output[Optional[str]]:
|
667
|
-
"""
|
668
|
-
The location where entry group will be created in.
|
669
|
-
"""
|
670
|
-
return pulumi.get(self, "location")
|
671
|
-
|
672
|
-
@property
|
673
|
-
@pulumi.getter
|
674
|
-
def name(self) -> pulumi.Output[str]:
|
675
|
-
"""
|
676
|
-
The relative resource name of the EntryGroup, of the form: projects/{project_number}/locations/{location_id}/entryGroups/{entry_group_id}
|
677
|
-
"""
|
678
|
-
return pulumi.get(self, "name")
|
679
|
-
|
680
|
-
@property
|
681
|
-
@pulumi.getter
|
682
|
-
def project(self) -> pulumi.Output[str]:
|
683
|
-
"""
|
684
|
-
The ID of the project in which the resource belongs.
|
685
|
-
If it is not provided, the provider project is used.
|
686
|
-
"""
|
687
|
-
return pulumi.get(self, "project")
|
688
|
-
|
689
|
-
@property
|
690
|
-
@pulumi.getter(name="pulumiLabels")
|
691
|
-
def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
692
|
-
"""
|
693
|
-
The combination of labels configured directly on the resource
|
694
|
-
and default labels configured on the provider.
|
695
|
-
"""
|
696
|
-
return pulumi.get(self, "pulumi_labels")
|
697
|
-
|
698
|
-
@property
|
699
|
-
@pulumi.getter(name="transferStatus")
|
700
|
-
def transfer_status(self) -> pulumi.Output[str]:
|
701
|
-
"""
|
702
|
-
Denotes the transfer status of the Entry Group. It is unspecified
|
703
|
-
for Entry Group created from Dataplex API.
|
704
|
-
"""
|
705
|
-
return pulumi.get(self, "transfer_status")
|
706
|
-
|
707
|
-
@property
|
708
|
-
@pulumi.getter
|
709
|
-
def uid(self) -> pulumi.Output[str]:
|
710
|
-
"""
|
711
|
-
System generated globally unique ID for the EntryGroup. This ID will be different if the EntryGroup is deleted and re-created with the same name.
|
712
|
-
"""
|
713
|
-
return pulumi.get(self, "uid")
|
714
|
-
|
715
|
-
@property
|
716
|
-
@pulumi.getter(name="updateTime")
|
717
|
-
def update_time(self) -> pulumi.Output[str]:
|
718
|
-
"""
|
719
|
-
The time when the EntryGroup was last updated.
|
720
|
-
"""
|
721
|
-
return pulumi.get(self, "update_time")
|
722
|
-
|