pulumi-datarobot 0.9.3__tar.gz → 0.10.1__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.
Files changed (57) hide show
  1. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/PKG-INFO +4 -5
  2. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/_inputs.py +369 -0
  3. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/api_token_credential.py +1 -0
  4. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/application_source.py +18 -17
  5. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/application_source_from_template.py +18 -17
  6. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/aws_credential.py +1 -0
  7. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/azure_credential.py +1 -0
  8. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/basic_credential.py +1 -0
  9. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/batch_prediction_job_definition.py +1 -0
  10. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_application.py +1 -42
  11. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_application_from_environment.py +1 -0
  12. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_job.py +115 -68
  13. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_metric.py +1 -0
  14. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_metric_from_job.py +1 -0
  15. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_metric_job.py +18 -17
  16. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_model.py +18 -17
  17. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/custom_model_llm_validation.py +1 -0
  18. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/dataset_from_datasource.py +1 -0
  19. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/dataset_from_file.py +1 -0
  20. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/dataset_from_url.py +1 -0
  21. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/datasource.py +1 -0
  22. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/datastore.py +1 -0
  23. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/deployment.py +1 -0
  24. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/deployment_retraining_policy.py +51 -3
  25. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/execution_environment.py +1 -0
  26. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/google_cloud_credential.py +1 -0
  27. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/llm_blueprint.py +1 -0
  28. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/notebook.py +1 -0
  29. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/notification_channel.py +1 -0
  30. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/notification_policy.py +1 -0
  31. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/outputs.py +232 -0
  32. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/playground.py +1 -0
  33. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/prediction_environment.py +1 -0
  34. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/provider.py +21 -0
  35. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/qa_application.py +1 -0
  36. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/registered_model.py +48 -0
  37. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/registered_model_from_leaderboard.py +1 -0
  38. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/remote_repository.py +1 -0
  39. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/use_case.py +1 -0
  40. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/vector_database.py +1 -0
  41. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/PKG-INFO +4 -5
  42. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/setup.py +1 -1
  43. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/README.md +0 -0
  44. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/__init__.py +0 -0
  45. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/_utilities.py +0 -0
  46. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/config/__init__.py +0 -0
  47. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/config/vars.py +0 -0
  48. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/get_execution_environment.py +0 -0
  49. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/get_global_model.py +0 -0
  50. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/pulumi-plugin.json +0 -0
  51. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot/py.typed +0 -0
  52. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/SOURCES.txt +0 -0
  53. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/dependency_links.txt +0 -0
  54. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/not-zip-safe +0 -0
  55. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/requires.txt +0 -0
  56. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/pulumi_datarobot.egg-info/top_level.txt +0 -0
  57. {pulumi_datarobot-0.9.3 → pulumi_datarobot-0.10.1}/setup.cfg +0 -0
@@ -1,17 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_datarobot
3
- Version: 0.9.3
3
+ Version: 0.10.1
4
4
  Summary: A Pulumi package for creating and managing DataRobot resources.
5
5
  Home-page: https://www.datarobot.com
6
6
  License: Apache-2.0
7
7
  Project-URL: Repository, https://github.com/datarobot-community/pulumi-datarobot
8
8
  Keywords: datarobot ai category/cloud
9
+ Platform: UNKNOWN
9
10
  Requires-Python: >=3.9
10
11
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.0.0
13
- Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
12
 
16
13
  # DataRobot Resource Provider
17
14
 
@@ -124,3 +121,5 @@ Keep the following items in mind if running in an air-gapped environment:
124
121
  ```bash
125
122
  pip install * -f ./ --no-index
126
123
  ```
124
+
125
+
@@ -16,6 +16,10 @@ else:
16
16
  from . import _utilities
17
17
 
