pulumi-datarobot 0.5.4__tar.gz
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_datarobot-0.5.4/PKG-INFO +124 -0
- pulumi_datarobot-0.5.4/README.md +111 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/__init__.py +288 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/_inputs.py +4776 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/_utilities.py +327 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/api_token_credential.py +265 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/application_source.py +550 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/aws_credential.py +413 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/basic_credential.py +319 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/batch_prediction_job_definition.py +1282 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/config/__init__.py +8 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/config/vars.py +43 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/custom_application.py +435 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/custom_job.py +679 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/custom_metric_from_job.py +648 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/custom_metric_job.py +873 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/custom_model.py +1654 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/dataset_from_datasource.py +515 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/dataset_from_file.py +297 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/dataset_from_url.py +269 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/datasource.py +249 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/datastore.py +469 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/deployment.py +983 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/deployment_retraining_policy.py +624 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/execution_environment.py +470 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/get_execution_environment.py +154 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/get_global_model.py +126 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/google_cloud_credential.py +274 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/llm_blueprint.py +541 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/outputs.py +3686 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/playground.py +267 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/prediction_environment.py +567 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/provider.py +169 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/pulumi-plugin.json +5 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/py.typed +0 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/qa_application.py +440 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/registered_model.py +411 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/registered_model_from_leaderboard.py +508 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/remote_repository.py +525 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/use_case.py +217 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot/vector_database.py +343 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/PKG-INFO +124 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/SOURCES.txt +47 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/dependency_links.txt +1 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/not-zip-safe +1 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/requires.txt +6 -0
- pulumi_datarobot-0.5.4/pulumi_datarobot.egg-info/top_level.txt +1 -0
- pulumi_datarobot-0.5.4/setup.cfg +4 -0
- pulumi_datarobot-0.5.4/setup.py +45 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pulumi_datarobot
|
3
|
+
Version: 0.5.4
|
4
|
+
Summary: A Pulumi package for creating and managing DataRobot resources.
|
5
|
+
Home-page: https://www.datarobot.com
|
6
|
+
License: Apache-2.0
|
7
|
+
Project-URL: Repository, https://github.com/datarobot-community/pulumi-datarobot
|
8
|
+
Keywords: datarobot ai category/cloud
|
9
|
+
Platform: UNKNOWN
|
10
|
+
Requires-Python: >=3.9
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
|
13
|
+
# DataRobot Resource Provider
|
14
|
+
|
15
|
+
The DataRobot Resource Provider lets you manage [DataRobot](https://www.datarobot.com/) resources.
|
16
|
+
The provider is built on [terraform-provider-datarobot](https://github.com/datarobot-community/terraform-provider-datarobot).
|
17
|
+
To use this package, please install the [Pulumi CLI](https://pulumi.io/) first.
|
18
|
+
|
19
|
+
## Installing
|
20
|
+
|
21
|
+
This package is available for several languages/platforms:
|
22
|
+
|
23
|
+
- Python: [`pulumi-datarobot`](https://pypi.org/project/pulumi-datarobot/)
|
24
|
+
- JavaScript/TypeScript: [`@datarobot/pulumi-datarobot`](https://www.npmjs.com/package/@datarobot/pulumi-datarobot)
|
25
|
+
- Go: [`github.com/datarobot-community/pulumi-datarobot/sdk`](https://pkg.go.dev/github.com/datarobot-community/pulumi-datarobot/sdk)
|
26
|
+
- .NET: [`DataRobotPulumi.Datarobot`](https://www.nuget.org/packages/DataRobotPulumi.Datarobot)
|
27
|
+
|
28
|
+
### Python
|
29
|
+
|
30
|
+
To use from Python, install using `pip`:
|
31
|
+
|
32
|
+
```bash
|
33
|
+
pip install pulumi_datarobot
|
34
|
+
```
|
35
|
+
|
36
|
+
### Javscript/Typescript
|
37
|
+
|
38
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
39
|
+
|
40
|
+
```bash
|
41
|
+
npm install @datarobot/pulumi-datarobot
|
42
|
+
```
|
43
|
+
|
44
|
+
or `yarn`:
|
45
|
+
|
46
|
+
```bash
|
47
|
+
yarn add @datarobot/pulumi-datarobot
|
48
|
+
```
|
49
|
+
|
50
|
+
### Go
|
51
|
+
|
52
|
+
```
|
53
|
+
go get github.com/datarobot-community/pulumi-datarobot/sdk/go/...
|
54
|
+
```
|
55
|
+
|
56
|
+
### .NET
|
57
|
+
|
58
|
+
To use from .NET, install using `dotnet add package`:
|
59
|
+
|
60
|
+
```
|
61
|
+
dotnet add package DataRobotPulumi.Datarobot
|
62
|
+
```
|
63
|
+
|
64
|
+
### YAML
|
65
|
+
|
66
|
+
No install necessary, just run `pulumi up`.
|
67
|
+
|
68
|
+
## Configuration
|
69
|
+
|
70
|
+
The following configuration points are available for the DataRobot provider:
|
71
|
+
|
72
|
+
- `datarobot:apikey` (environment: `DATAROBOT_API_TOKEN`) - the API key for DataRobot
|
73
|
+
- `datarobot:endpoint` (environment: `DATAROBOT_ENDPOINT`) - the endpoint for DataRobot
|
74
|
+
|
75
|
+
## Examples
|
76
|
+
|
77
|
+
See [datarobot-pulumi examples](https://github.com/datarobot-community/pulumi-datarobot/tree/main/examples)
|
78
|
+
|
79
|
+
## Air-Gapped Environments
|
80
|
+
|
81
|
+
Keep the following items in mind if running in an air-gapped environment:
|
82
|
+
|
83
|
+
- Run `pulumi login --local` to store state files on your local filesystem, instead of the default Pulumi Cloud. Pulumi binaries are available [here](https://www.pulumi.com/docs/iac/download-install/).
|
84
|
+
- Set `DATAROBOT_ENDPOINT`: https://{datarobot.example.com}/api/v2
|
85
|
+
(replacing {datarobot.example.com} with your specific deployment endpoint)
|
86
|
+
- For Python, the [pulumi](https://pypi.org/project/pulumi/) and [pulumi-datarobot](https://pypi.org/project/pulumi-datarobot/) packages must be installed in the air-gapped system.
|
87
|
+
|
88
|
+
Example using `pip wheel`:
|
89
|
+
|
90
|
+
1. create a directory where you want to store package wheels.
|
91
|
+
|
92
|
+
```bash
|
93
|
+
mkdir folder_containing_wheel
|
94
|
+
```
|
95
|
+
|
96
|
+
2. Now install wheels of the python library you want to install
|
97
|
+
|
98
|
+
```bash
|
99
|
+
pip wheel pulumi-datarobot -w folder_containing_wheel
|
100
|
+
```
|
101
|
+
|
102
|
+
This will store all your required dependent wheels of the `pulumi-datarobot` package in the folder. you can check it with doing ls -ltr`.
|
103
|
+
|
104
|
+
3. Now, you can make a tar file of this folder.
|
105
|
+
|
106
|
+
```bash
|
107
|
+
tar cf folder_containing_wheel.tar folder_containing_wheel/
|
108
|
+
```
|
109
|
+
|
110
|
+
and you can transfer it to your air-gapped system.
|
111
|
+
|
112
|
+
Now untar the folder.
|
113
|
+
|
114
|
+
```bash
|
115
|
+
tar xf folder_containing_wheel.tar
|
116
|
+
cd folder_containing_wheel/
|
117
|
+
```
|
118
|
+
|
119
|
+
now install wheels from the folder.
|
120
|
+
|
121
|
+
```bash
|
122
|
+
pip install * -f ./ --no-index
|
123
|
+
```
|
124
|
+
|
@@ -0,0 +1,111 @@
|
|
1
|
+
# DataRobot Resource Provider
|
2
|
+
|
3
|
+
The DataRobot Resource Provider lets you manage [DataRobot](https://www.datarobot.com/) resources.
|
4
|
+
The provider is built on [terraform-provider-datarobot](https://github.com/datarobot-community/terraform-provider-datarobot).
|
5
|
+
To use this package, please install the [Pulumi CLI](https://pulumi.io/) first.
|
6
|
+
|
7
|
+
## Installing
|
8
|
+
|
9
|
+
This package is available for several languages/platforms:
|
10
|
+
|
11
|
+
- Python: [`pulumi-datarobot`](https://pypi.org/project/pulumi-datarobot/)
|
12
|
+
- JavaScript/TypeScript: [`@datarobot/pulumi-datarobot`](https://www.npmjs.com/package/@datarobot/pulumi-datarobot)
|
13
|
+
- Go: [`github.com/datarobot-community/pulumi-datarobot/sdk`](https://pkg.go.dev/github.com/datarobot-community/pulumi-datarobot/sdk)
|
14
|
+
- .NET: [`DataRobotPulumi.Datarobot`](https://www.nuget.org/packages/DataRobotPulumi.Datarobot)
|
15
|
+
|
16
|
+
### Python
|
17
|
+
|
18
|
+
To use from Python, install using `pip`:
|
19
|
+
|
20
|
+
```bash
|
21
|
+
pip install pulumi_datarobot
|
22
|
+
```
|
23
|
+
|
24
|
+
### Javscript/Typescript
|
25
|
+
|
26
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
27
|
+
|
28
|
+
```bash
|
29
|
+
npm install @datarobot/pulumi-datarobot
|
30
|
+
```
|
31
|
+
|
32
|
+
or `yarn`:
|
33
|
+
|
34
|
+
```bash
|
35
|
+
yarn add @datarobot/pulumi-datarobot
|
36
|
+
```
|
37
|
+
|
38
|
+
### Go
|
39
|
+
|
40
|
+
```
|
41
|
+
go get github.com/datarobot-community/pulumi-datarobot/sdk/go/...
|
42
|
+
```
|
43
|
+
|
44
|
+
### .NET
|
45
|
+
|
46
|
+
To use from .NET, install using `dotnet add package`:
|
47
|
+
|
48
|
+
```
|
49
|
+
dotnet add package DataRobotPulumi.Datarobot
|
50
|
+
```
|
51
|
+
|
52
|
+
### YAML
|
53
|
+
|
54
|
+
No install necessary, just run `pulumi up`.
|
55
|
+
|
56
|
+
## Configuration
|
57
|
+
|
58
|
+
The following configuration points are available for the DataRobot provider:
|
59
|
+
|
60
|
+
- `datarobot:apikey` (environment: `DATAROBOT_API_TOKEN`) - the API key for DataRobot
|
61
|
+
- `datarobot:endpoint` (environment: `DATAROBOT_ENDPOINT`) - the endpoint for DataRobot
|
62
|
+
|
63
|
+
## Examples
|
64
|
+
|
65
|
+
See [datarobot-pulumi examples](https://github.com/datarobot-community/pulumi-datarobot/tree/main/examples)
|
66
|
+
|
67
|
+
## Air-Gapped Environments
|
68
|
+
|
69
|
+
Keep the following items in mind if running in an air-gapped environment:
|
70
|
+
|
71
|
+
- Run `pulumi login --local` to store state files on your local filesystem, instead of the default Pulumi Cloud. Pulumi binaries are available [here](https://www.pulumi.com/docs/iac/download-install/).
|
72
|
+
- Set `DATAROBOT_ENDPOINT`: https://{datarobot.example.com}/api/v2
|
73
|
+
(replacing {datarobot.example.com} with your specific deployment endpoint)
|
74
|
+
- For Python, the [pulumi](https://pypi.org/project/pulumi/) and [pulumi-datarobot](https://pypi.org/project/pulumi-datarobot/) packages must be installed in the air-gapped system.
|
75
|
+
|
76
|
+
Example using `pip wheel`:
|
77
|
+
|
78
|
+
1. create a directory where you want to store package wheels.
|
79
|
+
|
80
|
+
```bash
|
81
|
+
mkdir folder_containing_wheel
|
82
|
+
```
|
83
|
+
|
84
|
+
2. Now install wheels of the python library you want to install
|
85
|
+
|
86
|
+
```bash
|
87
|
+
pip wheel pulumi-datarobot -w folder_containing_wheel
|
88
|
+
```
|
89
|
+
|
90
|
+
This will store all your required dependent wheels of the `pulumi-datarobot` package in the folder. you can check it with doing ls -ltr`.
|
91
|
+
|
92
|
+
3. Now, you can make a tar file of this folder.
|
93
|
+
|
94
|
+
```bash
|
95
|
+
tar cf folder_containing_wheel.tar folder_containing_wheel/
|
96
|
+
```
|
97
|
+
|
98
|
+
and you can transfer it to your air-gapped system.
|
99
|
+
|
100
|
+
Now untar the folder.
|
101
|
+
|
102
|
+
```bash
|
103
|
+
tar xf folder_containing_wheel.tar
|
104
|
+
cd folder_containing_wheel/
|
105
|
+
```
|
106
|
+
|
107
|
+
now install wheels from the folder.
|
108
|
+
|
109
|
+
```bash
|
110
|
+
pip install * -f ./ --no-index
|
111
|
+
```
|
@@ -0,0 +1,288 @@
|
|
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
|
+
from . import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .api_token_credential import *
|
9
|
+
from .application_source import *
|
10
|
+
from .aws_credential import *
|
11
|
+
from .basic_credential import *
|
12
|
+
from .batch_prediction_job_definition import *
|
13
|
+
from .custom_application import *
|
14
|
+
from .custom_job import *
|
15
|
+
from .custom_metric_from_job import *
|
16
|
+
from .custom_metric_job import *
|
17
|
+
from .custom_model import *
|
18
|
+
from .dataset_from_datasource import *
|
19
|
+
from .dataset_from_file import *
|
20
|
+
from .dataset_from_url import *
|
21
|
+
from .datasource import *
|
22
|
+
from .datastore import *
|
23
|
+
from .deployment import *
|
24
|
+
from .deployment_retraining_policy import *
|
25
|
+
from .execution_environment import *
|
26
|
+
from .get_execution_environment import *
|
27
|
+
from .get_global_model import *
|
28
|
+
from .google_cloud_credential import *
|
29
|
+
from .llm_blueprint import *
|
30
|
+
from .playground import *
|
31
|
+
from .prediction_environment import *
|
32
|
+
from .provider import *
|
33
|
+
from .qa_application import *
|
34
|
+
from .registered_model import *
|
35
|
+
from .registered_model_from_leaderboard import *
|
36
|
+
from .remote_repository import *
|
37
|
+
from .use_case import *
|
38
|
+
from .vector_database import *
|
39
|
+
from ._inputs import *
|
40
|
+
from . import outputs
|
41
|
+
|
42
|
+
# Make subpackages available:
|
43
|
+
if typing.TYPE_CHECKING:
|
44
|
+
import pulumi_datarobot.config as __config
|
45
|
+
config = __config
|
46
|
+
else:
|
47
|
+
config = _utilities.lazy_import('pulumi_datarobot.config')
|
48
|
+
|
49
|
+
_utilities.register(
|
50
|
+
resource_modules="""
|
51
|
+
[
|
52
|
+
{
|
53
|
+
"pkg": "datarobot",
|
54
|
+
"mod": "index/apiTokenCredential",
|
55
|
+
"fqn": "pulumi_datarobot",
|
56
|
+
"classes": {
|
57
|
+
"datarobot:index/apiTokenCredential:ApiTokenCredential": "ApiTokenCredential"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"pkg": "datarobot",
|
62
|
+
"mod": "index/applicationSource",
|
63
|
+
"fqn": "pulumi_datarobot",
|
64
|
+
"classes": {
|
65
|
+
"datarobot:index/applicationSource:ApplicationSource": "ApplicationSource"
|
66
|
+
}
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"pkg": "datarobot",
|
70
|
+
"mod": "index/awsCredential",
|
71
|
+
"fqn": "pulumi_datarobot",
|
72
|
+
"classes": {
|
73
|
+
"datarobot:index/awsCredential:AwsCredential": "AwsCredential"
|
74
|
+
}
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"pkg": "datarobot",
|
78
|
+
"mod": "index/basicCredential",
|
79
|
+
"fqn": "pulumi_datarobot",
|
80
|
+
"classes": {
|
81
|
+
"datarobot:index/basicCredential:BasicCredential": "BasicCredential"
|
82
|
+
}
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"pkg": "datarobot",
|
86
|
+
"mod": "index/batchPredictionJobDefinition",
|
87
|
+
"fqn": "pulumi_datarobot",
|
88
|
+
"classes": {
|
89
|
+
"datarobot:index/batchPredictionJobDefinition:BatchPredictionJobDefinition": "BatchPredictionJobDefinition"
|
90
|
+
}
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"pkg": "datarobot",
|
94
|
+
"mod": "index/customApplication",
|
95
|
+
"fqn": "pulumi_datarobot",
|
96
|
+
"classes": {
|
97
|
+
"datarobot:index/customApplication:CustomApplication": "CustomApplication"
|
98
|
+
}
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"pkg": "datarobot",
|
102
|
+
"mod": "index/customJob",
|
103
|
+
"fqn": "pulumi_datarobot",
|
104
|
+
"classes": {
|
105
|
+
"datarobot:index/customJob:CustomJob": "CustomJob"
|
106
|
+
}
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"pkg": "datarobot",
|
110
|
+
"mod": "index/customMetricFromJob",
|
111
|
+
"fqn": "pulumi_datarobot",
|
112
|
+
"classes": {
|
113
|
+
"datarobot:index/customMetricFromJob:CustomMetricFromJob": "CustomMetricFromJob"
|
114
|
+
}
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"pkg": "datarobot",
|
118
|
+
"mod": "index/customMetricJob",
|
119
|
+
"fqn": "pulumi_datarobot",
|
120
|
+
"classes": {
|
121
|
+
"datarobot:index/customMetricJob:CustomMetricJob": "CustomMetricJob"
|
122
|
+
}
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"pkg": "datarobot",
|
126
|
+
"mod": "index/customModel",
|
127
|
+
"fqn": "pulumi_datarobot",
|
128
|
+
"classes": {
|
129
|
+
"datarobot:index/customModel:CustomModel": "CustomModel"
|
130
|
+
}
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"pkg": "datarobot",
|
134
|
+
"mod": "index/datasetFromDatasource",
|
135
|
+
"fqn": "pulumi_datarobot",
|
136
|
+
"classes": {
|
137
|
+
"datarobot:index/datasetFromDatasource:DatasetFromDatasource": "DatasetFromDatasource"
|
138
|
+
}
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"pkg": "datarobot",
|
142
|
+
"mod": "index/datasetFromFile",
|
143
|
+
"fqn": "pulumi_datarobot",
|
144
|
+
"classes": {
|
145
|
+
"datarobot:index/datasetFromFile:DatasetFromFile": "DatasetFromFile"
|
146
|
+
}
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"pkg": "datarobot",
|
150
|
+
"mod": "index/datasetFromUrl",
|
151
|
+
"fqn": "pulumi_datarobot",
|
152
|
+
"classes": {
|
153
|
+
"datarobot:index/datasetFromUrl:DatasetFromUrl": "DatasetFromUrl"
|
154
|
+
}
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"pkg": "datarobot",
|
158
|
+
"mod": "index/datasource",
|
159
|
+
"fqn": "pulumi_datarobot",
|
160
|
+
"classes": {
|
161
|
+
"datarobot:index/datasource:Datasource": "Datasource"
|
162
|
+
}
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"pkg": "datarobot",
|
166
|
+
"mod": "index/datastore",
|
167
|
+
"fqn": "pulumi_datarobot",
|
168
|
+
"classes": {
|
169
|
+
"datarobot:index/datastore:Datastore": "Datastore"
|
170
|
+
}
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"pkg": "datarobot",
|
174
|
+
"mod": "index/deployment",
|
175
|
+
"fqn": "pulumi_datarobot",
|
176
|
+
"classes": {
|
177
|
+
"datarobot:index/deployment:Deployment": "Deployment"
|
178
|
+
}
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"pkg": "datarobot",
|
182
|
+
"mod": "index/deploymentRetrainingPolicy",
|
183
|
+
"fqn": "pulumi_datarobot",
|
184
|
+
"classes": {
|
185
|
+
"datarobot:index/deploymentRetrainingPolicy:DeploymentRetrainingPolicy": "DeploymentRetrainingPolicy"
|
186
|
+
}
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"pkg": "datarobot",
|
190
|
+
"mod": "index/executionEnvironment",
|
191
|
+
"fqn": "pulumi_datarobot",
|
192
|
+
"classes": {
|
193
|
+
"datarobot:index/executionEnvironment:ExecutionEnvironment": "ExecutionEnvironment"
|
194
|
+
}
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"pkg": "datarobot",
|
198
|
+
"mod": "index/googleCloudCredential",
|
199
|
+
"fqn": "pulumi_datarobot",
|
200
|
+
"classes": {
|
201
|
+
"datarobot:index/googleCloudCredential:GoogleCloudCredential": "GoogleCloudCredential"
|
202
|
+
}
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"pkg": "datarobot",
|
206
|
+
"mod": "index/llmBlueprint",
|
207
|
+
"fqn": "pulumi_datarobot",
|
208
|
+
"classes": {
|
209
|
+
"datarobot:index/llmBlueprint:LlmBlueprint": "LlmBlueprint"
|
210
|
+
}
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"pkg": "datarobot",
|
214
|
+
"mod": "index/playground",
|
215
|
+
"fqn": "pulumi_datarobot",
|
216
|
+
"classes": {
|
217
|
+
"datarobot:index/playground:Playground": "Playground"
|
218
|
+
}
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"pkg": "datarobot",
|
222
|
+
"mod": "index/predictionEnvironment",
|
223
|
+
"fqn": "pulumi_datarobot",
|
224
|
+
"classes": {
|
225
|
+
"datarobot:index/predictionEnvironment:PredictionEnvironment": "PredictionEnvironment"
|
226
|
+
}
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"pkg": "datarobot",
|
230
|
+
"mod": "index/qaApplication",
|
231
|
+
"fqn": "pulumi_datarobot",
|
232
|
+
"classes": {
|
233
|
+
"datarobot:index/qaApplication:QaApplication": "QaApplication"
|
234
|
+
}
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"pkg": "datarobot",
|
238
|
+
"mod": "index/registeredModel",
|
239
|
+
"fqn": "pulumi_datarobot",
|
240
|
+
"classes": {
|
241
|
+
"datarobot:index/registeredModel:RegisteredModel": "RegisteredModel"
|
242
|
+
}
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"pkg": "datarobot",
|
246
|
+
"mod": "index/registeredModelFromLeaderboard",
|
247
|
+
"fqn": "pulumi_datarobot",
|
248
|
+
"classes": {
|
249
|
+
"datarobot:index/registeredModelFromLeaderboard:RegisteredModelFromLeaderboard": "RegisteredModelFromLeaderboard"
|
250
|
+
}
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"pkg": "datarobot",
|
254
|
+
"mod": "index/remoteRepository",
|
255
|
+
"fqn": "pulumi_datarobot",
|
256
|
+
"classes": {
|
257
|
+
"datarobot:index/remoteRepository:RemoteRepository": "RemoteRepository"
|
258
|
+
}
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"pkg": "datarobot",
|
262
|
+
"mod": "index/useCase",
|
263
|
+
"fqn": "pulumi_datarobot",
|
264
|
+
"classes": {
|
265
|
+
"datarobot:index/useCase:UseCase": "UseCase"
|
266
|
+
}
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"pkg": "datarobot",
|
270
|
+
"mod": "index/vectorDatabase",
|
271
|
+
"fqn": "pulumi_datarobot",
|
272
|
+
"classes": {
|
273
|
+
"datarobot:index/vectorDatabase:VectorDatabase": "VectorDatabase"
|
274
|
+
}
|
275
|
+
}
|
276
|
+
]
|
277
|
+
""",
|
278
|
+
resource_packages="""
|
279
|
+
[
|
280
|
+
{
|
281
|
+
"pkg": "datarobot",
|
282
|
+
"token": "pulumi:providers:datarobot",
|
283
|
+
"fqn": "pulumi_datarobot",
|
284
|
+
"class": "Provider"
|
285
|
+
}
|
286
|
+
]
|
287
|
+
"""
|
288
|
+
)
|