pulumi-datarobot 0.1.37__tar.gz → 0.1.41__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.1.37 → pulumi_datarobot-0.1.41}/PKG-INFO +1 -1
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/__init__.py +9 -0
- pulumi_datarobot-0.1.41/pulumi_datarobot/dataset_from_url.py +264 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/PKG-INFO +1 -1
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/SOURCES.txt +1 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/setup.py +1 -1
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/README.md +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/_inputs.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/_utilities.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/api_token_credential.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/application_source.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/basic_credential.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/config/__init__.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/config/vars.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/custom_application.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/custom_model.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/dataset_from_file.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/deployment.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/get_global_model.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/google_cloud_credential.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/llm_blueprint.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/outputs.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/playground.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/prediction_environment.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/provider.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/pulumi-plugin.json +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/py.typed +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/qa_application.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/registered_model.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/remote_repository.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/use_case.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/vector_database.py +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/dependency_links.txt +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/not-zip-safe +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/requires.txt +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/top_level.txt +0 -0
- {pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/setup.cfg +0 -0
@@ -11,6 +11,7 @@ from .basic_credential import *
|
|
11
11
|
from .custom_application import *
|
12
12
|
from .custom_model import *
|
13
13
|
from .dataset_from_file import *
|
14
|
+
from .dataset_from_url import *
|
14
15
|
from .deployment import *
|
15
16
|
from .get_global_model import *
|
16
17
|
from .google_cloud_credential import *
|
@@ -84,6 +85,14 @@ _utilities.register(
|
|
84
85
|
"datarobot:index/datasetFromFile:DatasetFromFile": "DatasetFromFile"
|
85
86
|
}
|
86
87
|
},
|
88
|
+
{
|
89
|
+
"pkg": "datarobot",
|
90
|
+
"mod": "index/datasetFromUrl",
|
91
|
+
"fqn": "pulumi_datarobot",
|
92
|
+
"classes": {
|
93
|
+
"datarobot:index/datasetFromUrl:DatasetFromUrl": "DatasetFromUrl"
|
94
|
+
}
|
95
|
+
},
|
87
96
|
{
|
88
97
|
"pkg": "datarobot",
|
89
98
|
"mod": "index/deployment",
|
@@ -0,0 +1,264 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from . import _utilities
|
11
|
+
|
12
|
+
__all__ = ['DatasetFromUrlArgs', 'DatasetFromUrl']
|
13
|
+
|
14
|
+
@pulumi.input_type
|
15
|
+
class DatasetFromUrlArgs:
|
16
|
+
def __init__(__self__, *,
|
17
|
+
url: pulumi.Input[str],
|
18
|
+
name: Optional[pulumi.Input[str]] = None,
|
19
|
+
use_case_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
20
|
+
"""
|
21
|
+
The set of arguments for constructing a DatasetFromUrl resource.
|
22
|
+
:param pulumi.Input[str] url: The URL to upload the Dataset from.
|
23
|
+
:param pulumi.Input[str] name: The name of the Dataset.
|
24
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] use_case_ids: The list of Use Case IDs to add the Dataset to.
|
25
|
+
"""
|
26
|
+
pulumi.set(__self__, "url", url)
|
27
|
+
if name is not None:
|
28
|
+
pulumi.set(__self__, "name", name)
|
29
|
+
if use_case_ids is not None:
|
30
|
+
pulumi.set(__self__, "use_case_ids", use_case_ids)
|
31
|
+
|
32
|
+
@property
|
33
|
+
@pulumi.getter
|
34
|
+
def url(self) -> pulumi.Input[str]:
|
35
|
+
"""
|
36
|
+
The URL to upload the Dataset from.
|
37
|
+
"""
|
38
|
+
return pulumi.get(self, "url")
|
39
|
+
|
40
|
+
@url.setter
|
41
|
+
def url(self, value: pulumi.Input[str]):
|
42
|
+
pulumi.set(self, "url", value)
|
43
|
+
|
44
|
+
@property
|
45
|
+
@pulumi.getter
|
46
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
47
|
+
"""
|
48
|
+
The name of the Dataset.
|
49
|
+
"""
|
50
|
+
return pulumi.get(self, "name")
|
51
|
+
|
52
|
+
@name.setter
|
53
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
54
|
+
pulumi.set(self, "name", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="useCaseIds")
|
58
|
+
def use_case_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
59
|
+
"""
|
60
|
+
The list of Use Case IDs to add the Dataset to.
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "use_case_ids")
|
63
|
+
|
64
|
+
@use_case_ids.setter
|
65
|
+
def use_case_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
66
|
+
pulumi.set(self, "use_case_ids", value)
|
67
|
+
|
68
|
+
|
69
|
+
@pulumi.input_type
|
70
|
+
class _DatasetFromUrlState:
|
71
|
+
def __init__(__self__, *,
|
72
|
+
name: Optional[pulumi.Input[str]] = None,
|
73
|
+
url: Optional[pulumi.Input[str]] = None,
|
74
|
+
use_case_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
75
|
+
"""
|
76
|
+
Input properties used for looking up and filtering DatasetFromUrl resources.
|
77
|
+
:param pulumi.Input[str] name: The name of the Dataset.
|
78
|
+
:param pulumi.Input[str] url: The URL to upload the Dataset from.
|
79
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] use_case_ids: The list of Use Case IDs to add the Dataset to.
|
80
|
+
"""
|
81
|
+
if name is not None:
|
82
|
+
pulumi.set(__self__, "name", name)
|
83
|
+
if url is not None:
|
84
|
+
pulumi.set(__self__, "url", url)
|
85
|
+
if use_case_ids is not None:
|
86
|
+
pulumi.set(__self__, "use_case_ids", use_case_ids)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
91
|
+
"""
|
92
|
+
The name of the Dataset.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "name")
|
95
|
+
|
96
|
+
@name.setter
|
97
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
98
|
+
pulumi.set(self, "name", value)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter
|
102
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
103
|
+
"""
|
104
|
+
The URL to upload the Dataset from.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "url")
|
107
|
+
|
108
|
+
@url.setter
|
109
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
110
|
+
pulumi.set(self, "url", value)
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="useCaseIds")
|
114
|
+
def use_case_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
115
|
+
"""
|
116
|
+
The list of Use Case IDs to add the Dataset to.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "use_case_ids")
|
119
|
+
|
120
|
+
@use_case_ids.setter
|
121
|
+
def use_case_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
122
|
+
pulumi.set(self, "use_case_ids", value)
|
123
|
+
|
124
|
+
|
125
|
+
class DatasetFromUrl(pulumi.CustomResource):
|
126
|
+
@overload
|
127
|
+
def __init__(__self__,
|
128
|
+
resource_name: str,
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
130
|
+
name: Optional[pulumi.Input[str]] = None,
|
131
|
+
url: Optional[pulumi.Input[str]] = None,
|
132
|
+
use_case_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
133
|
+
__props__=None):
|
134
|
+
"""
|
135
|
+
Data set from file
|
136
|
+
|
137
|
+
## Example Usage
|
138
|
+
|
139
|
+
```python
|
140
|
+
import pulumi
|
141
|
+
import pulumi_datarobot as datarobot
|
142
|
+
|
143
|
+
example = datarobot.DatasetFromUrl("example",
|
144
|
+
url="[URL to upload from]",
|
145
|
+
use_case_ids=[datarobot_use_case["example"]["id"]])
|
146
|
+
pulumi.export("exampleId", example.id)
|
147
|
+
```
|
148
|
+
|
149
|
+
:param str resource_name: The name of the resource.
|
150
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
151
|
+
:param pulumi.Input[str] name: The name of the Dataset.
|
152
|
+
:param pulumi.Input[str] url: The URL to upload the Dataset from.
|
153
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] use_case_ids: The list of Use Case IDs to add the Dataset to.
|
154
|
+
"""
|
155
|
+
...
|
156
|
+
@overload
|
157
|
+
def __init__(__self__,
|
158
|
+
resource_name: str,
|
159
|
+
args: DatasetFromUrlArgs,
|
160
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
161
|
+
"""
|
162
|
+
Data set from file
|
163
|
+
|
164
|
+
## Example Usage
|
165
|
+
|
166
|
+
```python
|
167
|
+
import pulumi
|
168
|
+
import pulumi_datarobot as datarobot
|
169
|
+
|
170
|
+
example = datarobot.DatasetFromUrl("example",
|
171
|
+
url="[URL to upload from]",
|
172
|
+
use_case_ids=[datarobot_use_case["example"]["id"]])
|
173
|
+
pulumi.export("exampleId", example.id)
|
174
|
+
```
|
175
|
+
|
176
|
+
:param str resource_name: The name of the resource.
|
177
|
+
:param DatasetFromUrlArgs args: The arguments to use to populate this resource's properties.
|
178
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
179
|
+
"""
|
180
|
+
...
|
181
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
182
|
+
resource_args, opts = _utilities.get_resource_args_opts(DatasetFromUrlArgs, pulumi.ResourceOptions, *args, **kwargs)
|
183
|
+
if resource_args is not None:
|
184
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
185
|
+
else:
|
186
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
187
|
+
|
188
|
+
def _internal_init(__self__,
|
189
|
+
resource_name: str,
|
190
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
191
|
+
name: Optional[pulumi.Input[str]] = None,
|
192
|
+
url: Optional[pulumi.Input[str]] = None,
|
193
|
+
use_case_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
194
|
+
__props__=None):
|
195
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
196
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
197
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
198
|
+
if opts.id is None:
|
199
|
+
if __props__ is not None:
|
200
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
201
|
+
__props__ = DatasetFromUrlArgs.__new__(DatasetFromUrlArgs)
|
202
|
+
|
203
|
+
__props__.__dict__["name"] = name
|
204
|
+
if url is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'url'")
|
206
|
+
__props__.__dict__["url"] = url
|
207
|
+
__props__.__dict__["use_case_ids"] = use_case_ids
|
208
|
+
super(DatasetFromUrl, __self__).__init__(
|
209
|
+
'datarobot:index/datasetFromUrl:DatasetFromUrl',
|
210
|
+
resource_name,
|
211
|
+
__props__,
|
212
|
+
opts)
|
213
|
+
|
214
|
+
@staticmethod
|
215
|
+
def get(resource_name: str,
|
216
|
+
id: pulumi.Input[str],
|
217
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
218
|
+
name: Optional[pulumi.Input[str]] = None,
|
219
|
+
url: Optional[pulumi.Input[str]] = None,
|
220
|
+
use_case_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'DatasetFromUrl':
|
221
|
+
"""
|
222
|
+
Get an existing DatasetFromUrl resource's state with the given name, id, and optional extra
|
223
|
+
properties used to qualify the lookup.
|
224
|
+
|
225
|
+
:param str resource_name: The unique name of the resulting resource.
|
226
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
227
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
228
|
+
:param pulumi.Input[str] name: The name of the Dataset.
|
229
|
+
:param pulumi.Input[str] url: The URL to upload the Dataset from.
|
230
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] use_case_ids: The list of Use Case IDs to add the Dataset to.
|
231
|
+
"""
|
232
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
233
|
+
|
234
|
+
__props__ = _DatasetFromUrlState.__new__(_DatasetFromUrlState)
|
235
|
+
|
236
|
+
__props__.__dict__["name"] = name
|
237
|
+
__props__.__dict__["url"] = url
|
238
|
+
__props__.__dict__["use_case_ids"] = use_case_ids
|
239
|
+
return DatasetFromUrl(resource_name, opts=opts, __props__=__props__)
|
240
|
+
|
241
|
+
@property
|
242
|
+
@pulumi.getter
|
243
|
+
def name(self) -> pulumi.Output[str]:
|
244
|
+
"""
|
245
|
+
The name of the Dataset.
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "name")
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter
|
251
|
+
def url(self) -> pulumi.Output[str]:
|
252
|
+
"""
|
253
|
+
The URL to upload the Dataset from.
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "url")
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="useCaseIds")
|
259
|
+
def use_case_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
260
|
+
"""
|
261
|
+
The list of Use Case IDs to add the Dataset to.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "use_case_ids")
|
264
|
+
|
@@ -9,6 +9,7 @@ pulumi_datarobot/basic_credential.py
|
|
9
9
|
pulumi_datarobot/custom_application.py
|
10
10
|
pulumi_datarobot/custom_model.py
|
11
11
|
pulumi_datarobot/dataset_from_file.py
|
12
|
+
pulumi_datarobot/dataset_from_url.py
|
12
13
|
pulumi_datarobot/deployment.py
|
13
14
|
pulumi_datarobot/get_global_model.py
|
14
15
|
pulumi_datarobot/google_cloud_credential.py
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/api_token_credential.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/google_cloud_credential.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot/prediction_environment.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.1.37 → pulumi_datarobot-0.1.41}/pulumi_datarobot.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|