18
18
  __all__ = [
19
+ 'ApplicationSourceFileArgs',
20
+ 'ApplicationSourceFileArgsDict',
21
+ 'ApplicationSourceFromTemplateFileArgs',
22
+ 'ApplicationSourceFromTemplateFileArgsDict',
19
23
  'ApplicationSourceFromTemplateResourcesArgs',
20
24
  'ApplicationSourceFromTemplateResourcesArgsDict',
21
25
  'ApplicationSourceFromTemplateRuntimeParameterValueArgs',
@@ -36,8 +40,12 @@ __all__ = [
36
40
  'BatchPredictionJobDefinitionScheduleArgsDict',
37
41
  'BatchPredictionJobDefinitionTimeseriesSettingsArgs',
38
42
  'BatchPredictionJobDefinitionTimeseriesSettingsArgsDict',
43
+ 'CustomJobFileArgs',
44
+ 'CustomJobFileArgsDict',
39
45
  'CustomJobRuntimeParameterValueArgs',
40
46
  'CustomJobRuntimeParameterValueArgsDict',
47
+ 'CustomJobScheduleArgs',
48
+ 'CustomJobScheduleArgsDict',
41
49
  'CustomMetricBatchArgs',
42
50
  'CustomMetricBatchArgsDict',
43
51
  'CustomMetricFromJobBatchArgs',
@@ -52,6 +60,8 @@ __all__ = [
52
60
  'CustomMetricFromJobTimestampArgsDict',
53
61
  'CustomMetricFromJobValueArgs',
54
62
  'CustomMetricFromJobValueArgsDict',
63
+ 'CustomMetricJobFileArgs',
64
+ 'CustomMetricJobFileArgsDict',
55
65
  'CustomMetricJobRuntimeParameterValueArgs',
56
66
  'CustomMetricJobRuntimeParameterValueArgsDict',
57
67
  'CustomMetricSampleCountArgs',
@@ -60,6 +70,8 @@ __all__ = [
60
70
  'CustomMetricTimestampArgsDict',
61
71
  'CustomMetricValueArgs',
62
72
  'CustomMetricValueArgsDict',
73
+ 'CustomModelFileArgs',
74
+ 'CustomModelFileArgsDict',
63
75
  'CustomModelGuardConfigurationArgs',
64
76
  'CustomModelGuardConfigurationArgsDict',
65
77
  'CustomModelGuardConfigurationInterventionArgs',
@@ -156,6 +168,106 @@ __all__ = [
156
168
 
157
169
  MYPY = False
158
170
 
171
+ if not MYPY:
172
+ class ApplicationSourceFileArgsDict(TypedDict):
173
+ destination: pulumi.Input[builtins.str]
174
+ """
175
+ Path in the application source.
176
+ """
177
+ source: pulumi.Input[builtins.str]
178
+ """
179
+ Local filesystem path.
180
+ """
181
+ elif False:
182
+ ApplicationSourceFileArgsDict: TypeAlias = Mapping[str, Any]
183
+
184
+ @pulumi.input_type
185
+ class ApplicationSourceFileArgs:
186
+ def __init__(__self__, *,
187
+ destination: pulumi.Input[builtins.str],
188
+ source: pulumi.Input[builtins.str]):
189
+ """
190
+ :param pulumi.Input[builtins.str] destination: Path in the application source.
191
+ :param pulumi.Input[builtins.str] source: Local filesystem path.
192
+ """
193
+ pulumi.set(__self__, "destination", destination)
194
+ pulumi.set(__self__, "source", source)
195
+
196
+ @property
197
+ @pulumi.getter
198
+ def destination(self) -> pulumi.Input[builtins.str]:
199
+ """
200
+ Path in the application source.
201
+ """
202
+ return pulumi.get(self, "destination")
203
+
204
+ @destination.setter
205
+ def destination(self, value: pulumi.Input[builtins.str]):
206
+ pulumi.set(self, "destination", value)
207
+
208
+ @property
209
+ @pulumi.getter
210
+ def source(self) -> pulumi.Input[builtins.str]:
211
+ """
212
+ Local filesystem path.
213
+ """
214
+ return pulumi.get(self, "source")
215
+
216
+ @source.setter
217
+ def source(self, value: pulumi.Input[builtins.str]):
218
+ pulumi.set(self, "source", value)
219
+
220
+
221
+ if not MYPY:
222
+ class ApplicationSourceFromTemplateFileArgsDict(TypedDict):
223
+ destination: pulumi.Input[builtins.str]
224
+ """
225
+ Path in the application source.
226
+ """
227
+ source: pulumi.Input[builtins.str]
228
+ """
229
+ Local filesystem path.
230
+ """
231
+ elif False:
232
+ ApplicationSourceFromTemplateFileArgsDict: TypeAlias = Mapping[str, Any]
233
+
234
+ @pulumi.input_type
235
+ class ApplicationSourceFromTemplateFileArgs:
236
+ def __init__(__self__, *,
237
+ destination: pulumi.Input[builtins.str],
238
+ source: pulumi.Input[builtins.str]):
239
+ """
240
+ :param pulumi.Input[builtins.str] destination: Path in the application source.
241
+ :param pulumi.Input[builtins.str] source: Local filesystem path.
242
+ """
243
+ pulumi.set(__self__, "destination", destination)
244
+ pulumi.set(__self__, "source", source)
245
+
246
+ @property
247
+ @pulumi.getter
248
+ def destination(self) -> pulumi.Input[builtins.str]:
249
+ """
250
+ Path in the application source.
251
+ """
252
+ return pulumi.get(self, "destination")
253
+
254
+ @destination.setter
255
+ def destination(self, value: pulumi.Input[builtins.str]):
256
+ pulumi.set(self, "destination", value)
257
+
258
+ @property
259
+ @pulumi.getter
260
+ def source(self) -> pulumi.Input[builtins.str]:
261
+ """
262
+ Local filesystem path.
263
+ """
264
+ return pulumi.get(self, "source")
265
+
266
+ @source.setter
267
+ def source(self, value: pulumi.Input[builtins.str]):
268
+ pulumi.set(self, "source", value)
269
+
270
+
159
271
  if not MYPY:
160
272
  class ApplicationSourceFromTemplateResourcesArgsDict(TypedDict):
161
273
  replicas: NotRequired[pulumi.Input[builtins.int]]
@@ -1343,6 +1455,56 @@ class BatchPredictionJobDefinitionTimeseriesSettingsArgs:
1343
1455
  pulumi.set(self, "type", value)
1344
1456
 
1345
1457
 
1458
+ if not MYPY:
1459
+ class CustomJobFileArgsDict(TypedDict):
1460
+ destination: pulumi.Input[builtins.str]
1461
+ """
1462
+ Path in the job.
1463
+ """
1464
+ source: pulumi.Input[builtins.str]
1465
+ """
1466
+ Local filesystem path.
1467
+ """
1468
+ elif False:
1469
+ CustomJobFileArgsDict: TypeAlias = Mapping[str, Any]
1470
+
1471
+ @pulumi.input_type
1472
+ class CustomJobFileArgs:
1473
+ def __init__(__self__, *,
1474
+ destination: pulumi.Input[builtins.str],
1475
+ source: pulumi.Input[builtins.str]):
1476
+ """
1477
+ :param pulumi.Input[builtins.str] destination: Path in the job.
1478
+ :param pulumi.Input[builtins.str] source: Local filesystem path.
1479
+ """
1480
+ pulumi.set(__self__, "destination", destination)
1481
+ pulumi.set(__self__, "source", source)
1482
+
1483
+ @property
1484
+ @pulumi.getter
1485
+ def destination(self) -> pulumi.Input[builtins.str]:
1486
+ """
1487
+ Path in the job.
1488
+ """
1489
+ return pulumi.get(self, "destination")
1490
+
1491
+ @destination.setter
1492
+ def destination(self, value: pulumi.Input[builtins.str]):
1493
+ pulumi.set(self, "destination", value)
1494
+
1495
+ @property
1496
+ @pulumi.getter
1497
+ def source(self) -> pulumi.Input[builtins.str]:
1498
+ """
1499
+ Local filesystem path.
1500
+ """
1501
+ return pulumi.get(self, "source")
1502
+
1503
+ @source.setter
1504
+ def source(self, value: pulumi.Input[builtins.str]):
1505
+ pulumi.set(self, "source", value)
1506
+
1507
+
1346
1508
  if not MYPY:
1347
1509
  class CustomJobRuntimeParameterValueArgsDict(TypedDict):
1348
1510
  key: pulumi.Input[builtins.str]
@@ -1412,6 +1574,113 @@ class CustomJobRuntimeParameterValueArgs:
1412
1574
  pulumi.set(self, "value", value)
1413
1575
 
1414
1576
 
1577
+ if not MYPY:
1578
+ class CustomJobScheduleArgsDict(TypedDict):
1579
+ day_of_months: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
1580
+ """
1581
+ Days of the month when the job will run.
1582
+ """
1583
+ day_of_weeks: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
1584
+ """
1585
+ Days of the week when the job will run.
1586
+ """
1587
+ hours: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
1588
+ """
1589
+ Hours of the day when the job will run.
1590
+ """
1591
+ minutes: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
1592
+ """
1593
+ Minutes of the day when the job will run.
1594
+ """
1595
+ months: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
1596
+ """
1597
+ Months of the year when the job will run.
1598
+ """
1599
+ elif False:
1600
+ CustomJobScheduleArgsDict: TypeAlias = Mapping[str, Any]
1601
+
1602
+ @pulumi.input_type
1603
+ class CustomJobScheduleArgs:
1604
+ def __init__(__self__, *,
1605
+ day_of_months: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
1606
+ day_of_weeks: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
1607
+ hours: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
1608
+ minutes: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
1609
+ months: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1610
+ """
1611
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] day_of_months: Days of the month when the job will run.
1612
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] day_of_weeks: Days of the week when the job will run.
1613
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] hours: Hours of the day when the job will run.
1614
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] minutes: Minutes of the day when the job will run.
1615
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] months: Months of the year when the job will run.
1616
+ """
1617
+ pulumi.set(__self__, "day_of_months", day_of_months)
1618
+ pulumi.set(__self__, "day_of_weeks", day_of_weeks)
1619
+ pulumi.set(__self__, "hours", hours)
1620
+ pulumi.set(__self__, "minutes", minutes)
1621
+ pulumi.set(__self__, "months", months)
1622
+
1623
+ @property
1624
+ @pulumi.getter(name="dayOfMonths")
1625
+ def day_of_months(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
1626
+ """
1627
+ Days of the month when the job will run.
1628
+ """
1629
+ return pulumi.get(self, "day_of_months")
1630
+
1631
+ @day_of_months.setter
1632
+ def day_of_months(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1633
+ pulumi.set(self, "day_of_months", value)
1634
+
1635
+ @property
1636
+ @pulumi.getter(name="dayOfWeeks")
1637
+ def day_of_weeks(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
1638
+ """
1639
+ Days of the week when the job will run.
1640
+ """
1641
+ return pulumi.get(self, "day_of_weeks")
1642
+
1643
+ @day_of_weeks.setter
1644
+ def day_of_weeks(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1645
+ pulumi.set(self, "day_of_weeks", value)
1646
+
1647
+ @property
1648
+ @pulumi.getter
1649
+ def hours(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
1650
+ """
1651
+ Hours of the day when the job will run.
1652
+ """
1653
+ return pulumi.get(self, "hours")
1654
+
1655
+ @hours.setter
1656
+ def hours(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1657
+ pulumi.set(self, "hours", value)
1658
+
1659
+ @property
1660
+ @pulumi.getter
1661
+ def minutes(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
1662
+ """
1663
+ Minutes of the day when the job will run.
1664
+ """
1665
+ return pulumi.get(self, "minutes")
1666
+
1667
+ @minutes.setter
1668
+ def minutes(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1669
+ pulumi.set(self, "minutes", value)
1670
+
1671
+ @property
1672
+ @pulumi.getter
1673
+ def months(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
1674
+ """
1675
+ Months of the year when the job will run.
1676
+ """
1677
+ return pulumi.get(self, "months")
1678
+
1679
+ @months.setter
1680
+ def months(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
1681
+ pulumi.set(self, "months", value)
1682
+
1683
+
1415
1684
  if not MYPY:
1416
1685
  class CustomMetricBatchArgsDict(TypedDict):
1417
1686
  column_name: NotRequired[pulumi.Input[builtins.str]]
@@ -1767,6 +2036,56 @@ class CustomMetricFromJobValueArgs:
1767
2036
  pulumi.set(self, "column_name", value)
1768
2037
 
1769
2038
 
2039
+ if not MYPY:
2040
+ class CustomMetricJobFileArgsDict(TypedDict):
2041
+ destination: pulumi.Input[builtins.str]
2042
+ """
2043
+ Path in the job.
2044
+ """
2045
+ source: pulumi.Input[builtins.str]
2046
+ """
2047
+ Local filesystem path.
2048
+ """
2049
+ elif False:
2050
+ CustomMetricJobFileArgsDict: TypeAlias = Mapping[str, Any]
2051
+
2052
+ @pulumi.input_type
2053
+ class CustomMetricJobFileArgs:
2054
+ def __init__(__self__, *,
2055
+ destination: pulumi.Input[builtins.str],
2056
+ source: pulumi.Input[builtins.str]):
2057
+ """
2058
+ :param pulumi.Input[builtins.str] destination: Path in the job.
2059
+ :param pulumi.Input[builtins.str] source: Local filesystem path.
2060
+ """
2061
+ pulumi.set(__self__, "destination", destination)
2062
+ pulumi.set(__self__, "source", source)
2063
+
2064
+ @property
2065
+ @pulumi.getter
2066
+ def destination(self) -> pulumi.Input[builtins.str]:
2067
+ """
2068
+ Path in the job.
2069
+ """
2070
+ return pulumi.get(self, "destination")
2071
+
2072
+ @destination.setter
2073
+ def destination(self, value: pulumi.Input[builtins.str]):
2074
+ pulumi.set(self, "destination", value)
2075
+
2076
+ @property
2077
+ @pulumi.getter
2078
+ def source(self) -> pulumi.Input[builtins.str]:
2079
+ """
2080
+ Local filesystem path.
2081
+ """
2082
+ return pulumi.get(self, "source")
2083
+
2084
+ @source.setter
2085
+ def source(self, value: pulumi.Input[builtins.str]):
2086
+ pulumi.set(self, "source", value)
2087
+
2088
+
1770
2089
  if not MYPY:
1771
2090
  class CustomMetricJobRuntimeParameterValueArgsDict(TypedDict):
1772
2091
  key: pulumi.Input[builtins.str]
@@ -1952,6 +2271,56 @@ class CustomMetricValueArgs:
1952
2271
  pulumi.set(self, "column_name", value)
1953
2272
 
1954
2273
 
2274
+ if not MYPY:
2275
+ class CustomModelFileArgsDict(TypedDict):
2276
+ destination: pulumi.Input[builtins.str]
2277
+ """
2278
+ Path in the model.
2279
+ """
2280
+ source: pulumi.Input[builtins.str]
2281
+ """
2282
+ Local filesystem path.
2283
+ """
2284
+ elif False:
2285
+ CustomModelFileArgsDict: TypeAlias = Mapping[str, Any]
2286
+
2287
+ @pulumi.input_type
2288
+ class CustomModelFileArgs:
2289
+ def __init__(__self__, *,
2290
+ destination: pulumi.Input[builtins.str],
2291
+ source: pulumi.Input[builtins.str]):
2292
+ """
2293
+ :param pulumi.Input[builtins.str] destination: Path in the model.
2294
+ :param pulumi.Input[builtins.str] source: Local filesystem path.
2295
+ """
2296
+ pulumi.set(__self__, "destination", destination)
2297
+ pulumi.set(__self__, "source", source)
2298
+
2299
+ @property
2300
+ @pulumi.getter
2301
+ def destination(self) -> pulumi.Input[builtins.str]:
2302
+ """
2303
+ Path in the model.
2304
+ """
2305
+ return pulumi.get(self, "destination")
2306
+
2307
+ @destination.setter
2308
+ def destination(self, value: pulumi.Input[builtins.str]):
2309
+ pulumi.set(self, "destination", value)
2310
+
2311
+ @property
2312
+ @pulumi.getter
2313
+ def source(self) -> pulumi.Input[builtins.str]:
2314
+ """
2315
+ Local filesystem path.
2316
+ """
2317
+ return pulumi.get(self, "source")
2318
+
2319
+ @source.setter
2320
+ def source(self, value: pulumi.Input[builtins.str]):
2321
+ pulumi.set(self, "source", value)
2322
+
2323
+
1955
2324
  if not MYPY:
1956
2325
  class CustomModelGuardConfigurationArgsDict(TypedDict):
1957
2326
  intervention: pulumi.Input['CustomModelGuardConfigurationInterventionArgsDict']
@@ -128,6 +128,7 @@ class _ApiTokenCredentialState:
128
128
  pulumi.set(self, "name", value)
129
129
 
130
130
 
131
+ @pulumi.type_token("datarobot:index/apiTokenCredential:ApiTokenCredential")
131
132
  class ApiTokenCredential(pulumi.CustomResource):
132
133
  @overload
133
134
  def __init__(__self__,
@@ -24,7 +24,7 @@ class ApplicationSourceArgs:
24
24
  def __init__(__self__, *,
25
25
  base_environment_id: Optional[pulumi.Input[builtins.str]] = None,
26
26
  base_environment_version_id: Optional[pulumi.Input[builtins.str]] = None,
27
- files: Optional[Any] = None,
27
+ files: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]] = None,
28
28
  folder_path: Optional[pulumi.Input[builtins.str]] = None,
29
29
  name: Optional[pulumi.Input[builtins.str]] = None,
30
30
  resources: Optional[pulumi.Input['ApplicationSourceResourcesArgs']] = None,
@@ -33,7 +33,7 @@ class ApplicationSourceArgs:
33
33
  The set of arguments for constructing a ApplicationSource resource.
34
34
  :param pulumi.Input[builtins.str] base_environment_id: The ID of the base environment for the Application Source.
35
35
  :param pulumi.Input[builtins.str] base_environment_version_id: The ID of the base environment version for the Application Source.
36
- :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.
36
+ :param pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]] files: List of files to upload, each with a source (local path) and destination (path in application source).
37
37
  :param pulumi.Input[builtins.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.
38
38
  :param pulumi.Input[builtins.str] name: The name of the Application Source.
39
39
  :param pulumi.Input['ApplicationSourceResourcesArgs'] resources: The resources for the Application Source.
@@ -80,14 +80,14 @@ class ApplicationSourceArgs:
80
80
 
81
81
  @property
82
82
  @pulumi.getter
83
- def files(self) -> Optional[Any]:
83
+ def files(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]]:
84
84
  """
85
- 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.
85
+ List of files to upload, each with a source (local path) and destination (path in application source).
86
86
  """
87
87
  return pulumi.get(self, "files")
88
88
 
89
89
  @files.setter
90
- def files(self, value: Optional[Any]):
90
+ def files(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]]):
91
91
  pulumi.set(self, "files", value)
92
92
 
93
93
  @property
@@ -144,7 +144,7 @@ class _ApplicationSourceState:
144
144
  def __init__(__self__, *,
145
145
  base_environment_id: Optional[pulumi.Input[builtins.str]] = None,
146
146
  base_environment_version_id: Optional[pulumi.Input[builtins.str]] = None,
147
- files: Optional[Any] = None,
147
+ files: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]] = None,
148
148
  files_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
149
149
  folder_path: Optional[pulumi.Input[builtins.str]] = None,
150
150
  folder_path_hash: Optional[pulumi.Input[builtins.str]] = None,
@@ -156,7 +156,7 @@ class _ApplicationSourceState:
156
156
  Input properties used for looking up and filtering ApplicationSource resources.
157
157
  :param pulumi.Input[builtins.str] base_environment_id: The ID of the base environment for the Application Source.
158
158
  :param pulumi.Input[builtins.str] base_environment_version_id: The ID of the base environment version for the Application Source.
159
- :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.
159
+ :param pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]] files: List of files to upload, each with a source (local path) and destination (path in application source).
160
160
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] files_hashes: The hash of file contents for each file in files.
161
161
  :param pulumi.Input[builtins.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.
162
162
  :param pulumi.Input[builtins.str] folder_path_hash: The hash of the folder path contents.
@@ -212,14 +212,14 @@ class _ApplicationSourceState:
212
212
 
213
213
  @property
214
214
  @pulumi.getter
215
- def files(self) -> Optional[Any]:
215
+ def files(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]]:
216
216
  """
217
- 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.
217
+ List of files to upload, each with a source (local path) and destination (path in application source).
218
218
  """
219
219
  return pulumi.get(self, "files")
220
220
 
221
221
  @files.setter
222
- def files(self, value: Optional[Any]):
222
+ def files(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ApplicationSourceFileArgs']]]]):
223
223
  pulumi.set(self, "files", value)
224
224
 
225
225
  @property
@@ -307,6 +307,7 @@ class _ApplicationSourceState:
307
307
  pulumi.set(self, "version_id", value)
308
308
 
309
309
 
310
+ @pulumi.type_token("datarobot:index/applicationSource:ApplicationSource")
310
311
  class ApplicationSource(pulumi.CustomResource):
311
312
  @overload
312
313
  def __init__(__self__,
@@ -314,7 +315,7 @@ class ApplicationSource(pulumi.CustomResource):
314
315
  opts: Optional[pulumi.ResourceOptions] = None,
315
316
  base_environment_id: Optional[pulumi.Input[builtins.str]] = None,
316
317
  base_environment_version_id: Optional[pulumi.Input[builtins.str]] = None,
317
- files: Optional[Any] = None,
318
+ files: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSourceFileArgs', 'ApplicationSourceFileArgsDict']]]]] = None,
318
319
  folder_path: Optional[pulumi.Input[builtins.str]] = None,
319
320
  name: Optional[pulumi.Input[builtins.str]] = None,
320
321
  resources: Optional[pulumi.Input[Union['ApplicationSourceResourcesArgs', 'ApplicationSourceResourcesArgsDict']]] = None,
@@ -327,7 +328,7 @@ class ApplicationSource(pulumi.CustomResource):
327
328
  :param pulumi.ResourceOptions opts: Options for the resource.
328
329
  :param pulumi.Input[builtins.str] base_environment_id: The ID of the base environment for the Application Source.
329
330
  :param pulumi.Input[builtins.str] base_environment_version_id: The ID of the base environment version for the Application Source.
330
- :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.
331
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSourceFileArgs', 'ApplicationSourceFileArgsDict']]]] files: List of files to upload, each with a source (local path) and destination (path in application source).
331
332
  :param pulumi.Input[builtins.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.
332
333
  :param pulumi.Input[builtins.str] name: The name of the Application Source.
333
334
  :param pulumi.Input[Union['ApplicationSourceResourcesArgs', 'ApplicationSourceResourcesArgsDict']] resources: The resources for the Application Source.
@@ -359,7 +360,7 @@ class ApplicationSource(pulumi.CustomResource):
359
360
  opts: Optional[pulumi.ResourceOptions] = None,
360
361
  base_environment_id: Optional[pulumi.Input[builtins.str]] = None,
361
362
  base_environment_version_id: Optional[pulumi.Input[builtins.str]] = None,
362
- files: Optional[Any] = None,
363
+ files: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSourceFileArgs', 'ApplicationSourceFileArgsDict']]]]] = None,
363
364
  folder_path: Optional[pulumi.Input[builtins.str]] = None,
364
365
  name: Optional[pulumi.Input[builtins.str]] = None,
365
366
  resources: Optional[pulumi.Input[Union['ApplicationSourceResourcesArgs', 'ApplicationSourceResourcesArgsDict']]] = None,
@@ -395,7 +396,7 @@ class ApplicationSource(pulumi.CustomResource):
395
396
  opts: Optional[pulumi.ResourceOptions] = None,
396
397
  base_environment_id: Optional[pulumi.Input[builtins.str]] = None,
397
398
  base_environment_version_id: Optional[pulumi.Input[builtins.str]] = None,
398
- files: Optional[Any] = None,
399
+ files: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSourceFileArgs', 'ApplicationSourceFileArgsDict']]]]] = None,
399
400
  files_hashes: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
400
401
  folder_path: Optional[pulumi.Input[builtins.str]] = None,
401
402
  folder_path_hash: Optional[pulumi.Input[builtins.str]] = None,
@@ -412,7 +413,7 @@ class ApplicationSource(pulumi.CustomResource):
412
413
  :param pulumi.ResourceOptions opts: Options for the resource.
413
414
  :param pulumi.Input[builtins.str] base_environment_id: The ID of the base environment for the Application Source.
414
415
  :param pulumi.Input[builtins.str] base_environment_version_id: The ID of the base environment version for the Application Source.
415
- :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.
416
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ApplicationSourceFileArgs', 'ApplicationSourceFileArgsDict']]]] files: List of files to upload, each with a source (local path) and destination (path in application source).
416
417
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] files_hashes: The hash of file contents for each file in files.
417
418
  :param pulumi.Input[builtins.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.
418
419
  :param pulumi.Input[builtins.str] folder_path_hash: The hash of the folder path contents.
@@ -455,9 +456,9 @@ class ApplicationSource(pulumi.CustomResource):
455
456
 
456
457
  @property
457
458
  @pulumi.getter
458
- def files(self) -> pulumi.Output[Optional[Any]]:
459
+ def files(self) -> pulumi.Output[Optional[Sequence['outputs.ApplicationSourceFile']]]:
459
460
  """
460
- 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.
461
+ List of files to upload, each with a source (local path) and destination (path in application source).
461
462
  """
462
463
  return pulumi.get(self, "files")
463
464