vellum-ai 0.7.7__py3-none-any.whl → 0.7.9__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.
- vellum/core/client_wrapper.py +1 -1
- vellum/resources/ml_models/client.py +18 -14
- vellum/terraform/__init__.py +2 -0
- vellum/terraform/_jsii/vellum-ai_vellum@0.0.0.jsii.tgz +0 -0
- vellum/terraform/data_vellum_document_index/__init__.py +10 -10
- vellum/terraform/data_vellum_ml_model/__init__.py +409 -0
- vellum/terraform/document_index/__init__.py +16 -16
- vellum/terraform/ml_model/__init__.py +806 -0
- vellum/terraform/provider/__init__.py +13 -13
- vellum/terraform/versions.json +1 -1
- vellum/types/ml_model_exec_config.py +0 -1
- vellum/types/ml_model_exec_config_request.py +0 -1
- {vellum_ai-0.7.7.dist-info → vellum_ai-0.7.9.dist-info}/METADATA +1 -1
- {vellum_ai-0.7.7.dist-info → vellum_ai-0.7.9.dist-info}/RECORD +16 -14
- {vellum_ai-0.7.7.dist-info → vellum_ai-0.7.9.dist-info}/LICENSE +0 -0
- {vellum_ai-0.7.7.dist-info → vellum_ai-0.7.9.dist-info}/WHEEL +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
'''
|
2
2
|
# `vellum_document_index`
|
3
3
|
|
4
|
-
Refer to the Terraform Registry for docs: [`vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
4
|
+
Refer to the Terraform Registry for docs: [`vellum_document_index`](https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index).
|
5
5
|
'''
|
6
6
|
from pkgutil import extend_path
|
7
7
|
__path__ = extend_path(__path__, __name__)
|
@@ -29,7 +29,7 @@ class DocumentIndex(
|
|
29
29
|
metaclass=jsii.JSIIMeta,
|
30
30
|
jsii_type="vellum-ai_vellum.documentIndex.DocumentIndex",
|
31
31
|
):
|
32
|
-
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
32
|
+
'''Represents a {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index vellum_document_index}.'''
|
33
33
|
|
34
34
|
def __init__(
|
35
35
|
self,
|
@@ -48,14 +48,14 @@ class DocumentIndex(
|
|
48
48
|
provider: typing.Optional[_cdktf_9a9027ec.TerraformProvider] = None,
|
49
49
|
provisioners: typing.Optional[typing.Sequence[typing.Union[typing.Union[_cdktf_9a9027ec.FileProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.LocalExecProvisioner, typing.Dict[builtins.str, typing.Any]], typing.Union[_cdktf_9a9027ec.RemoteExecProvisioner, typing.Dict[builtins.str, typing.Any]]]]] = None,
|
50
50
|
) -> None:
|
51
|
-
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
51
|
+
'''Create a new {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index vellum_document_index} Resource.
|
52
52
|
|
53
53
|
:param scope: The scope in which to define this construct.
|
54
54
|
:param id: The scoped construct ID. Must be unique amongst siblings in the same scope
|
55
|
-
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
56
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
57
|
-
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
58
|
-
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
55
|
+
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#label DocumentIndex#label}
|
56
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#name DocumentIndex#name}
|
57
|
+
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#environment DocumentIndex#environment}
|
58
|
+
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#status DocumentIndex#status}
|
59
59
|
:param connection:
|
60
60
|
:param count:
|
61
61
|
:param depends_on:
|
@@ -97,7 +97,7 @@ class DocumentIndex(
|
|
97
97
|
|
98
98
|
:param scope: The scope in which to define this construct.
|
99
99
|
:param import_to_id: The construct id used in the generated config for the DocumentIndex to import.
|
100
|
-
:param import_from_id: The id of the existing DocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
100
|
+
:param import_from_id: The id of the existing DocumentIndex that should be imported. Refer to the {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#import import section} in the documentation of this resource for the id to use
|
101
101
|
:param provider: ? Optional instance of the provider where the DocumentIndex to import is found.
|
102
102
|
'''
|
103
103
|
if __debug__:
|
@@ -249,10 +249,10 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
249
249
|
:param lifecycle:
|
250
250
|
:param provider:
|
251
251
|
:param provisioners:
|
252
|
-
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
253
|
-
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
254
|
-
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
255
|
-
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
252
|
+
:param label: A human-readable label for the Document Index. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#label DocumentIndex#label}
|
253
|
+
:param name: A name that uniquely identifies this index within its workspace. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#name DocumentIndex#name}
|
254
|
+
:param environment: The environment this document index is used in. - ``DEVELOPMENT`` - Development - ``STAGING`` - Staging - ``PRODUCTION`` - Production Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#environment DocumentIndex#environment}
|
255
|
+
:param status: The current status of the document index. - ``ACTIVE`` - Active - ``ARCHIVED`` - Archived Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#status DocumentIndex#status}
|
256
256
|
'''
|
257
257
|
if isinstance(lifecycle, dict):
|
258
258
|
lifecycle = _cdktf_9a9027ec.TerraformResourceLifecycle(**lifecycle)
|
@@ -360,7 +360,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
360
360
|
def label(self) -> builtins.str:
|
361
361
|
'''A human-readable label for the Document Index.
|
362
362
|
|
363
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
363
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#label DocumentIndex#label}
|
364
364
|
'''
|
365
365
|
result = self._values.get("label")
|
366
366
|
assert result is not None, "Required property 'label' is missing"
|
@@ -370,7 +370,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
370
370
|
def name(self) -> builtins.str:
|
371
371
|
'''A name that uniquely identifies this index within its workspace.
|
372
372
|
|
373
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
373
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#name DocumentIndex#name}
|
374
374
|
'''
|
375
375
|
result = self._values.get("name")
|
376
376
|
assert result is not None, "Required property 'name' is missing"
|
@@ -384,7 +384,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
384
384
|
- ``STAGING`` - Staging
|
385
385
|
- ``PRODUCTION`` - Production
|
386
386
|
|
387
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
387
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#environment DocumentIndex#environment}
|
388
388
|
'''
|
389
389
|
result = self._values.get("environment")
|
390
390
|
return typing.cast(typing.Optional[builtins.str], result)
|
@@ -396,7 +396,7 @@ class DocumentIndexConfig(_cdktf_9a9027ec.TerraformMetaArguments):
|
|
396
396
|
- ``ACTIVE`` - Active
|
397
397
|
- ``ARCHIVED`` - Archived
|
398
398
|
|
399
|
-
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.
|
399
|
+
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vellum-ai/vellum/0.0.7/docs/resources/document_index#status DocumentIndex#status}
|
400
400
|
'''
|
401
401
|
result = self._values.get("status")
|
402
402
|
return typing.cast(typing.Optional[builtins.str], result)
|