pulumi-gcp 7.7.0a1705990280__py3-none-any.whl → 7.8.0a1706310284__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. pulumi_gcp/__init__.py +56 -0
  2. pulumi_gcp/alloydb/cluster.py +26 -21
  3. pulumi_gcp/bigquery/_inputs.py +231 -0
  4. pulumi_gcp/bigquery/outputs.py +229 -0
  5. pulumi_gcp/bigquery/routine.py +256 -10
  6. pulumi_gcp/bigquery/table.py +47 -0
  7. pulumi_gcp/cloudbuildv2/repository.py +60 -53
  8. pulumi_gcp/cloudrunv2/_inputs.py +176 -4
  9. pulumi_gcp/cloudrunv2/outputs.py +256 -3
  10. pulumi_gcp/cloudrunv2/service.py +148 -0
  11. pulumi_gcp/composer/_inputs.py +24 -0
  12. pulumi_gcp/composer/outputs.py +34 -0
  13. pulumi_gcp/compute/_inputs.py +4 -2
  14. pulumi_gcp/compute/disk.py +14 -14
  15. pulumi_gcp/compute/outputs.py +4 -2
  16. pulumi_gcp/healthcare/fhir_store.py +56 -0
  17. pulumi_gcp/kms/crypto_key.py +2 -2
  18. pulumi_gcp/kms/crypto_key_iam_binding.py +2 -2
  19. pulumi_gcp/kms/crypto_key_iam_member.py +2 -2
  20. pulumi_gcp/kms/crypto_key_iam_policy.py +2 -2
  21. pulumi_gcp/kms/crypto_key_version.py +2 -2
  22. pulumi_gcp/kms/secret_ciphertext.py +2 -2
  23. pulumi_gcp/netapp/__init__.py +4 -0
  24. pulumi_gcp/netapp/_inputs.py +643 -0
  25. pulumi_gcp/netapp/backup_policy.py +829 -0
  26. pulumi_gcp/netapp/kmsconfig.py +2 -2
  27. pulumi_gcp/netapp/outputs.py +651 -0
  28. pulumi_gcp/netapp/volume.py +1467 -0
  29. pulumi_gcp/networksecurity/__init__.py +5 -0
  30. pulumi_gcp/networksecurity/_inputs.py +228 -0
  31. pulumi_gcp/networksecurity/address_group_iam_binding.py +324 -0
  32. pulumi_gcp/networksecurity/address_group_iam_member.py +324 -0
  33. pulumi_gcp/networksecurity/address_group_iam_policy.py +492 -0
  34. pulumi_gcp/networksecurity/get_address_group_iam_policy.py +144 -0
  35. pulumi_gcp/networksecurity/outputs.py +212 -0
  36. pulumi_gcp/networksecurity/security_profile.py +800 -0
  37. pulumi_gcp/networkservices/gateway.py +1 -1
  38. pulumi_gcp/organizations/get_folders.py +1 -1
  39. pulumi_gcp/orgpolicy/_inputs.py +12 -12
  40. pulumi_gcp/orgpolicy/outputs.py +12 -12
  41. pulumi_gcp/securesourcemanager/instance.py +4 -2
  42. pulumi_gcp/storage/insights_report_config.py +12 -10
  43. pulumi_gcp/vertex/__init__.py +1 -0
  44. pulumi_gcp/vertex/ai_feature_group_feature.py +767 -0
  45. pulumi_gcp/workstations/workstation_config.py +47 -0
  46. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/METADATA +1 -1
  47. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/RECORD +49 -39
  48. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/WHEEL +0 -0
  49. {pulumi_gcp-7.7.0a1705990280.dist-info → pulumi_gcp-7.8.0a1706310284.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,767 @@
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__ = ['AiFeatureGroupFeatureArgs', 'AiFeatureGroupFeature']
13
+
14
+ @pulumi.input_type
15
+ class AiFeatureGroupFeatureArgs:
16
+ def __init__(__self__, *,
17
+ feature_group: pulumi.Input[str],
18
+ region: pulumi.Input[str],
19
+ description: Optional[pulumi.Input[str]] = None,
20
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
21
+ name: Optional[pulumi.Input[str]] = None,
22
+ project: Optional[pulumi.Input[str]] = None,
23
+ version_column_name: Optional[pulumi.Input[str]] = None):
24
+ """
25
+ The set of arguments for constructing a AiFeatureGroupFeature resource.
26
+ :param pulumi.Input[str] feature_group: The name of the Feature Group.
27
+ :param pulumi.Input[str] region: The region for the resource. It should be the same as the feature group's region.
28
+
29
+
30
+ - - -
31
+ :param pulumi.Input[str] description: The description of the FeatureGroup.
32
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your FeatureGroup.
33
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
34
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
35
+ :param pulumi.Input[str] name: The resource name of the Feature Group Feature.
36
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
37
+ If it is not provided, the provider project is used.
38
+ :param pulumi.Input[str] version_column_name: The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
39
+ """
40
+ pulumi.set(__self__, "feature_group", feature_group)
41
+ pulumi.set(__self__, "region", region)
42
+ if description is not None:
43
+ pulumi.set(__self__, "description", description)
44
+ if labels is not None:
45
+ pulumi.set(__self__, "labels", labels)
46
+ if name is not None:
47
+ pulumi.set(__self__, "name", name)
48
+ if project is not None:
49
+ pulumi.set(__self__, "project", project)
50
+ if version_column_name is not None:
51
+ pulumi.set(__self__, "version_column_name", version_column_name)
52
+
53
+ @property
54
+ @pulumi.getter(name="featureGroup")
55
+ def feature_group(self) -> pulumi.Input[str]:
56
+ """
57
+ The name of the Feature Group.
58
+ """
59
+ return pulumi.get(self, "feature_group")
60
+
61
+ @feature_group.setter
62
+ def feature_group(self, value: pulumi.Input[str]):
63
+ pulumi.set(self, "feature_group", value)
64
+
65
+ @property
66
+ @pulumi.getter
67
+ def region(self) -> pulumi.Input[str]:
68
+ """
69
+ The region for the resource. It should be the same as the feature group's region.
70
+
71
+
72
+ - - -
73
+ """
74
+ return pulumi.get(self, "region")
75
+
76
+ @region.setter
77
+ def region(self, value: pulumi.Input[str]):
78
+ pulumi.set(self, "region", value)
79
+
80
+ @property
81
+ @pulumi.getter
82
+ def description(self) -> Optional[pulumi.Input[str]]:
83
+ """
84
+ The description of the FeatureGroup.
85
+ """
86
+ return pulumi.get(self, "description")
87
+
88
+ @description.setter
89
+ def description(self, value: Optional[pulumi.Input[str]]):
90
+ pulumi.set(self, "description", value)
91
+
92
+ @property
93
+ @pulumi.getter
94
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
95
+ """
96
+ The labels with user-defined metadata to organize your FeatureGroup.
97
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
98
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
99
+ """
100
+ return pulumi.get(self, "labels")
101
+
102
+ @labels.setter
103
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
104
+ pulumi.set(self, "labels", value)
105
+
106
+ @property
107
+ @pulumi.getter
108
+ def name(self) -> Optional[pulumi.Input[str]]:
109
+ """
110
+ The resource name of the Feature Group Feature.
111
+ """
112
+ return pulumi.get(self, "name")
113
+
114
+ @name.setter
115
+ def name(self, value: Optional[pulumi.Input[str]]):
116
+ pulumi.set(self, "name", value)
117
+
118
+ @property
119
+ @pulumi.getter
120
+ def project(self) -> Optional[pulumi.Input[str]]:
121
+ """
122
+ The ID of the project in which the resource belongs.
123
+ If it is not provided, the provider project is used.
124
+ """
125
+ return pulumi.get(self, "project")
126
+
127
+ @project.setter
128
+ def project(self, value: Optional[pulumi.Input[str]]):
129
+ pulumi.set(self, "project", value)
130
+
131
+ @property
132
+ @pulumi.getter(name="versionColumnName")
133
+ def version_column_name(self) -> Optional[pulumi.Input[str]]:
134
+ """
135
+ The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
136
+ """
137
+ return pulumi.get(self, "version_column_name")
138
+
139
+ @version_column_name.setter
140
+ def version_column_name(self, value: Optional[pulumi.Input[str]]):
141
+ pulumi.set(self, "version_column_name", value)
142
+
143
+
144
+ @pulumi.input_type
145
+ class _AiFeatureGroupFeatureState:
146
+ def __init__(__self__, *,
147
+ create_time: Optional[pulumi.Input[str]] = None,
148
+ description: Optional[pulumi.Input[str]] = None,
149
+ effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
150
+ feature_group: Optional[pulumi.Input[str]] = None,
151
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
152
+ name: Optional[pulumi.Input[str]] = None,
153
+ project: Optional[pulumi.Input[str]] = None,
154
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
155
+ region: Optional[pulumi.Input[str]] = None,
156
+ update_time: Optional[pulumi.Input[str]] = None,
157
+ version_column_name: Optional[pulumi.Input[str]] = None):
158
+ """
159
+ Input properties used for looking up and filtering AiFeatureGroupFeature resources.
160
+ :param pulumi.Input[str] create_time: The timestamp of when the FeatureGroup was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
161
+ :param pulumi.Input[str] description: The description of the FeatureGroup.
162
+ :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.
163
+ :param pulumi.Input[str] feature_group: The name of the Feature Group.
164
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your FeatureGroup.
165
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
166
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
167
+ :param pulumi.Input[str] name: The resource name of the Feature Group Feature.
168
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
169
+ If it is not provided, the provider project is used.
170
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
171
+ and default labels configured on the provider.
172
+ :param pulumi.Input[str] region: The region for the resource. It should be the same as the feature group's region.
173
+
174
+
175
+ - - -
176
+ :param pulumi.Input[str] update_time: The timestamp of when the FeatureGroup was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
177
+ :param pulumi.Input[str] version_column_name: The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
178
+ """
179
+ if create_time is not None:
180
+ pulumi.set(__self__, "create_time", create_time)
181
+ if description is not None:
182
+ pulumi.set(__self__, "description", description)
183
+ if effective_labels is not None:
184
+ pulumi.set(__self__, "effective_labels", effective_labels)
185
+ if feature_group is not None:
186
+ pulumi.set(__self__, "feature_group", feature_group)
187
+ if labels is not None:
188
+ pulumi.set(__self__, "labels", labels)
189
+ if name is not None:
190
+ pulumi.set(__self__, "name", name)
191
+ if project is not None:
192
+ pulumi.set(__self__, "project", project)
193
+ if pulumi_labels is not None:
194
+ pulumi.set(__self__, "pulumi_labels", pulumi_labels)
195
+ if region is not None:
196
+ pulumi.set(__self__, "region", region)
197
+ if update_time is not None:
198
+ pulumi.set(__self__, "update_time", update_time)
199
+ if version_column_name is not None:
200
+ pulumi.set(__self__, "version_column_name", version_column_name)
201
+
202
+ @property
203
+ @pulumi.getter(name="createTime")
204
+ def create_time(self) -> Optional[pulumi.Input[str]]:
205
+ """
206
+ The timestamp of when the FeatureGroup was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
207
+ """
208
+ return pulumi.get(self, "create_time")
209
+
210
+ @create_time.setter
211
+ def create_time(self, value: Optional[pulumi.Input[str]]):
212
+ pulumi.set(self, "create_time", value)
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def description(self) -> Optional[pulumi.Input[str]]:
217
+ """
218
+ The description of the FeatureGroup.
219
+ """
220
+ return pulumi.get(self, "description")
221
+
222
+ @description.setter
223
+ def description(self, value: Optional[pulumi.Input[str]]):
224
+ pulumi.set(self, "description", value)
225
+
226
+ @property
227
+ @pulumi.getter(name="effectiveLabels")
228
+ def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
229
+ """
230
+ All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
231
+ """
232
+ return pulumi.get(self, "effective_labels")
233
+
234
+ @effective_labels.setter
235
+ def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
236
+ pulumi.set(self, "effective_labels", value)
237
+
238
+ @property
239
+ @pulumi.getter(name="featureGroup")
240
+ def feature_group(self) -> Optional[pulumi.Input[str]]:
241
+ """
242
+ The name of the Feature Group.
243
+ """
244
+ return pulumi.get(self, "feature_group")
245
+
246
+ @feature_group.setter
247
+ def feature_group(self, value: Optional[pulumi.Input[str]]):
248
+ pulumi.set(self, "feature_group", value)
249
+
250
+ @property
251
+ @pulumi.getter
252
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
253
+ """
254
+ The labels with user-defined metadata to organize your FeatureGroup.
255
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
256
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
257
+ """
258
+ return pulumi.get(self, "labels")
259
+
260
+ @labels.setter
261
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
262
+ pulumi.set(self, "labels", value)
263
+
264
+ @property
265
+ @pulumi.getter
266
+ def name(self) -> Optional[pulumi.Input[str]]:
267
+ """
268
+ The resource name of the Feature Group Feature.
269
+ """
270
+ return pulumi.get(self, "name")
271
+
272
+ @name.setter
273
+ def name(self, value: Optional[pulumi.Input[str]]):
274
+ pulumi.set(self, "name", value)
275
+
276
+ @property
277
+ @pulumi.getter
278
+ def project(self) -> Optional[pulumi.Input[str]]:
279
+ """
280
+ The ID of the project in which the resource belongs.
281
+ If it is not provided, the provider project is used.
282
+ """
283
+ return pulumi.get(self, "project")
284
+
285
+ @project.setter
286
+ def project(self, value: Optional[pulumi.Input[str]]):
287
+ pulumi.set(self, "project", value)
288
+
289
+ @property
290
+ @pulumi.getter(name="pulumiLabels")
291
+ def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
292
+ """
293
+ The combination of labels configured directly on the resource
294
+ and default labels configured on the provider.
295
+ """
296
+ return pulumi.get(self, "pulumi_labels")
297
+
298
+ @pulumi_labels.setter
299
+ def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
300
+ pulumi.set(self, "pulumi_labels", value)
301
+
302
+ @property
303
+ @pulumi.getter
304
+ def region(self) -> Optional[pulumi.Input[str]]:
305
+ """
306
+ The region for the resource. It should be the same as the feature group's region.
307
+
308
+
309
+ - - -
310
+ """
311
+ return pulumi.get(self, "region")
312
+
313
+ @region.setter
314
+ def region(self, value: Optional[pulumi.Input[str]]):
315
+ pulumi.set(self, "region", value)
316
+
317
+ @property
318
+ @pulumi.getter(name="updateTime")
319
+ def update_time(self) -> Optional[pulumi.Input[str]]:
320
+ """
321
+ The timestamp of when the FeatureGroup was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
322
+ """
323
+ return pulumi.get(self, "update_time")
324
+
325
+ @update_time.setter
326
+ def update_time(self, value: Optional[pulumi.Input[str]]):
327
+ pulumi.set(self, "update_time", value)
328
+
329
+ @property
330
+ @pulumi.getter(name="versionColumnName")
331
+ def version_column_name(self) -> Optional[pulumi.Input[str]]:
332
+ """
333
+ The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
334
+ """
335
+ return pulumi.get(self, "version_column_name")
336
+
337
+ @version_column_name.setter
338
+ def version_column_name(self, value: Optional[pulumi.Input[str]]):
339
+ pulumi.set(self, "version_column_name", value)
340
+
341
+
342
+ class AiFeatureGroupFeature(pulumi.CustomResource):
343
+ @overload
344
+ def __init__(__self__,
345
+ resource_name: str,
346
+ opts: Optional[pulumi.ResourceOptions] = None,
347
+ description: Optional[pulumi.Input[str]] = None,
348
+ feature_group: Optional[pulumi.Input[str]] = None,
349
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
350
+ name: Optional[pulumi.Input[str]] = None,
351
+ project: Optional[pulumi.Input[str]] = None,
352
+ region: Optional[pulumi.Input[str]] = None,
353
+ version_column_name: Optional[pulumi.Input[str]] = None,
354
+ __props__=None):
355
+ """
356
+ Vertex AI Feature Group Feature is feature metadata information.
357
+
358
+ To get more information about FeatureGroupFeature, see:
359
+
360
+ * [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1beta1/projects.locations.featureGroups.features)
361
+ * How-to Guides
362
+ * [Creating a Feature](https://cloud.google.com/vertex-ai/docs/featurestore/latest/create-feature)
363
+
364
+ ## Example Usage
365
+ ### Vertex Ai Feature Group Feature
366
+
367
+ ```python
368
+ import pulumi
369
+ import pulumi_gcp as gcp
370
+
371
+ sample_dataset = gcp.bigquery.Dataset("sampleDataset",
372
+ dataset_id="job_load_dataset",
373
+ friendly_name="test",
374
+ description="This is a test description",
375
+ location="US")
376
+ sample_table = gcp.bigquery.Table("sampleTable",
377
+ deletion_protection=False,
378
+ dataset_id=sample_dataset.dataset_id,
379
+ table_id="job_load_table",
380
+ schema=\"\"\"[
381
+ {
382
+ "name": "feature_id",
383
+ "type": "STRING",
384
+ "mode": "NULLABLE"
385
+ },
386
+ {
387
+ "name": "example_feature",
388
+ "type": "STRING",
389
+ "mode": "NULLABLE"
390
+ },
391
+ {
392
+ "name": "feature_timestamp",
393
+ "type": "TIMESTAMP",
394
+ "mode": "NULLABLE"
395
+ }
396
+ ]
397
+ \"\"\")
398
+ sample_feature_group = gcp.vertex.AiFeatureGroup("sampleFeatureGroup",
399
+ description="A sample feature group",
400
+ region="us-central1",
401
+ labels={
402
+ "label-one": "value-one",
403
+ },
404
+ big_query=gcp.vertex.AiFeatureGroupBigQueryArgs(
405
+ big_query_source=gcp.vertex.AiFeatureGroupBigQueryBigQuerySourceArgs(
406
+ input_uri=pulumi.Output.all(sample_table.project, sample_table.dataset_id, sample_table.table_id).apply(lambda project, dataset_id, table_id: f"bq://{project}.{dataset_id}.{table_id}"),
407
+ ),
408
+ entity_id_columns=["feature_id"],
409
+ ))
410
+ feature_group_feature = gcp.vertex.AiFeatureGroupFeature("featureGroupFeature",
411
+ region="us-central1",
412
+ feature_group=sample_feature_group.name,
413
+ description="A sample feature",
414
+ labels={
415
+ "label-one": "value-one",
416
+ })
417
+ ```
418
+
419
+ ## Import
420
+
421
+ FeatureGroupFeature can be imported using any of these accepted formats* `projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}` * `{{project}}/{{region}}/{{feature_group}}/{{name}}` * `{{region}}/{{feature_group}}/{{name}}` * `{{feature_group}}/{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import FeatureGroupFeature using one of the formats above. For exampletf import {
422
+
423
+ id = "projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}"
424
+
425
+ to = google_vertex_ai_feature_group_feature.default }
426
+
427
+ ```sh
428
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), FeatureGroupFeature can be imported using one of the formats above. For example
429
+ ```
430
+
431
+ ```sh
432
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}
433
+ ```
434
+
435
+ ```sh
436
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{project}}/{{region}}/{{feature_group}}/{{name}}
437
+ ```
438
+
439
+ ```sh
440
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{region}}/{{feature_group}}/{{name}}
441
+ ```
442
+
443
+ ```sh
444
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{feature_group}}/{{name}}
445
+ ```
446
+
447
+ :param str resource_name: The name of the resource.
448
+ :param pulumi.ResourceOptions opts: Options for the resource.
449
+ :param pulumi.Input[str] description: The description of the FeatureGroup.
450
+ :param pulumi.Input[str] feature_group: The name of the Feature Group.
451
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your FeatureGroup.
452
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
453
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
454
+ :param pulumi.Input[str] name: The resource name of the Feature Group Feature.
455
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
456
+ If it is not provided, the provider project is used.
457
+ :param pulumi.Input[str] region: The region for the resource. It should be the same as the feature group's region.
458
+
459
+
460
+ - - -
461
+ :param pulumi.Input[str] version_column_name: The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
462
+ """
463
+ ...
464
+ @overload
465
+ def __init__(__self__,
466
+ resource_name: str,
467
+ args: AiFeatureGroupFeatureArgs,
468
+ opts: Optional[pulumi.ResourceOptions] = None):
469
+ """
470
+ Vertex AI Feature Group Feature is feature metadata information.
471
+
472
+ To get more information about FeatureGroupFeature, see:
473
+
474
+ * [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1beta1/projects.locations.featureGroups.features)
475
+ * How-to Guides
476
+ * [Creating a Feature](https://cloud.google.com/vertex-ai/docs/featurestore/latest/create-feature)
477
+
478
+ ## Example Usage
479
+ ### Vertex Ai Feature Group Feature
480
+
481
+ ```python
482
+ import pulumi
483
+ import pulumi_gcp as gcp
484
+
485
+ sample_dataset = gcp.bigquery.Dataset("sampleDataset",
486
+ dataset_id="job_load_dataset",
487
+ friendly_name="test",
488
+ description="This is a test description",
489
+ location="US")
490
+ sample_table = gcp.bigquery.Table("sampleTable",
491
+ deletion_protection=False,
492
+ dataset_id=sample_dataset.dataset_id,
493
+ table_id="job_load_table",
494
+ schema=\"\"\"[
495
+ {
496
+ "name": "feature_id",
497
+ "type": "STRING",
498
+ "mode": "NULLABLE"
499
+ },
500
+ {
501
+ "name": "example_feature",
502
+ "type": "STRING",
503
+ "mode": "NULLABLE"
504
+ },
505
+ {
506
+ "name": "feature_timestamp",
507
+ "type": "TIMESTAMP",
508
+ "mode": "NULLABLE"
509
+ }
510
+ ]
511
+ \"\"\")
512
+ sample_feature_group = gcp.vertex.AiFeatureGroup("sampleFeatureGroup",
513
+ description="A sample feature group",
514
+ region="us-central1",
515
+ labels={
516
+ "label-one": "value-one",
517
+ },
518
+ big_query=gcp.vertex.AiFeatureGroupBigQueryArgs(
519
+ big_query_source=gcp.vertex.AiFeatureGroupBigQueryBigQuerySourceArgs(
520
+ input_uri=pulumi.Output.all(sample_table.project, sample_table.dataset_id, sample_table.table_id).apply(lambda project, dataset_id, table_id: f"bq://{project}.{dataset_id}.{table_id}"),
521
+ ),
522
+ entity_id_columns=["feature_id"],
523
+ ))
524
+ feature_group_feature = gcp.vertex.AiFeatureGroupFeature("featureGroupFeature",
525
+ region="us-central1",
526
+ feature_group=sample_feature_group.name,
527
+ description="A sample feature",
528
+ labels={
529
+ "label-one": "value-one",
530
+ })
531
+ ```
532
+
533
+ ## Import
534
+
535
+ FeatureGroupFeature can be imported using any of these accepted formats* `projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}` * `{{project}}/{{region}}/{{feature_group}}/{{name}}` * `{{region}}/{{feature_group}}/{{name}}` * `{{feature_group}}/{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import FeatureGroupFeature using one of the formats above. For exampletf import {
536
+
537
+ id = "projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}"
538
+
539
+ to = google_vertex_ai_feature_group_feature.default }
540
+
541
+ ```sh
542
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), FeatureGroupFeature can be imported using one of the formats above. For example
543
+ ```
544
+
545
+ ```sh
546
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default projects/{{project}}/locations/{{region}}/featureGroups/{{feature_group}}/features/{{name}}
547
+ ```
548
+
549
+ ```sh
550
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{project}}/{{region}}/{{feature_group}}/{{name}}
551
+ ```
552
+
553
+ ```sh
554
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{region}}/{{feature_group}}/{{name}}
555
+ ```
556
+
557
+ ```sh
558
+ $ pulumi import gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature default {{feature_group}}/{{name}}
559
+ ```
560
+
561
+ :param str resource_name: The name of the resource.
562
+ :param AiFeatureGroupFeatureArgs args: The arguments to use to populate this resource's properties.
563
+ :param pulumi.ResourceOptions opts: Options for the resource.
564
+ """
565
+ ...
566
+ def __init__(__self__, resource_name: str, *args, **kwargs):
567
+ resource_args, opts = _utilities.get_resource_args_opts(AiFeatureGroupFeatureArgs, pulumi.ResourceOptions, *args, **kwargs)
568
+ if resource_args is not None:
569
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
570
+ else:
571
+ __self__._internal_init(resource_name, *args, **kwargs)
572
+
573
+ def _internal_init(__self__,
574
+ resource_name: str,
575
+ opts: Optional[pulumi.ResourceOptions] = None,
576
+ description: Optional[pulumi.Input[str]] = None,
577
+ feature_group: Optional[pulumi.Input[str]] = None,
578
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
579
+ name: Optional[pulumi.Input[str]] = None,
580
+ project: Optional[pulumi.Input[str]] = None,
581
+ region: Optional[pulumi.Input[str]] = None,
582
+ version_column_name: Optional[pulumi.Input[str]] = None,
583
+ __props__=None):
584
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
585
+ if not isinstance(opts, pulumi.ResourceOptions):
586
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
587
+ if opts.id is None:
588
+ if __props__ is not None:
589
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
590
+ __props__ = AiFeatureGroupFeatureArgs.__new__(AiFeatureGroupFeatureArgs)
591
+
592
+ __props__.__dict__["description"] = description
593
+ if feature_group is None and not opts.urn:
594
+ raise TypeError("Missing required property 'feature_group'")
595
+ __props__.__dict__["feature_group"] = feature_group
596
+ __props__.__dict__["labels"] = labels
597
+ __props__.__dict__["name"] = name
598
+ __props__.__dict__["project"] = project
599
+ if region is None and not opts.urn:
600
+ raise TypeError("Missing required property 'region'")
601
+ __props__.__dict__["region"] = region
602
+ __props__.__dict__["version_column_name"] = version_column_name
603
+ __props__.__dict__["create_time"] = None
604
+ __props__.__dict__["effective_labels"] = None
605
+ __props__.__dict__["pulumi_labels"] = None
606
+ __props__.__dict__["update_time"] = None
607
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
608
+ opts = pulumi.ResourceOptions.merge(opts, secret_opts)
609
+ super(AiFeatureGroupFeature, __self__).__init__(
610
+ 'gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature',
611
+ resource_name,
612
+ __props__,
613
+ opts)
614
+
615
+ @staticmethod
616
+ def get(resource_name: str,
617
+ id: pulumi.Input[str],
618
+ opts: Optional[pulumi.ResourceOptions] = None,
619
+ create_time: Optional[pulumi.Input[str]] = None,
620
+ description: Optional[pulumi.Input[str]] = None,
621
+ effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
622
+ feature_group: Optional[pulumi.Input[str]] = None,
623
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
624
+ name: Optional[pulumi.Input[str]] = None,
625
+ project: Optional[pulumi.Input[str]] = None,
626
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
627
+ region: Optional[pulumi.Input[str]] = None,
628
+ update_time: Optional[pulumi.Input[str]] = None,
629
+ version_column_name: Optional[pulumi.Input[str]] = None) -> 'AiFeatureGroupFeature':
630
+ """
631
+ Get an existing AiFeatureGroupFeature resource's state with the given name, id, and optional extra
632
+ properties used to qualify the lookup.
633
+
634
+ :param str resource_name: The unique name of the resulting resource.
635
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
636
+ :param pulumi.ResourceOptions opts: Options for the resource.
637
+ :param pulumi.Input[str] create_time: The timestamp of when the FeatureGroup was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
638
+ :param pulumi.Input[str] description: The description of the FeatureGroup.
639
+ :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.
640
+ :param pulumi.Input[str] feature_group: The name of the Feature Group.
641
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your FeatureGroup.
642
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
643
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
644
+ :param pulumi.Input[str] name: The resource name of the Feature Group Feature.
645
+ :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
646
+ If it is not provided, the provider project is used.
647
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
648
+ and default labels configured on the provider.
649
+ :param pulumi.Input[str] region: The region for the resource. It should be the same as the feature group's region.
650
+
651
+
652
+ - - -
653
+ :param pulumi.Input[str] update_time: The timestamp of when the FeatureGroup was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
654
+ :param pulumi.Input[str] version_column_name: The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
655
+ """
656
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
657
+
658
+ __props__ = _AiFeatureGroupFeatureState.__new__(_AiFeatureGroupFeatureState)
659
+
660
+ __props__.__dict__["create_time"] = create_time
661
+ __props__.__dict__["description"] = description
662
+ __props__.__dict__["effective_labels"] = effective_labels
663
+ __props__.__dict__["feature_group"] = feature_group
664
+ __props__.__dict__["labels"] = labels
665
+ __props__.__dict__["name"] = name
666
+ __props__.__dict__["project"] = project
667
+ __props__.__dict__["pulumi_labels"] = pulumi_labels
668
+ __props__.__dict__["region"] = region
669
+ __props__.__dict__["update_time"] = update_time
670
+ __props__.__dict__["version_column_name"] = version_column_name
671
+ return AiFeatureGroupFeature(resource_name, opts=opts, __props__=__props__)
672
+
673
+ @property
674
+ @pulumi.getter(name="createTime")
675
+ def create_time(self) -> pulumi.Output[str]:
676
+ """
677
+ The timestamp of when the FeatureGroup was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
678
+ """
679
+ return pulumi.get(self, "create_time")
680
+
681
+ @property
682
+ @pulumi.getter
683
+ def description(self) -> pulumi.Output[Optional[str]]:
684
+ """
685
+ The description of the FeatureGroup.
686
+ """
687
+ return pulumi.get(self, "description")
688
+
689
+ @property
690
+ @pulumi.getter(name="effectiveLabels")
691
+ def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
692
+ """
693
+ All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
694
+ """
695
+ return pulumi.get(self, "effective_labels")
696
+
697
+ @property
698
+ @pulumi.getter(name="featureGroup")
699
+ def feature_group(self) -> pulumi.Output[str]:
700
+ """
701
+ The name of the Feature Group.
702
+ """
703
+ return pulumi.get(self, "feature_group")
704
+
705
+ @property
706
+ @pulumi.getter
707
+ def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
708
+ """
709
+ The labels with user-defined metadata to organize your FeatureGroup.
710
+ **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
711
+ Please refer to the field `effective_labels` for all of the labels present on the resource.
712
+ """
713
+ return pulumi.get(self, "labels")
714
+
715
+ @property
716
+ @pulumi.getter
717
+ def name(self) -> pulumi.Output[str]:
718
+ """
719
+ The resource name of the Feature Group Feature.
720
+ """
721
+ return pulumi.get(self, "name")
722
+
723
+ @property
724
+ @pulumi.getter
725
+ def project(self) -> pulumi.Output[str]:
726
+ """
727
+ The ID of the project in which the resource belongs.
728
+ If it is not provided, the provider project is used.
729
+ """
730
+ return pulumi.get(self, "project")
731
+
732
+ @property
733
+ @pulumi.getter(name="pulumiLabels")
734
+ def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
735
+ """
736
+ The combination of labels configured directly on the resource
737
+ and default labels configured on the provider.
738
+ """
739
+ return pulumi.get(self, "pulumi_labels")
740
+
741
+ @property
742
+ @pulumi.getter
743
+ def region(self) -> pulumi.Output[str]:
744
+ """
745
+ The region for the resource. It should be the same as the feature group's region.
746
+
747
+
748
+ - - -
749
+ """
750
+ return pulumi.get(self, "region")
751
+
752
+ @property
753
+ @pulumi.getter(name="updateTime")
754
+ def update_time(self) -> pulumi.Output[str]:
755
+ """
756
+ The timestamp of when the FeatureGroup was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
757
+ """
758
+ return pulumi.get(self, "update_time")
759
+
760
+ @property
761
+ @pulumi.getter(name="versionColumnName")
762
+ def version_column_name(self) -> pulumi.Output[str]:
763
+ """
764
+ The name of the BigQuery Table/View column hosting data for this version. If no value is provided, will use featureId.
765
+ """
766
+ return pulumi.get(self, "version_column_name")
767
+