pulumi-datarobot 0.2.2__tar.gz → 0.2.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.2.2 → pulumi_datarobot-0.2.4}/PKG-INFO +1 -1
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/application_source.py +106 -8
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/PKG-INFO +1 -1
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/setup.py +1 -1
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/README.md +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/__init__.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/_inputs.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/_utilities.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/api_token_credential.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/basic_credential.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/config/__init__.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/config/vars.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/custom_application.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/custom_model.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/dataset_from_file.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/dataset_from_url.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/deployment.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/get_global_model.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/google_cloud_credential.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/llm_blueprint.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/outputs.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/playground.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/prediction_environment.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/provider.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/pulumi-plugin.json +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/py.typed +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/qa_application.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/registered_model.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/remote_repository.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/use_case.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/vector_database.py +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/SOURCES.txt +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/dependency_links.txt +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/not-zip-safe +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/requires.txt +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/top_level.txt +0 -0
- {pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/setup.cfg +0 -0
@@ -16,6 +16,8 @@ __all__ = ['ApplicationSourceArgs', 'ApplicationSource']
|
|
16
16
|
@pulumi.input_type
|
17
17
|
class ApplicationSourceArgs:
|
18
18
|
def __init__(__self__, *,
|
19
|
+
base_environment_id: Optional[pulumi.Input[str]] = None,
|
20
|
+
base_environment_version_id: Optional[pulumi.Input[str]] = None,
|
19
21
|
files: Optional[Any] = None,
|
20
22
|
folder_path: Optional[pulumi.Input[str]] = None,
|
21
23
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -23,12 +25,18 @@ class ApplicationSourceArgs:
|
|
23
25
|
runtime_parameter_values: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceRuntimeParameterValueArgs']]]] = None):
|
24
26
|
"""
|
25
27
|
The set of arguments for constructing a ApplicationSource resource.
|
28
|
+
:param pulumi.Input[str] base_environment_id: The ID of the base environment for the Application Source.
|
29
|
+
:param pulumi.Input[str] base_environment_version_id: The ID of the base environment version for the Application Source.
|
26
30
|
:param Any files: The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Application Source. If list is of strings, then basenames will be used for tuples.
|
27
31
|
:param pulumi.Input[str] folder_path: The path to a folder containing files to build the Application Source. Each file in the folder is uploaded under path relative to a folder path.
|
28
32
|
:param pulumi.Input[str] name: The name of the Application Source.
|
29
33
|
:param pulumi.Input['ApplicationSourceResourceSettingsArgs'] resource_settings: The resource settings for the Application Source.
|
30
34
|
:param pulumi.Input[Sequence[pulumi.Input['ApplicationSourceRuntimeParameterValueArgs']]] runtime_parameter_values: The runtime parameter values for the Application Source.
|
31
35
|
"""
|
36
|
+
if base_environment_id is not None:
|
37
|
+
pulumi.set(__self__, "base_environment_id", base_environment_id)
|
38
|
+
if base_environment_version_id is not None:
|
39
|
+
pulumi.set(__self__, "base_environment_version_id", base_environment_version_id)
|
32
40
|
if files is not None:
|
33
41
|
pulumi.set(__self__, "files", files)
|
34
42
|
if folder_path is not None:
|
@@ -40,6 +48,30 @@ class ApplicationSourceArgs:
|
|
40
48
|
if runtime_parameter_values is not None:
|
41
49
|
pulumi.set(__self__, "runtime_parameter_values", runtime_parameter_values)
|
42
50
|
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="baseEnvironmentId")
|
53
|
+
def base_environment_id(self) -> Optional[pulumi.Input[str]]:
|
54
|
+
"""
|
55
|
+
The ID of the base environment for the Application Source.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "base_environment_id")
|
58
|
+
|
59
|
+
@base_environment_id.setter
|
60
|
+
def base_environment_id(self, value: Optional[pulumi.Input[str]]):
|
61
|
+
pulumi.set(self, "base_environment_id", value)
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="baseEnvironmentVersionId")
|
65
|
+
def base_environment_version_id(self) -> Optional[pulumi.Input[str]]:
|
66
|
+
"""
|
67
|
+
The ID of the base environment version for the Application Source.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "base_environment_version_id")
|
70
|
+
|
71
|
+
@base_environment_version_id.setter
|
72
|
+
def base_environment_version_id(self, value: Optional[pulumi.Input[str]]):
|
73
|
+
pulumi.set(self, "base_environment_version_id", value)
|
74
|
+
|
43
75
|
@property
|
44
76
|
@pulumi.getter
|
45
77
|
def files(self) -> Optional[Any]:
|
@@ -104,6 +136,8 @@ class ApplicationSourceArgs:
|
|
104
136
|
@pulumi.input_type
|
105
137
|
class _ApplicationSourceState:
|
106
138
|
def __init__(__self__, *,
|
139
|
+
base_environment_id: Optional[pulumi.Input[str]] = None,
|
140
|
+
base_environment_version_id: Optional[pulumi.Input[str]] = None,
|
107
141
|
files: Optional[Any] = None,
|
108
142
|
files_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
109
143
|
folder_path: Optional[pulumi.Input[str]] = None,
|
@@ -114,6 +148,8 @@ class _ApplicationSourceState:
|
|
114
148
|
version_id: Optional[pulumi.Input[str]] = None):
|
115
149
|
"""
|
116
150
|
Input properties used for looking up and filtering ApplicationSource resources.
|
151
|
+
:param pulumi.Input[str] base_environment_id: The ID of the base environment for the Application Source.
|
152
|
+
:param pulumi.Input[str] base_environment_version_id: The ID of the base environment version for the Application Source.
|
117
153
|
:param Any files: The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Application Source. If list is of strings, then basenames will be used for tuples.
|
118
154
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] files_hashes: The hash of file contents for each file in files.
|
119
155
|
:param pulumi.Input[str] folder_path: The path to a folder containing files to build the Application Source. Each file in the folder is uploaded under path relative to a folder path.
|
@@ -123,6 +159,10 @@ class _ApplicationSourceState:
|
|
123
159
|
:param pulumi.Input[Sequence[pulumi.Input['ApplicationSourceRuntimeParameterValueArgs']]] runtime_parameter_values: The runtime parameter values for the Application Source.
|
124
160
|
:param pulumi.Input[str] version_id: The version ID of the Application Source.
|
125
161
|
"""
|
162
|
+
if base_environment_id is not None:
|
163
|
+
pulumi.set(__self__, "base_environment_id", base_environment_id)
|
164
|
+
if base_environment_version_id is not None:
|
165
|
+
pulumi.set(__self__, "base_environment_version_id", base_environment_version_id)
|
126
166
|
if files is not None:
|
127
167
|
pulumi.set(__self__, "files", files)
|
128
168
|
if files_hashes is not None:
|
@@ -140,6 +180,30 @@ class _ApplicationSourceState:
|
|
140
180
|
if version_id is not None:
|
141
181
|
pulumi.set(__self__, "version_id", version_id)
|
142
182
|
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="baseEnvironmentId")
|
185
|
+
def base_environment_id(self) -> Optional[pulumi.Input[str]]:
|
186
|
+
"""
|
187
|
+
The ID of the base environment for the Application Source.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "base_environment_id")
|
190
|
+
|
191
|
+
@base_environment_id.setter
|
192
|
+
def base_environment_id(self, value: Optional[pulumi.Input[str]]):
|
193
|
+
pulumi.set(self, "base_environment_id", value)
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="baseEnvironmentVersionId")
|
197
|
+
def base_environment_version_id(self) -> Optional[pulumi.Input[str]]:
|
198
|
+
"""
|
199
|
+
The ID of the base environment version for the Application Source.
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "base_environment_version_id")
|
202
|
+
|
203
|
+
@base_environment_version_id.setter
|
204
|
+
def base_environment_version_id(self, value: Optional[pulumi.Input[str]]):
|
205
|
+
pulumi.set(self, "base_environment_version_id", value)
|
206
|
+
|
143
207
|
@property
|
144
208
|
@pulumi.getter
|
145
209
|
def files(self) -> Optional[Any]:
|
@@ -242,6 +306,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
242
306
|
def __init__(__self__,
|
243
307
|
resource_name: str,
|
244
308
|
opts: Optional[pulumi.ResourceOptions] = None,
|
309
|
+
base_environment_id: Optional[pulumi.Input[str]] = None,
|
310
|
+
base_environment_version_id: Optional[pulumi.Input[str]] = None,
|
245
311
|
files: Optional[Any] = None,
|
246
312
|
folder_path: Optional[pulumi.Input[str]] = None,
|
247
313
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -257,16 +323,20 @@ class ApplicationSource(pulumi.CustomResource):
|
|
257
323
|
import pulumi
|
258
324
|
import pulumi_datarobot as datarobot
|
259
325
|
|
260
|
-
example = datarobot.ApplicationSource("example",
|
261
|
-
|
262
|
-
[
|
263
|
-
|
326
|
+
example = datarobot.ApplicationSource("example",
|
327
|
+
base_environment_id="6542cd582a9d3d51bf4ac71e",
|
328
|
+
files=[
|
329
|
+
["start-app.sh"],
|
330
|
+
["streamlit-app.py"],
|
331
|
+
])
|
264
332
|
pulumi.export("datarobotApplicationSourceId", example.id)
|
265
333
|
pulumi.export("datarobotApplicationSourceVersionId", example.version_id)
|
266
334
|
```
|
267
335
|
|
268
336
|
:param str resource_name: The name of the resource.
|
269
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
338
|
+
:param pulumi.Input[str] base_environment_id: The ID of the base environment for the Application Source.
|
339
|
+
:param pulumi.Input[str] base_environment_version_id: The ID of the base environment version for the Application Source.
|
270
340
|
:param Any files: The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Application Source. If list is of strings, then basenames will be used for tuples.
|
271
341
|
:param pulumi.Input[str] folder_path: The path to a folder containing files to build the Application Source. Each file in the folder is uploaded under path relative to a folder path.
|
272
342
|
:param pulumi.Input[str] name: The name of the Application Source.
|
@@ -288,10 +358,12 @@ class ApplicationSource(pulumi.CustomResource):
|
|
288
358
|
import pulumi
|
289
359
|
import pulumi_datarobot as datarobot
|
290
360
|
|
291
|
-
example = datarobot.ApplicationSource("example",
|
292
|
-
|
293
|
-
[
|
294
|
-
|
361
|
+
example = datarobot.ApplicationSource("example",
|
362
|
+
base_environment_id="6542cd582a9d3d51bf4ac71e",
|
363
|
+
files=[
|
364
|
+
["start-app.sh"],
|
365
|
+
["streamlit-app.py"],
|
366
|
+
])
|
295
367
|
pulumi.export("datarobotApplicationSourceId", example.id)
|
296
368
|
pulumi.export("datarobotApplicationSourceVersionId", example.version_id)
|
297
369
|
```
|
@@ -311,6 +383,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
311
383
|
def _internal_init(__self__,
|
312
384
|
resource_name: str,
|
313
385
|
opts: Optional[pulumi.ResourceOptions] = None,
|
386
|
+
base_environment_id: Optional[pulumi.Input[str]] = None,
|
387
|
+
base_environment_version_id: Optional[pulumi.Input[str]] = None,
|
314
388
|
files: Optional[Any] = None,
|
315
389
|
folder_path: Optional[pulumi.Input[str]] = None,
|
316
390
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -325,6 +399,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
325
399
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
326
400
|
__props__ = ApplicationSourceArgs.__new__(ApplicationSourceArgs)
|
327
401
|
|
402
|
+
__props__.__dict__["base_environment_id"] = base_environment_id
|
403
|
+
__props__.__dict__["base_environment_version_id"] = base_environment_version_id
|
328
404
|
__props__.__dict__["files"] = files
|
329
405
|
__props__.__dict__["folder_path"] = folder_path
|
330
406
|
__props__.__dict__["name"] = name
|
@@ -343,6 +419,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
343
419
|
def get(resource_name: str,
|
344
420
|
id: pulumi.Input[str],
|
345
421
|
opts: Optional[pulumi.ResourceOptions] = None,
|
422
|
+
base_environment_id: Optional[pulumi.Input[str]] = None,
|
423
|
+
base_environment_version_id: Optional[pulumi.Input[str]] = None,
|
346
424
|
files: Optional[Any] = None,
|
347
425
|
files_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
348
426
|
folder_path: Optional[pulumi.Input[str]] = None,
|
@@ -358,6 +436,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
358
436
|
:param str resource_name: The unique name of the resulting resource.
|
359
437
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
360
438
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
439
|
+
:param pulumi.Input[str] base_environment_id: The ID of the base environment for the Application Source.
|
440
|
+
:param pulumi.Input[str] base_environment_version_id: The ID of the base environment version for the Application Source.
|
361
441
|
:param Any files: The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Application Source. If list is of strings, then basenames will be used for tuples.
|
362
442
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] files_hashes: The hash of file contents for each file in files.
|
363
443
|
:param pulumi.Input[str] folder_path: The path to a folder containing files to build the Application Source. Each file in the folder is uploaded under path relative to a folder path.
|
@@ -371,6 +451,8 @@ class ApplicationSource(pulumi.CustomResource):
|
|
371
451
|
|
372
452
|
__props__ = _ApplicationSourceState.__new__(_ApplicationSourceState)
|
373
453
|
|
454
|
+
__props__.__dict__["base_environment_id"] = base_environment_id
|
455
|
+
__props__.__dict__["base_environment_version_id"] = base_environment_version_id
|
374
456
|
__props__.__dict__["files"] = files
|
375
457
|
__props__.__dict__["files_hashes"] = files_hashes
|
376
458
|
__props__.__dict__["folder_path"] = folder_path
|
@@ -381,6 +463,22 @@ class ApplicationSource(pulumi.CustomResource):
|
|
381
463
|
__props__.__dict__["version_id"] = version_id
|
382
464
|
return ApplicationSource(resource_name, opts=opts, __props__=__props__)
|
383
465
|
|
466
|
+
@property
|
467
|
+
@pulumi.getter(name="baseEnvironmentId")
|
468
|
+
def base_environment_id(self) -> pulumi.Output[str]:
|
469
|
+
"""
|
470
|
+
The ID of the base environment for the Application Source.
|
471
|
+
"""
|
472
|
+
return pulumi.get(self, "base_environment_id")
|
473
|
+
|
474
|
+
@property
|
475
|
+
@pulumi.getter(name="baseEnvironmentVersionId")
|
476
|
+
def base_environment_version_id(self) -> pulumi.Output[str]:
|
477
|
+
"""
|
478
|
+
The ID of the base environment version for the Application Source.
|
479
|
+
"""
|
480
|
+
return pulumi.get(self, "base_environment_version_id")
|
481
|
+
|
384
482
|
@property
|
385
483
|
@pulumi.getter
|
386
484
|
def files(self) -> pulumi.Output[Optional[Any]]:
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot/google_cloud_credential.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/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
|
File without changes
|
{pulumi_datarobot-0.2.2 → pulumi_datarobot-0.2.4}/pulumi_datarobot.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|