pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,804 @@
|
|
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
|
+
from . import outputs
|
12
|
+
from ._inputs import *
|
13
|
+
|
14
|
+
__all__ = ['AiFeatureOnlineStoreFeatureviewArgs', 'AiFeatureOnlineStoreFeatureview']
|
15
|
+
|
16
|
+
@pulumi.input_type
|
17
|
+
class AiFeatureOnlineStoreFeatureviewArgs:
|
18
|
+
def __init__(__self__, *,
|
19
|
+
feature_online_store: pulumi.Input[str],
|
20
|
+
region: pulumi.Input[str],
|
21
|
+
big_query_source: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']] = None,
|
22
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
23
|
+
name: Optional[pulumi.Input[str]] = None,
|
24
|
+
project: Optional[pulumi.Input[str]] = None,
|
25
|
+
sync_config: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']] = None):
|
26
|
+
"""
|
27
|
+
The set of arguments for constructing a AiFeatureOnlineStoreFeatureview resource.
|
28
|
+
:param pulumi.Input[str] feature_online_store: The name of the FeatureOnlineStore to use for the featureview.
|
29
|
+
:param pulumi.Input[str] region: The region for the resource. It should be the same as the featureonlinestore region.
|
30
|
+
|
31
|
+
|
32
|
+
- - -
|
33
|
+
:param pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs'] big_query_source: Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
34
|
+
Structure is documented below.
|
35
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to this FeatureView.
|
36
|
+
|
37
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
38
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
39
|
+
:param pulumi.Input[str] name: Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
40
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
41
|
+
If it is not provided, the provider project is used.
|
42
|
+
:param pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs'] sync_config: Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
43
|
+
Structure is documented below.
|
44
|
+
"""
|
45
|
+
pulumi.set(__self__, "feature_online_store", feature_online_store)
|
46
|
+
pulumi.set(__self__, "region", region)
|
47
|
+
if big_query_source is not None:
|
48
|
+
pulumi.set(__self__, "big_query_source", big_query_source)
|
49
|
+
if labels is not None:
|
50
|
+
pulumi.set(__self__, "labels", labels)
|
51
|
+
if name is not None:
|
52
|
+
pulumi.set(__self__, "name", name)
|
53
|
+
if project is not None:
|
54
|
+
pulumi.set(__self__, "project", project)
|
55
|
+
if sync_config is not None:
|
56
|
+
pulumi.set(__self__, "sync_config", sync_config)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="featureOnlineStore")
|
60
|
+
def feature_online_store(self) -> pulumi.Input[str]:
|
61
|
+
"""
|
62
|
+
The name of the FeatureOnlineStore to use for the featureview.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "feature_online_store")
|
65
|
+
|
66
|
+
@feature_online_store.setter
|
67
|
+
def feature_online_store(self, value: pulumi.Input[str]):
|
68
|
+
pulumi.set(self, "feature_online_store", value)
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter
|
72
|
+
def region(self) -> pulumi.Input[str]:
|
73
|
+
"""
|
74
|
+
The region for the resource. It should be the same as the featureonlinestore region.
|
75
|
+
|
76
|
+
|
77
|
+
- - -
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "region")
|
80
|
+
|
81
|
+
@region.setter
|
82
|
+
def region(self, value: pulumi.Input[str]):
|
83
|
+
pulumi.set(self, "region", value)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="bigQuerySource")
|
87
|
+
def big_query_source(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]:
|
88
|
+
"""
|
89
|
+
Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
90
|
+
Structure is documented below.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "big_query_source")
|
93
|
+
|
94
|
+
@big_query_source.setter
|
95
|
+
def big_query_source(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]):
|
96
|
+
pulumi.set(self, "big_query_source", value)
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter
|
100
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
101
|
+
"""
|
102
|
+
A set of key/value label pairs to assign to this FeatureView.
|
103
|
+
|
104
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
105
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "labels")
|
108
|
+
|
109
|
+
@labels.setter
|
110
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
111
|
+
pulumi.set(self, "labels", value)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter
|
115
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
116
|
+
"""
|
117
|
+
Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "name")
|
120
|
+
|
121
|
+
@name.setter
|
122
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
123
|
+
pulumi.set(self, "name", value)
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter
|
127
|
+
def project(self) -> Optional[pulumi.Input[str]]:
|
128
|
+
"""
|
129
|
+
The ID of the project in which the resource belongs.
|
130
|
+
If it is not provided, the provider project is used.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "project")
|
133
|
+
|
134
|
+
@project.setter
|
135
|
+
def project(self, value: Optional[pulumi.Input[str]]):
|
136
|
+
pulumi.set(self, "project", value)
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="syncConfig")
|
140
|
+
def sync_config(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]:
|
141
|
+
"""
|
142
|
+
Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
143
|
+
Structure is documented below.
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "sync_config")
|
146
|
+
|
147
|
+
@sync_config.setter
|
148
|
+
def sync_config(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]):
|
149
|
+
pulumi.set(self, "sync_config", value)
|
150
|
+
|
151
|
+
|
152
|
+
@pulumi.input_type
|
153
|
+
class _AiFeatureOnlineStoreFeatureviewState:
|
154
|
+
def __init__(__self__, *,
|
155
|
+
big_query_source: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']] = None,
|
156
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
157
|
+
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
158
|
+
feature_online_store: Optional[pulumi.Input[str]] = None,
|
159
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
160
|
+
name: Optional[pulumi.Input[str]] = None,
|
161
|
+
project: Optional[pulumi.Input[str]] = None,
|
162
|
+
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
163
|
+
region: Optional[pulumi.Input[str]] = None,
|
164
|
+
sync_config: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']] = None,
|
165
|
+
update_time: Optional[pulumi.Input[str]] = None):
|
166
|
+
"""
|
167
|
+
Input properties used for looking up and filtering AiFeatureOnlineStoreFeatureview resources.
|
168
|
+
:param pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs'] big_query_source: Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
169
|
+
Structure is documented below.
|
170
|
+
:param pulumi.Input[str] create_time: The timestamp of when the featureOnlinestore was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
171
|
+
: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.
|
172
|
+
:param pulumi.Input[str] feature_online_store: The name of the FeatureOnlineStore to use for the featureview.
|
173
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to this FeatureView.
|
174
|
+
|
175
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
176
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
177
|
+
:param pulumi.Input[str] name: Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
178
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
179
|
+
If it is not provided, the provider project is used.
|
180
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
181
|
+
and default labels configured on the provider.
|
182
|
+
:param pulumi.Input[str] region: The region for the resource. It should be the same as the featureonlinestore region.
|
183
|
+
|
184
|
+
|
185
|
+
- - -
|
186
|
+
:param pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs'] sync_config: Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
187
|
+
Structure is documented below.
|
188
|
+
:param pulumi.Input[str] update_time: The timestamp of when the featureOnlinestore was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
189
|
+
"""
|
190
|
+
if big_query_source is not None:
|
191
|
+
pulumi.set(__self__, "big_query_source", big_query_source)
|
192
|
+
if create_time is not None:
|
193
|
+
pulumi.set(__self__, "create_time", create_time)
|
194
|
+
if effective_labels is not None:
|
195
|
+
pulumi.set(__self__, "effective_labels", effective_labels)
|
196
|
+
if feature_online_store is not None:
|
197
|
+
pulumi.set(__self__, "feature_online_store", feature_online_store)
|
198
|
+
if labels is not None:
|
199
|
+
pulumi.set(__self__, "labels", labels)
|
200
|
+
if name is not None:
|
201
|
+
pulumi.set(__self__, "name", name)
|
202
|
+
if project is not None:
|
203
|
+
pulumi.set(__self__, "project", project)
|
204
|
+
if pulumi_labels is not None:
|
205
|
+
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
206
|
+
if region is not None:
|
207
|
+
pulumi.set(__self__, "region", region)
|
208
|
+
if sync_config is not None:
|
209
|
+
pulumi.set(__self__, "sync_config", sync_config)
|
210
|
+
if update_time is not None:
|
211
|
+
pulumi.set(__self__, "update_time", update_time)
|
212
|
+
|
213
|
+
@property
|
214
|
+
@pulumi.getter(name="bigQuerySource")
|
215
|
+
def big_query_source(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]:
|
216
|
+
"""
|
217
|
+
Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
218
|
+
Structure is documented below.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "big_query_source")
|
221
|
+
|
222
|
+
@big_query_source.setter
|
223
|
+
def big_query_source(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]):
|
224
|
+
pulumi.set(self, "big_query_source", value)
|
225
|
+
|
226
|
+
@property
|
227
|
+
@pulumi.getter(name="createTime")
|
228
|
+
def create_time(self) -> Optional[pulumi.Input[str]]:
|
229
|
+
"""
|
230
|
+
The timestamp of when the featureOnlinestore was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "create_time")
|
233
|
+
|
234
|
+
@create_time.setter
|
235
|
+
def create_time(self, value: Optional[pulumi.Input[str]]):
|
236
|
+
pulumi.set(self, "create_time", value)
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="effectiveLabels")
|
240
|
+
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
241
|
+
"""
|
242
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "effective_labels")
|
245
|
+
|
246
|
+
@effective_labels.setter
|
247
|
+
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
248
|
+
pulumi.set(self, "effective_labels", value)
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="featureOnlineStore")
|
252
|
+
def feature_online_store(self) -> Optional[pulumi.Input[str]]:
|
253
|
+
"""
|
254
|
+
The name of the FeatureOnlineStore to use for the featureview.
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "feature_online_store")
|
257
|
+
|
258
|
+
@feature_online_store.setter
|
259
|
+
def feature_online_store(self, value: Optional[pulumi.Input[str]]):
|
260
|
+
pulumi.set(self, "feature_online_store", value)
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter
|
264
|
+
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
265
|
+
"""
|
266
|
+
A set of key/value label pairs to assign to this FeatureView.
|
267
|
+
|
268
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
269
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "labels")
|
272
|
+
|
273
|
+
@labels.setter
|
274
|
+
def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
275
|
+
pulumi.set(self, "labels", value)
|
276
|
+
|
277
|
+
@property
|
278
|
+
@pulumi.getter
|
279
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
280
|
+
"""
|
281
|
+
Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "name")
|
284
|
+
|
285
|
+
@name.setter
|
286
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
287
|
+
pulumi.set(self, "name", value)
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter
|
291
|
+
def project(self) -> Optional[pulumi.Input[str]]:
|
292
|
+
"""
|
293
|
+
The ID of the project in which the resource belongs.
|
294
|
+
If it is not provided, the provider project is used.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "project")
|
297
|
+
|
298
|
+
@project.setter
|
299
|
+
def project(self, value: Optional[pulumi.Input[str]]):
|
300
|
+
pulumi.set(self, "project", value)
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="pulumiLabels")
|
304
|
+
def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
305
|
+
"""
|
306
|
+
The combination of labels configured directly on the resource
|
307
|
+
and default labels configured on the provider.
|
308
|
+
"""
|
309
|
+
return pulumi.get(self, "pulumi_labels")
|
310
|
+
|
311
|
+
@pulumi_labels.setter
|
312
|
+
def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
313
|
+
pulumi.set(self, "pulumi_labels", value)
|
314
|
+
|
315
|
+
@property
|
316
|
+
@pulumi.getter
|
317
|
+
def region(self) -> Optional[pulumi.Input[str]]:
|
318
|
+
"""
|
319
|
+
The region for the resource. It should be the same as the featureonlinestore region.
|
320
|
+
|
321
|
+
|
322
|
+
- - -
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "region")
|
325
|
+
|
326
|
+
@region.setter
|
327
|
+
def region(self, value: Optional[pulumi.Input[str]]):
|
328
|
+
pulumi.set(self, "region", value)
|
329
|
+
|
330
|
+
@property
|
331
|
+
@pulumi.getter(name="syncConfig")
|
332
|
+
def sync_config(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]:
|
333
|
+
"""
|
334
|
+
Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
335
|
+
Structure is documented below.
|
336
|
+
"""
|
337
|
+
return pulumi.get(self, "sync_config")
|
338
|
+
|
339
|
+
@sync_config.setter
|
340
|
+
def sync_config(self, value: Optional[pulumi.Input['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]):
|
341
|
+
pulumi.set(self, "sync_config", value)
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter(name="updateTime")
|
345
|
+
def update_time(self) -> Optional[pulumi.Input[str]]:
|
346
|
+
"""
|
347
|
+
The timestamp of when the featureOnlinestore was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
348
|
+
"""
|
349
|
+
return pulumi.get(self, "update_time")
|
350
|
+
|
351
|
+
@update_time.setter
|
352
|
+
def update_time(self, value: Optional[pulumi.Input[str]]):
|
353
|
+
pulumi.set(self, "update_time", value)
|
354
|
+
|
355
|
+
|
356
|
+
class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
357
|
+
@overload
|
358
|
+
def __init__(__self__,
|
359
|
+
resource_name: str,
|
360
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
361
|
+
big_query_source: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]] = None,
|
362
|
+
feature_online_store: Optional[pulumi.Input[str]] = None,
|
363
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
364
|
+
name: Optional[pulumi.Input[str]] = None,
|
365
|
+
project: Optional[pulumi.Input[str]] = None,
|
366
|
+
region: Optional[pulumi.Input[str]] = None,
|
367
|
+
sync_config: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]] = None,
|
368
|
+
__props__=None):
|
369
|
+
"""
|
370
|
+
FeatureView is representation of values that the FeatureOnlineStore will serve based on its syncConfig.
|
371
|
+
|
372
|
+
To get more information about FeatureOnlineStoreFeatureview, see:
|
373
|
+
|
374
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.featureOnlineStores.featureViews)
|
375
|
+
* How-to Guides
|
376
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/docs)
|
377
|
+
|
378
|
+
## Example Usage
|
379
|
+
### Vertex Ai Featureonlinestore Featureview
|
380
|
+
|
381
|
+
```python
|
382
|
+
import pulumi
|
383
|
+
import pulumi_gcp as gcp
|
384
|
+
|
385
|
+
featureonlinestore = gcp.vertex.AiFeatureOnlineStore("featureonlinestore",
|
386
|
+
labels={
|
387
|
+
"foo": "bar",
|
388
|
+
},
|
389
|
+
region="us-central1",
|
390
|
+
bigtable=gcp.vertex.AiFeatureOnlineStoreBigtableArgs(
|
391
|
+
auto_scaling=gcp.vertex.AiFeatureOnlineStoreBigtableAutoScalingArgs(
|
392
|
+
min_node_count=1,
|
393
|
+
max_node_count=2,
|
394
|
+
cpu_utilization_target=80,
|
395
|
+
),
|
396
|
+
))
|
397
|
+
tf_test_dataset = gcp.bigquery.Dataset("tf-test-dataset",
|
398
|
+
dataset_id="example_feature_view",
|
399
|
+
friendly_name="test",
|
400
|
+
description="This is a test description",
|
401
|
+
location="US")
|
402
|
+
tf_test_table = gcp.bigquery.Table("tf-test-table",
|
403
|
+
deletion_protection=False,
|
404
|
+
dataset_id=tf_test_dataset.dataset_id,
|
405
|
+
table_id="example_feature_view",
|
406
|
+
schema=\"\"\" [
|
407
|
+
{
|
408
|
+
"name": "entity_id",
|
409
|
+
"mode": "NULLABLE",
|
410
|
+
"type": "STRING",
|
411
|
+
"description": "Test default entity_id"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"name": "test_entity_column",
|
415
|
+
"mode": "NULLABLE",
|
416
|
+
"type": "STRING",
|
417
|
+
"description": "test secondary entity column"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"name": "feature_timestamp",
|
421
|
+
"mode": "NULLABLE",
|
422
|
+
"type": "TIMESTAMP",
|
423
|
+
"description": "Default timestamp value"
|
424
|
+
}
|
425
|
+
]
|
426
|
+
\"\"\")
|
427
|
+
featureview = gcp.vertex.AiFeatureOnlineStoreFeatureview("featureview",
|
428
|
+
region="us-central1",
|
429
|
+
feature_online_store=featureonlinestore.name,
|
430
|
+
sync_config=gcp.vertex.AiFeatureOnlineStoreFeatureviewSyncConfigArgs(
|
431
|
+
cron="0 0 * * *",
|
432
|
+
),
|
433
|
+
big_query_source=gcp.vertex.AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs(
|
434
|
+
uri=pulumi.Output.all(tf_test_table.project, tf_test_table.dataset_id, tf_test_table.table_id).apply(lambda project, dataset_id, table_id: f"bq://{project}.{dataset_id}.{table_id}"),
|
435
|
+
entity_id_columns=["test_entity_column"],
|
436
|
+
))
|
437
|
+
project = gcp.organizations.get_project()
|
438
|
+
```
|
439
|
+
|
440
|
+
## Import
|
441
|
+
|
442
|
+
FeatureOnlineStoreFeatureview can be imported using any of these accepted formats* `projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}` * `{{project}}/{{region}}/{{feature_online_store}}/{{name}}` * `{{region}}/{{feature_online_store}}/{{name}}` * `{{feature_online_store}}/{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import FeatureOnlineStoreFeatureview using one of the formats above. For exampletf import {
|
443
|
+
|
444
|
+
id = "projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}"
|
445
|
+
|
446
|
+
to = google_vertex_ai_feature_online_store_featureview.default }
|
447
|
+
|
448
|
+
```sh
|
449
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), FeatureOnlineStoreFeatureview can be imported using one of the formats above. For example
|
450
|
+
```
|
451
|
+
|
452
|
+
```sh
|
453
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}
|
454
|
+
```
|
455
|
+
|
456
|
+
```sh
|
457
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{project}}/{{region}}/{{feature_online_store}}/{{name}}
|
458
|
+
```
|
459
|
+
|
460
|
+
```sh
|
461
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{region}}/{{feature_online_store}}/{{name}}
|
462
|
+
```
|
463
|
+
|
464
|
+
```sh
|
465
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{feature_online_store}}/{{name}}
|
466
|
+
```
|
467
|
+
|
468
|
+
:param str resource_name: The name of the resource.
|
469
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
470
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']] big_query_source: Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
471
|
+
Structure is documented below.
|
472
|
+
:param pulumi.Input[str] feature_online_store: The name of the FeatureOnlineStore to use for the featureview.
|
473
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to this FeatureView.
|
474
|
+
|
475
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
476
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
477
|
+
:param pulumi.Input[str] name: Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
478
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
479
|
+
If it is not provided, the provider project is used.
|
480
|
+
:param pulumi.Input[str] region: The region for the resource. It should be the same as the featureonlinestore region.
|
481
|
+
|
482
|
+
|
483
|
+
- - -
|
484
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']] sync_config: Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
485
|
+
Structure is documented below.
|
486
|
+
"""
|
487
|
+
...
|
488
|
+
@overload
|
489
|
+
def __init__(__self__,
|
490
|
+
resource_name: str,
|
491
|
+
args: AiFeatureOnlineStoreFeatureviewArgs,
|
492
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
493
|
+
"""
|
494
|
+
FeatureView is representation of values that the FeatureOnlineStore will serve based on its syncConfig.
|
495
|
+
|
496
|
+
To get more information about FeatureOnlineStoreFeatureview, see:
|
497
|
+
|
498
|
+
* [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.featureOnlineStores.featureViews)
|
499
|
+
* How-to Guides
|
500
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/docs)
|
501
|
+
|
502
|
+
## Example Usage
|
503
|
+
### Vertex Ai Featureonlinestore Featureview
|
504
|
+
|
505
|
+
```python
|
506
|
+
import pulumi
|
507
|
+
import pulumi_gcp as gcp
|
508
|
+
|
509
|
+
featureonlinestore = gcp.vertex.AiFeatureOnlineStore("featureonlinestore",
|
510
|
+
labels={
|
511
|
+
"foo": "bar",
|
512
|
+
},
|
513
|
+
region="us-central1",
|
514
|
+
bigtable=gcp.vertex.AiFeatureOnlineStoreBigtableArgs(
|
515
|
+
auto_scaling=gcp.vertex.AiFeatureOnlineStoreBigtableAutoScalingArgs(
|
516
|
+
min_node_count=1,
|
517
|
+
max_node_count=2,
|
518
|
+
cpu_utilization_target=80,
|
519
|
+
),
|
520
|
+
))
|
521
|
+
tf_test_dataset = gcp.bigquery.Dataset("tf-test-dataset",
|
522
|
+
dataset_id="example_feature_view",
|
523
|
+
friendly_name="test",
|
524
|
+
description="This is a test description",
|
525
|
+
location="US")
|
526
|
+
tf_test_table = gcp.bigquery.Table("tf-test-table",
|
527
|
+
deletion_protection=False,
|
528
|
+
dataset_id=tf_test_dataset.dataset_id,
|
529
|
+
table_id="example_feature_view",
|
530
|
+
schema=\"\"\" [
|
531
|
+
{
|
532
|
+
"name": "entity_id",
|
533
|
+
"mode": "NULLABLE",
|
534
|
+
"type": "STRING",
|
535
|
+
"description": "Test default entity_id"
|
536
|
+
},
|
537
|
+
{
|
538
|
+
"name": "test_entity_column",
|
539
|
+
"mode": "NULLABLE",
|
540
|
+
"type": "STRING",
|
541
|
+
"description": "test secondary entity column"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"name": "feature_timestamp",
|
545
|
+
"mode": "NULLABLE",
|
546
|
+
"type": "TIMESTAMP",
|
547
|
+
"description": "Default timestamp value"
|
548
|
+
}
|
549
|
+
]
|
550
|
+
\"\"\")
|
551
|
+
featureview = gcp.vertex.AiFeatureOnlineStoreFeatureview("featureview",
|
552
|
+
region="us-central1",
|
553
|
+
feature_online_store=featureonlinestore.name,
|
554
|
+
sync_config=gcp.vertex.AiFeatureOnlineStoreFeatureviewSyncConfigArgs(
|
555
|
+
cron="0 0 * * *",
|
556
|
+
),
|
557
|
+
big_query_source=gcp.vertex.AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs(
|
558
|
+
uri=pulumi.Output.all(tf_test_table.project, tf_test_table.dataset_id, tf_test_table.table_id).apply(lambda project, dataset_id, table_id: f"bq://{project}.{dataset_id}.{table_id}"),
|
559
|
+
entity_id_columns=["test_entity_column"],
|
560
|
+
))
|
561
|
+
project = gcp.organizations.get_project()
|
562
|
+
```
|
563
|
+
|
564
|
+
## Import
|
565
|
+
|
566
|
+
FeatureOnlineStoreFeatureview can be imported using any of these accepted formats* `projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}` * `{{project}}/{{region}}/{{feature_online_store}}/{{name}}` * `{{region}}/{{feature_online_store}}/{{name}}` * `{{feature_online_store}}/{{name}}` In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import FeatureOnlineStoreFeatureview using one of the formats above. For exampletf import {
|
567
|
+
|
568
|
+
id = "projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}"
|
569
|
+
|
570
|
+
to = google_vertex_ai_feature_online_store_featureview.default }
|
571
|
+
|
572
|
+
```sh
|
573
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), FeatureOnlineStoreFeatureview can be imported using one of the formats above. For example
|
574
|
+
```
|
575
|
+
|
576
|
+
```sh
|
577
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default projects/{{project}}/locations/{{region}}/featureOnlineStores/{{feature_online_store}}/featureViews/{{name}}
|
578
|
+
```
|
579
|
+
|
580
|
+
```sh
|
581
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{project}}/{{region}}/{{feature_online_store}}/{{name}}
|
582
|
+
```
|
583
|
+
|
584
|
+
```sh
|
585
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{region}}/{{feature_online_store}}/{{name}}
|
586
|
+
```
|
587
|
+
|
588
|
+
```sh
|
589
|
+
$ pulumi import gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview default {{feature_online_store}}/{{name}}
|
590
|
+
```
|
591
|
+
|
592
|
+
:param str resource_name: The name of the resource.
|
593
|
+
:param AiFeatureOnlineStoreFeatureviewArgs args: The arguments to use to populate this resource's properties.
|
594
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
595
|
+
"""
|
596
|
+
...
|
597
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
598
|
+
resource_args, opts = _utilities.get_resource_args_opts(AiFeatureOnlineStoreFeatureviewArgs, pulumi.ResourceOptions, *args, **kwargs)
|
599
|
+
if resource_args is not None:
|
600
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
601
|
+
else:
|
602
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
603
|
+
|
604
|
+
def _internal_init(__self__,
|
605
|
+
resource_name: str,
|
606
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
607
|
+
big_query_source: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]] = None,
|
608
|
+
feature_online_store: Optional[pulumi.Input[str]] = None,
|
609
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
610
|
+
name: Optional[pulumi.Input[str]] = None,
|
611
|
+
project: Optional[pulumi.Input[str]] = None,
|
612
|
+
region: Optional[pulumi.Input[str]] = None,
|
613
|
+
sync_config: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]] = None,
|
614
|
+
__props__=None):
|
615
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
616
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
617
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
618
|
+
if opts.id is None:
|
619
|
+
if __props__ is not None:
|
620
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
621
|
+
__props__ = AiFeatureOnlineStoreFeatureviewArgs.__new__(AiFeatureOnlineStoreFeatureviewArgs)
|
622
|
+
|
623
|
+
__props__.__dict__["big_query_source"] = big_query_source
|
624
|
+
if feature_online_store is None and not opts.urn:
|
625
|
+
raise TypeError("Missing required property 'feature_online_store'")
|
626
|
+
__props__.__dict__["feature_online_store"] = feature_online_store
|
627
|
+
__props__.__dict__["labels"] = labels
|
628
|
+
__props__.__dict__["name"] = name
|
629
|
+
__props__.__dict__["project"] = project
|
630
|
+
if region is None and not opts.urn:
|
631
|
+
raise TypeError("Missing required property 'region'")
|
632
|
+
__props__.__dict__["region"] = region
|
633
|
+
__props__.__dict__["sync_config"] = sync_config
|
634
|
+
__props__.__dict__["create_time"] = None
|
635
|
+
__props__.__dict__["effective_labels"] = None
|
636
|
+
__props__.__dict__["pulumi_labels"] = None
|
637
|
+
__props__.__dict__["update_time"] = None
|
638
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
639
|
+
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
640
|
+
super(AiFeatureOnlineStoreFeatureview, __self__).__init__(
|
641
|
+
'gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview',
|
642
|
+
resource_name,
|
643
|
+
__props__,
|
644
|
+
opts)
|
645
|
+
|
646
|
+
@staticmethod
|
647
|
+
def get(resource_name: str,
|
648
|
+
id: pulumi.Input[str],
|
649
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
650
|
+
big_query_source: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']]] = None,
|
651
|
+
create_time: Optional[pulumi.Input[str]] = None,
|
652
|
+
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
653
|
+
feature_online_store: Optional[pulumi.Input[str]] = None,
|
654
|
+
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
655
|
+
name: Optional[pulumi.Input[str]] = None,
|
656
|
+
project: Optional[pulumi.Input[str]] = None,
|
657
|
+
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
658
|
+
region: Optional[pulumi.Input[str]] = None,
|
659
|
+
sync_config: Optional[pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']]] = None,
|
660
|
+
update_time: Optional[pulumi.Input[str]] = None) -> 'AiFeatureOnlineStoreFeatureview':
|
661
|
+
"""
|
662
|
+
Get an existing AiFeatureOnlineStoreFeatureview resource's state with the given name, id, and optional extra
|
663
|
+
properties used to qualify the lookup.
|
664
|
+
|
665
|
+
:param str resource_name: The unique name of the resulting resource.
|
666
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
667
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
668
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewBigQuerySourceArgs']] big_query_source: Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
669
|
+
Structure is documented below.
|
670
|
+
:param pulumi.Input[str] create_time: The timestamp of when the featureOnlinestore was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
671
|
+
: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.
|
672
|
+
:param pulumi.Input[str] feature_online_store: The name of the FeatureOnlineStore to use for the featureview.
|
673
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to this FeatureView.
|
674
|
+
|
675
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
676
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
677
|
+
:param pulumi.Input[str] name: Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
678
|
+
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
679
|
+
If it is not provided, the provider project is used.
|
680
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
681
|
+
and default labels configured on the provider.
|
682
|
+
:param pulumi.Input[str] region: The region for the resource. It should be the same as the featureonlinestore region.
|
683
|
+
|
684
|
+
|
685
|
+
- - -
|
686
|
+
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreFeatureviewSyncConfigArgs']] sync_config: Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
687
|
+
Structure is documented below.
|
688
|
+
:param pulumi.Input[str] update_time: The timestamp of when the featureOnlinestore was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
689
|
+
"""
|
690
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
691
|
+
|
692
|
+
__props__ = _AiFeatureOnlineStoreFeatureviewState.__new__(_AiFeatureOnlineStoreFeatureviewState)
|
693
|
+
|
694
|
+
__props__.__dict__["big_query_source"] = big_query_source
|
695
|
+
__props__.__dict__["create_time"] = create_time
|
696
|
+
__props__.__dict__["effective_labels"] = effective_labels
|
697
|
+
__props__.__dict__["feature_online_store"] = feature_online_store
|
698
|
+
__props__.__dict__["labels"] = labels
|
699
|
+
__props__.__dict__["name"] = name
|
700
|
+
__props__.__dict__["project"] = project
|
701
|
+
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
702
|
+
__props__.__dict__["region"] = region
|
703
|
+
__props__.__dict__["sync_config"] = sync_config
|
704
|
+
__props__.__dict__["update_time"] = update_time
|
705
|
+
return AiFeatureOnlineStoreFeatureview(resource_name, opts=opts, __props__=__props__)
|
706
|
+
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="bigQuerySource")
|
709
|
+
def big_query_source(self) -> pulumi.Output[Optional['outputs.AiFeatureOnlineStoreFeatureviewBigQuerySource']]:
|
710
|
+
"""
|
711
|
+
Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
|
712
|
+
Structure is documented below.
|
713
|
+
"""
|
714
|
+
return pulumi.get(self, "big_query_source")
|
715
|
+
|
716
|
+
@property
|
717
|
+
@pulumi.getter(name="createTime")
|
718
|
+
def create_time(self) -> pulumi.Output[str]:
|
719
|
+
"""
|
720
|
+
The timestamp of when the featureOnlinestore was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
721
|
+
"""
|
722
|
+
return pulumi.get(self, "create_time")
|
723
|
+
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="effectiveLabels")
|
726
|
+
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
727
|
+
"""
|
728
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "effective_labels")
|
731
|
+
|
732
|
+
@property
|
733
|
+
@pulumi.getter(name="featureOnlineStore")
|
734
|
+
def feature_online_store(self) -> pulumi.Output[str]:
|
735
|
+
"""
|
736
|
+
The name of the FeatureOnlineStore to use for the featureview.
|
737
|
+
"""
|
738
|
+
return pulumi.get(self, "feature_online_store")
|
739
|
+
|
740
|
+
@property
|
741
|
+
@pulumi.getter
|
742
|
+
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
743
|
+
"""
|
744
|
+
A set of key/value label pairs to assign to this FeatureView.
|
745
|
+
|
746
|
+
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
747
|
+
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
748
|
+
"""
|
749
|
+
return pulumi.get(self, "labels")
|
750
|
+
|
751
|
+
@property
|
752
|
+
@pulumi.getter
|
753
|
+
def name(self) -> pulumi.Output[str]:
|
754
|
+
"""
|
755
|
+
Name of the FeatureView. This value may be up to 60 characters, and valid characters are [a-z0-9_]. The first character cannot be a number.
|
756
|
+
"""
|
757
|
+
return pulumi.get(self, "name")
|
758
|
+
|
759
|
+
@property
|
760
|
+
@pulumi.getter
|
761
|
+
def project(self) -> pulumi.Output[str]:
|
762
|
+
"""
|
763
|
+
The ID of the project in which the resource belongs.
|
764
|
+
If it is not provided, the provider project is used.
|
765
|
+
"""
|
766
|
+
return pulumi.get(self, "project")
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="pulumiLabels")
|
770
|
+
def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
771
|
+
"""
|
772
|
+
The combination of labels configured directly on the resource
|
773
|
+
and default labels configured on the provider.
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "pulumi_labels")
|
776
|
+
|
777
|
+
@property
|
778
|
+
@pulumi.getter
|
779
|
+
def region(self) -> pulumi.Output[str]:
|
780
|
+
"""
|
781
|
+
The region for the resource. It should be the same as the featureonlinestore region.
|
782
|
+
|
783
|
+
|
784
|
+
- - -
|
785
|
+
"""
|
786
|
+
return pulumi.get(self, "region")
|
787
|
+
|
788
|
+
@property
|
789
|
+
@pulumi.getter(name="syncConfig")
|
790
|
+
def sync_config(self) -> pulumi.Output[Optional['outputs.AiFeatureOnlineStoreFeatureviewSyncConfig']]:
|
791
|
+
"""
|
792
|
+
Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.
|
793
|
+
Structure is documented below.
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "sync_config")
|
796
|
+
|
797
|
+
@property
|
798
|
+
@pulumi.getter(name="updateTime")
|
799
|
+
def update_time(self) -> pulumi.Output[str]:
|
800
|
+
"""
|
801
|
+
The timestamp of when the featureOnlinestore was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
802
|
+
"""
|
803
|
+
return pulumi.get(self, "update_time")
|
804
|
+
|