pulumi-gcp 8.41.0a1755408441__py3-none-any.whl → 8.41.0a1755638986__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 +16 -0
- pulumi_gcp/artifactregistry/__init__.py +3 -0
- pulumi_gcp/artifactregistry/get_package.py +220 -0
- pulumi_gcp/artifactregistry/get_repositories.py +160 -0
- pulumi_gcp/artifactregistry/get_version.py +261 -0
- pulumi_gcp/artifactregistry/outputs.py +100 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +114 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/composer/user_workloads_config_map.py +26 -2
- pulumi_gcp/compute/_inputs.py +355 -0
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/outputs.py +404 -0
- pulumi_gcp/compute/region_backend_service.py +257 -0
- pulumi_gcp/compute/region_security_policy.py +54 -0
- pulumi_gcp/compute/service_attachment.py +126 -0
- pulumi_gcp/container/_inputs.py +435 -15
- pulumi_gcp/container/outputs.py +494 -13
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +168 -0
- pulumi_gcp/diagflow/cx_playbook.py +967 -0
- pulumi_gcp/diagflow/outputs.py +117 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +24 -3
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +70 -0
- pulumi_gcp/pubsub/subscription.py +84 -0
- pulumi_gcp/pubsub/topic.py +80 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +82 -4
- pulumi_gcp/sql/database_instance.py +108 -7
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +154 -7
- pulumi_gcp/storage/_inputs.py +104 -12
- pulumi_gcp/storage/outputs.py +84 -7
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +122 -0
- pulumi_gcp/vertex/ai_rag_engine_config.py +354 -0
- pulumi_gcp/vertex/outputs.py +69 -0
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/RECORD +42 -37
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,354 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['AiRagEngineConfigArgs', 'AiRagEngineConfig']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class AiRagEngineConfigArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
rag_managed_db_config: pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs'],
|
25
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
26
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
27
|
+
"""
|
28
|
+
The set of arguments for constructing a AiRagEngineConfig resource.
|
29
|
+
:param pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs'] rag_managed_db_config: Required. The config of the RagManagedDb used by RagEngine.
|
30
|
+
Structure is documented below.
|
31
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
32
|
+
If it is not provided, the provider project is used.
|
33
|
+
:param pulumi.Input[_builtins.str] region: The region of the RagEngineConfig. eg us-central1
|
34
|
+
"""
|
35
|
+
pulumi.set(__self__, "rag_managed_db_config", rag_managed_db_config)
|
36
|
+
if project is not None:
|
37
|
+
pulumi.set(__self__, "project", project)
|
38
|
+
if region is not None:
|
39
|
+
pulumi.set(__self__, "region", region)
|
40
|
+
|
41
|
+
@_builtins.property
|
42
|
+
@pulumi.getter(name="ragManagedDbConfig")
|
43
|
+
def rag_managed_db_config(self) -> pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs']:
|
44
|
+
"""
|
45
|
+
Required. The config of the RagManagedDb used by RagEngine.
|
46
|
+
Structure is documented below.
|
47
|
+
"""
|
48
|
+
return pulumi.get(self, "rag_managed_db_config")
|
49
|
+
|
50
|
+
@rag_managed_db_config.setter
|
51
|
+
def rag_managed_db_config(self, value: pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs']):
|
52
|
+
pulumi.set(self, "rag_managed_db_config", value)
|
53
|
+
|
54
|
+
@_builtins.property
|
55
|
+
@pulumi.getter
|
56
|
+
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
57
|
+
"""
|
58
|
+
The ID of the project in which the resource belongs.
|
59
|
+
If it is not provided, the provider project is used.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "project")
|
62
|
+
|
63
|
+
@project.setter
|
64
|
+
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
65
|
+
pulumi.set(self, "project", value)
|
66
|
+
|
67
|
+
@_builtins.property
|
68
|
+
@pulumi.getter
|
69
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
70
|
+
"""
|
71
|
+
The region of the RagEngineConfig. eg us-central1
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "region")
|
74
|
+
|
75
|
+
@region.setter
|
76
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
77
|
+
pulumi.set(self, "region", value)
|
78
|
+
|
79
|
+
|
80
|
+
@pulumi.input_type
|
81
|
+
class _AiRagEngineConfigState:
|
82
|
+
def __init__(__self__, *,
|
83
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
84
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
85
|
+
rag_managed_db_config: Optional[pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs']] = None,
|
86
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
87
|
+
"""
|
88
|
+
Input properties used for looking up and filtering AiRagEngineConfig resources.
|
89
|
+
:param pulumi.Input[_builtins.str] name: The resource name of the Dataset. This value is set by Google.
|
90
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
91
|
+
If it is not provided, the provider project is used.
|
92
|
+
:param pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs'] rag_managed_db_config: Required. The config of the RagManagedDb used by RagEngine.
|
93
|
+
Structure is documented below.
|
94
|
+
:param pulumi.Input[_builtins.str] region: The region of the RagEngineConfig. eg us-central1
|
95
|
+
"""
|
96
|
+
if name is not None:
|
97
|
+
pulumi.set(__self__, "name", name)
|
98
|
+
if project is not None:
|
99
|
+
pulumi.set(__self__, "project", project)
|
100
|
+
if rag_managed_db_config is not None:
|
101
|
+
pulumi.set(__self__, "rag_managed_db_config", rag_managed_db_config)
|
102
|
+
if region is not None:
|
103
|
+
pulumi.set(__self__, "region", region)
|
104
|
+
|
105
|
+
@_builtins.property
|
106
|
+
@pulumi.getter
|
107
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
108
|
+
"""
|
109
|
+
The resource name of the Dataset. This value is set by Google.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "name")
|
112
|
+
|
113
|
+
@name.setter
|
114
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
115
|
+
pulumi.set(self, "name", value)
|
116
|
+
|
117
|
+
@_builtins.property
|
118
|
+
@pulumi.getter
|
119
|
+
def project(self) -> Optional[pulumi.Input[_builtins.str]]:
|
120
|
+
"""
|
121
|
+
The ID of the project in which the resource belongs.
|
122
|
+
If it is not provided, the provider project is used.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "project")
|
125
|
+
|
126
|
+
@project.setter
|
127
|
+
def project(self, value: Optional[pulumi.Input[_builtins.str]]):
|
128
|
+
pulumi.set(self, "project", value)
|
129
|
+
|
130
|
+
@_builtins.property
|
131
|
+
@pulumi.getter(name="ragManagedDbConfig")
|
132
|
+
def rag_managed_db_config(self) -> Optional[pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs']]:
|
133
|
+
"""
|
134
|
+
Required. The config of the RagManagedDb used by RagEngine.
|
135
|
+
Structure is documented below.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "rag_managed_db_config")
|
138
|
+
|
139
|
+
@rag_managed_db_config.setter
|
140
|
+
def rag_managed_db_config(self, value: Optional[pulumi.Input['AiRagEngineConfigRagManagedDbConfigArgs']]):
|
141
|
+
pulumi.set(self, "rag_managed_db_config", value)
|
142
|
+
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter
|
145
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
146
|
+
"""
|
147
|
+
The region of the RagEngineConfig. eg us-central1
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "region")
|
150
|
+
|
151
|
+
@region.setter
|
152
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
153
|
+
pulumi.set(self, "region", value)
|
154
|
+
|
155
|
+
|
156
|
+
@pulumi.type_token("gcp:vertex/aiRagEngineConfig:AiRagEngineConfig")
|
157
|
+
class AiRagEngineConfig(pulumi.CustomResource):
|
158
|
+
@overload
|
159
|
+
def __init__(__self__,
|
160
|
+
resource_name: str,
|
161
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
162
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
163
|
+
rag_managed_db_config: Optional[pulumi.Input[Union['AiRagEngineConfigRagManagedDbConfigArgs', 'AiRagEngineConfigRagManagedDbConfigArgsDict']]] = None,
|
164
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
165
|
+
__props__=None):
|
166
|
+
"""
|
167
|
+
Vertex AI RAG Engine lets you scale your RagManagedDb instance based on your usage and performance requirements using a choice of two tiers, and optionally, lets you delete your Vertex AI RAG Engine data using a third tier. The tier is a project-level setting that's available in the RagEngineConfig resource that impacts all RAG corpora using RagManagedDb. The following tiers are available in RagEngineConfig: Basic, Scaled and Unprovisioned.
|
168
|
+
|
169
|
+
To get more information about RagEngineConfig, see:
|
170
|
+
|
171
|
+
* [API documentation](https://cloud.google.com/vertex-ai/generative-ai/docs/reference/rest/v1/RagEngineConfig)
|
172
|
+
* How-to Guides
|
173
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/understanding-ragmanageddb)
|
174
|
+
|
175
|
+
## Example Usage
|
176
|
+
|
177
|
+
## Import
|
178
|
+
|
179
|
+
RagEngineConfig can be imported using any of these accepted formats:
|
180
|
+
|
181
|
+
* `projects/{{project}}/locations/{{region}}/ragEngineConfig`
|
182
|
+
|
183
|
+
* `{{project}}/{{region}}`
|
184
|
+
|
185
|
+
* `{{region}}`
|
186
|
+
|
187
|
+
When using the `pulumi import` command, RagEngineConfig can be imported using one of the formats above. For example:
|
188
|
+
|
189
|
+
```sh
|
190
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default projects/{{project}}/locations/{{region}}/ragEngineConfig
|
191
|
+
```
|
192
|
+
|
193
|
+
```sh
|
194
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default {{project}}/{{region}}
|
195
|
+
```
|
196
|
+
|
197
|
+
```sh
|
198
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default {{region}}
|
199
|
+
```
|
200
|
+
|
201
|
+
:param str resource_name: The name of the resource.
|
202
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
203
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
204
|
+
If it is not provided, the provider project is used.
|
205
|
+
:param pulumi.Input[Union['AiRagEngineConfigRagManagedDbConfigArgs', 'AiRagEngineConfigRagManagedDbConfigArgsDict']] rag_managed_db_config: Required. The config of the RagManagedDb used by RagEngine.
|
206
|
+
Structure is documented below.
|
207
|
+
:param pulumi.Input[_builtins.str] region: The region of the RagEngineConfig. eg us-central1
|
208
|
+
"""
|
209
|
+
...
|
210
|
+
@overload
|
211
|
+
def __init__(__self__,
|
212
|
+
resource_name: str,
|
213
|
+
args: AiRagEngineConfigArgs,
|
214
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
215
|
+
"""
|
216
|
+
Vertex AI RAG Engine lets you scale your RagManagedDb instance based on your usage and performance requirements using a choice of two tiers, and optionally, lets you delete your Vertex AI RAG Engine data using a third tier. The tier is a project-level setting that's available in the RagEngineConfig resource that impacts all RAG corpora using RagManagedDb. The following tiers are available in RagEngineConfig: Basic, Scaled and Unprovisioned.
|
217
|
+
|
218
|
+
To get more information about RagEngineConfig, see:
|
219
|
+
|
220
|
+
* [API documentation](https://cloud.google.com/vertex-ai/generative-ai/docs/reference/rest/v1/RagEngineConfig)
|
221
|
+
* How-to Guides
|
222
|
+
* [Official Documentation](https://cloud.google.com/vertex-ai/generative-ai/docs/rag-engine/understanding-ragmanageddb)
|
223
|
+
|
224
|
+
## Example Usage
|
225
|
+
|
226
|
+
## Import
|
227
|
+
|
228
|
+
RagEngineConfig can be imported using any of these accepted formats:
|
229
|
+
|
230
|
+
* `projects/{{project}}/locations/{{region}}/ragEngineConfig`
|
231
|
+
|
232
|
+
* `{{project}}/{{region}}`
|
233
|
+
|
234
|
+
* `{{region}}`
|
235
|
+
|
236
|
+
When using the `pulumi import` command, RagEngineConfig can be imported using one of the formats above. For example:
|
237
|
+
|
238
|
+
```sh
|
239
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default projects/{{project}}/locations/{{region}}/ragEngineConfig
|
240
|
+
```
|
241
|
+
|
242
|
+
```sh
|
243
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default {{project}}/{{region}}
|
244
|
+
```
|
245
|
+
|
246
|
+
```sh
|
247
|
+
$ pulumi import gcp:vertex/aiRagEngineConfig:AiRagEngineConfig default {{region}}
|
248
|
+
```
|
249
|
+
|
250
|
+
:param str resource_name: The name of the resource.
|
251
|
+
:param AiRagEngineConfigArgs args: The arguments to use to populate this resource's properties.
|
252
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
253
|
+
"""
|
254
|
+
...
|
255
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
256
|
+
resource_args, opts = _utilities.get_resource_args_opts(AiRagEngineConfigArgs, pulumi.ResourceOptions, *args, **kwargs)
|
257
|
+
if resource_args is not None:
|
258
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
259
|
+
else:
|
260
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
261
|
+
|
262
|
+
def _internal_init(__self__,
|
263
|
+
resource_name: str,
|
264
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
265
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
266
|
+
rag_managed_db_config: Optional[pulumi.Input[Union['AiRagEngineConfigRagManagedDbConfigArgs', 'AiRagEngineConfigRagManagedDbConfigArgsDict']]] = None,
|
267
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
268
|
+
__props__=None):
|
269
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
270
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
271
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
272
|
+
if opts.id is None:
|
273
|
+
if __props__ is not None:
|
274
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
275
|
+
__props__ = AiRagEngineConfigArgs.__new__(AiRagEngineConfigArgs)
|
276
|
+
|
277
|
+
__props__.__dict__["project"] = project
|
278
|
+
if rag_managed_db_config is None and not opts.urn:
|
279
|
+
raise TypeError("Missing required property 'rag_managed_db_config'")
|
280
|
+
__props__.__dict__["rag_managed_db_config"] = rag_managed_db_config
|
281
|
+
__props__.__dict__["region"] = region
|
282
|
+
__props__.__dict__["name"] = None
|
283
|
+
super(AiRagEngineConfig, __self__).__init__(
|
284
|
+
'gcp:vertex/aiRagEngineConfig:AiRagEngineConfig',
|
285
|
+
resource_name,
|
286
|
+
__props__,
|
287
|
+
opts)
|
288
|
+
|
289
|
+
@staticmethod
|
290
|
+
def get(resource_name: str,
|
291
|
+
id: pulumi.Input[str],
|
292
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
293
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
294
|
+
project: Optional[pulumi.Input[_builtins.str]] = None,
|
295
|
+
rag_managed_db_config: Optional[pulumi.Input[Union['AiRagEngineConfigRagManagedDbConfigArgs', 'AiRagEngineConfigRagManagedDbConfigArgsDict']]] = None,
|
296
|
+
region: Optional[pulumi.Input[_builtins.str]] = None) -> 'AiRagEngineConfig':
|
297
|
+
"""
|
298
|
+
Get an existing AiRagEngineConfig resource's state with the given name, id, and optional extra
|
299
|
+
properties used to qualify the lookup.
|
300
|
+
|
301
|
+
:param str resource_name: The unique name of the resulting resource.
|
302
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
303
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
304
|
+
:param pulumi.Input[_builtins.str] name: The resource name of the Dataset. This value is set by Google.
|
305
|
+
:param pulumi.Input[_builtins.str] project: The ID of the project in which the resource belongs.
|
306
|
+
If it is not provided, the provider project is used.
|
307
|
+
:param pulumi.Input[Union['AiRagEngineConfigRagManagedDbConfigArgs', 'AiRagEngineConfigRagManagedDbConfigArgsDict']] rag_managed_db_config: Required. The config of the RagManagedDb used by RagEngine.
|
308
|
+
Structure is documented below.
|
309
|
+
:param pulumi.Input[_builtins.str] region: The region of the RagEngineConfig. eg us-central1
|
310
|
+
"""
|
311
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
312
|
+
|
313
|
+
__props__ = _AiRagEngineConfigState.__new__(_AiRagEngineConfigState)
|
314
|
+
|
315
|
+
__props__.__dict__["name"] = name
|
316
|
+
__props__.__dict__["project"] = project
|
317
|
+
__props__.__dict__["rag_managed_db_config"] = rag_managed_db_config
|
318
|
+
__props__.__dict__["region"] = region
|
319
|
+
return AiRagEngineConfig(resource_name, opts=opts, __props__=__props__)
|
320
|
+
|
321
|
+
@_builtins.property
|
322
|
+
@pulumi.getter
|
323
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
324
|
+
"""
|
325
|
+
The resource name of the Dataset. This value is set by Google.
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "name")
|
328
|
+
|
329
|
+
@_builtins.property
|
330
|
+
@pulumi.getter
|
331
|
+
def project(self) -> pulumi.Output[_builtins.str]:
|
332
|
+
"""
|
333
|
+
The ID of the project in which the resource belongs.
|
334
|
+
If it is not provided, the provider project is used.
|
335
|
+
"""
|
336
|
+
return pulumi.get(self, "project")
|
337
|
+
|
338
|
+
@_builtins.property
|
339
|
+
@pulumi.getter(name="ragManagedDbConfig")
|
340
|
+
def rag_managed_db_config(self) -> pulumi.Output['outputs.AiRagEngineConfigRagManagedDbConfig']:
|
341
|
+
"""
|
342
|
+
Required. The config of the RagManagedDb used by RagEngine.
|
343
|
+
Structure is documented below.
|
344
|
+
"""
|
345
|
+
return pulumi.get(self, "rag_managed_db_config")
|
346
|
+
|
347
|
+
@_builtins.property
|
348
|
+
@pulumi.getter
|
349
|
+
def region(self) -> pulumi.Output[_builtins.str]:
|
350
|
+
"""
|
351
|
+
The region of the RagEngineConfig. eg us-central1
|
352
|
+
"""
|
353
|
+
return pulumi.get(self, "region")
|
354
|
+
|
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -111,6 +111,10 @@ __all__ = [
|
|
111
111
|
'AiIndexMetadataConfigAlgorithmConfigTreeAhConfig',
|
112
112
|
'AiMetadataStoreEncryptionSpec',
|
113
113
|
'AiMetadataStoreState',
|
114
|
+
'AiRagEngineConfigRagManagedDbConfig',
|
115
|
+
'AiRagEngineConfigRagManagedDbConfigBasic',
|
116
|
+
'AiRagEngineConfigRagManagedDbConfigScaled',
|
117
|
+
'AiRagEngineConfigRagManagedDbConfigUnprovisioned',
|
114
118
|
'AiTensorboardEncryptionSpec',
|
115
119
|
'GetAiIndexDeployedIndexResult',
|
116
120
|
'GetAiIndexIndexStatResult',
|
@@ -6018,6 +6022,71 @@ class AiMetadataStoreState(dict):
|
|
6018
6022
|
return pulumi.get(self, "disk_utilization_bytes")
|
6019
6023
|
|
6020
6024
|
|
6025
|
+
@pulumi.output_type
|
6026
|
+
class AiRagEngineConfigRagManagedDbConfig(dict):
|
6027
|
+
def __init__(__self__, *,
|
6028
|
+
basic: Optional['outputs.AiRagEngineConfigRagManagedDbConfigBasic'] = None,
|
6029
|
+
scaled: Optional['outputs.AiRagEngineConfigRagManagedDbConfigScaled'] = None,
|
6030
|
+
unprovisioned: Optional['outputs.AiRagEngineConfigRagManagedDbConfigUnprovisioned'] = None):
|
6031
|
+
"""
|
6032
|
+
:param 'AiRagEngineConfigRagManagedDbConfigBasicArgs' basic: Basic tier is a cost-effective and low compute tier suitable for the following cases: Experimenting with RagManagedDb, Small data size, Latency insensitive workload, Only using RAG Engine with external vector DBs.
|
6033
|
+
NOTE: This is the default tier if not explicitly chosen.
|
6034
|
+
:param 'AiRagEngineConfigRagManagedDbConfigScaledArgs' scaled: Scaled tier offers production grade performance along with autoscaling functionality. It is suitable for customers with large amounts of data or performance sensitive workloads.
|
6035
|
+
:param 'AiRagEngineConfigRagManagedDbConfigUnprovisionedArgs' unprovisioned: Disables the RAG Engine service and deletes all your data held within this service. This will halt the billing of the service.
|
6036
|
+
NOTE: Once deleted the data cannot be recovered. To start using RAG Engine again, you will need to update the tier by calling the UpdateRagEngineConfig API.
|
6037
|
+
"""
|
6038
|
+
if basic is not None:
|
6039
|
+
pulumi.set(__self__, "basic", basic)
|
6040
|
+
if scaled is not None:
|
6041
|
+
pulumi.set(__self__, "scaled", scaled)
|
6042
|
+
if unprovisioned is not None:
|
6043
|
+
pulumi.set(__self__, "unprovisioned", unprovisioned)
|
6044
|
+
|
6045
|
+
@_builtins.property
|
6046
|
+
@pulumi.getter
|
6047
|
+
def basic(self) -> Optional['outputs.AiRagEngineConfigRagManagedDbConfigBasic']:
|
6048
|
+
"""
|
6049
|
+
Basic tier is a cost-effective and low compute tier suitable for the following cases: Experimenting with RagManagedDb, Small data size, Latency insensitive workload, Only using RAG Engine with external vector DBs.
|
6050
|
+
NOTE: This is the default tier if not explicitly chosen.
|
6051
|
+
"""
|
6052
|
+
return pulumi.get(self, "basic")
|
6053
|
+
|
6054
|
+
@_builtins.property
|
6055
|
+
@pulumi.getter
|
6056
|
+
def scaled(self) -> Optional['outputs.AiRagEngineConfigRagManagedDbConfigScaled']:
|
6057
|
+
"""
|
6058
|
+
Scaled tier offers production grade performance along with autoscaling functionality. It is suitable for customers with large amounts of data or performance sensitive workloads.
|
6059
|
+
"""
|
6060
|
+
return pulumi.get(self, "scaled")
|
6061
|
+
|
6062
|
+
@_builtins.property
|
6063
|
+
@pulumi.getter
|
6064
|
+
def unprovisioned(self) -> Optional['outputs.AiRagEngineConfigRagManagedDbConfigUnprovisioned']:
|
6065
|
+
"""
|
6066
|
+
Disables the RAG Engine service and deletes all your data held within this service. This will halt the billing of the service.
|
6067
|
+
NOTE: Once deleted the data cannot be recovered. To start using RAG Engine again, you will need to update the tier by calling the UpdateRagEngineConfig API.
|
6068
|
+
"""
|
6069
|
+
return pulumi.get(self, "unprovisioned")
|
6070
|
+
|
6071
|
+
|
6072
|
+
@pulumi.output_type
|
6073
|
+
class AiRagEngineConfigRagManagedDbConfigBasic(dict):
|
6074
|
+
def __init__(__self__):
|
6075
|
+
pass
|
6076
|
+
|
6077
|
+
|
6078
|
+
@pulumi.output_type
|
6079
|
+
class AiRagEngineConfigRagManagedDbConfigScaled(dict):
|
6080
|
+
def __init__(__self__):
|
6081
|
+
pass
|
6082
|
+
|
6083
|
+
|
6084
|
+
@pulumi.output_type
|
6085
|
+
class AiRagEngineConfigRagManagedDbConfigUnprovisioned(dict):
|
6086
|
+
def __init__(__self__):
|
6087
|
+
pass
|
6088
|
+
|
6089
|
+
|
6021
6090
|
@pulumi.output_type
|
6022
6091
|
class AiTensorboardEncryptionSpec(dict):
|
6023
6092
|
@staticmethod
|