@datarobot/pulumi-datarobot 0.1.32

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 (79) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +44 -0
  3. package/apiTokenCredential.d.ts +84 -0
  4. package/apiTokenCredential.js +70 -0
  5. package/apiTokenCredential.js.map +1 -0
  6. package/applicationSource.d.ts +111 -0
  7. package/applicationSource.js +77 -0
  8. package/applicationSource.js.map +1 -0
  9. package/basicCredential.d.ts +100 -0
  10. package/basicCredential.js +79 -0
  11. package/basicCredential.js.map +1 -0
  12. package/config/index.d.ts +1 -0
  13. package/config/index.js +21 -0
  14. package/config/index.js.map +1 -0
  15. package/config/vars.d.ts +8 -0
  16. package/config/vars.js +19 -0
  17. package/config/vars.js.map +1 -0
  18. package/customApplication.d.ts +124 -0
  19. package/customApplication.js +86 -0
  20. package/customApplication.js.map +1 -0
  21. package/customModel.d.ts +361 -0
  22. package/customModel.js +106 -0
  23. package/customModel.js.map +1 -0
  24. package/datasetFromFile.d.ts +76 -0
  25. package/datasetFromFile.js +73 -0
  26. package/datasetFromFile.js.map +1 -0
  27. package/deployment.d.ts +122 -0
  28. package/deployment.js +100 -0
  29. package/deployment.js.map +1 -0
  30. package/getGlobalModel.d.ts +66 -0
  31. package/getGlobalModel.js +47 -0
  32. package/getGlobalModel.js.map +1 -0
  33. package/googleCloudCredential.d.ts +63 -0
  34. package/googleCloudCredential.js +57 -0
  35. package/googleCloudCredential.js.map +1 -0
  36. package/index.d.ts +57 -0
  37. package/index.js +116 -0
  38. package/index.js.map +1 -0
  39. package/llmBlueprint.d.ts +118 -0
  40. package/llmBlueprint.js +85 -0
  41. package/llmBlueprint.js.map +1 -0
  42. package/package.json +29 -0
  43. package/package.json.bak +29 -0
  44. package/playground.d.ts +86 -0
  45. package/playground.js +70 -0
  46. package/playground.js.map +1 -0
  47. package/predictionEnvironment.d.ts +87 -0
  48. package/predictionEnvironment.js +71 -0
  49. package/predictionEnvironment.js.map +1 -0
  50. package/provider.d.ts +43 -0
  51. package/provider.js +48 -0
  52. package/provider.js.map +1 -0
  53. package/qaApplication.d.ts +148 -0
  54. package/qaApplication.js +104 -0
  55. package/qaApplication.js.map +1 -0
  56. package/registeredModel.d.ts +108 -0
  57. package/registeredModel.js +86 -0
  58. package/registeredModel.js.map +1 -0
  59. package/remoteRepository.d.ts +161 -0
  60. package/remoteRepository.js +98 -0
  61. package/remoteRepository.js.map +1 -0
  62. package/types/index.d.ts +3 -0
  63. package/types/index.js +11 -0
  64. package/types/index.js.map +1 -0
  65. package/types/input.d.ts +196 -0
  66. package/types/input.js +5 -0
  67. package/types/input.js.map +1 -0
  68. package/types/output.d.ts +195 -0
  69. package/types/output.js +5 -0
  70. package/types/output.js.map +1 -0
  71. package/useCase.d.ts +73 -0
  72. package/useCase.js +64 -0
  73. package/useCase.js.map +1 -0
  74. package/utilities.d.ts +8 -0
  75. package/utilities.js +101 -0
  76. package/utilities.js.map +1 -0
  77. package/vectorDatabase.d.ts +115 -0
  78. package/vectorDatabase.js +90 -0
  79. package/vectorDatabase.js.map +1 -0
@@ -0,0 +1,361 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Data set from file
6
+ */
7
+ export declare class CustomModel extends pulumi.CustomResource {
8
+ /**
9
+ * Get an existing CustomModel resource's state with the given name, ID, and optional extra
10
+ * properties used to qualify the lookup.
11
+ *
12
+ * @param name The _unique_ name of the resulting resource.
13
+ * @param id The _unique_ provider ID of the resource to lookup.
14
+ * @param state Any extra arguments used during the lookup.
15
+ * @param opts Optional settings to control the behavior of the CustomResource.
16
+ */
17
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CustomModelState, opts?: pulumi.CustomResourceOptions): CustomModel;
18
+ /**
19
+ * Returns true if the given object is an instance of CustomModel. This is designed to work even
20
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
21
+ */
22
+ static isInstance(obj: any): obj is CustomModel;
23
+ /**
24
+ * The ID of the base environment for the Custom Model.
25
+ */
26
+ readonly baseEnvironmentId: pulumi.Output<string>;
27
+ /**
28
+ * The name of the base environment for the Custom Model.
29
+ */
30
+ readonly baseEnvironmentName: pulumi.Output<string | undefined>;
31
+ /**
32
+ * The ID of the base environment version for the Custom Model.
33
+ */
34
+ readonly baseEnvironmentVersionId: pulumi.Output<string>;
35
+ /**
36
+ * Class labels for multiclass classification. Cannot be used with class*labels*file.
37
+ */
38
+ readonly classLabels: pulumi.Output<string[] | undefined>;
39
+ /**
40
+ * Path to file containing newline separated class labels for multiclass classification. Cannot be used with class_labels.
41
+ */
42
+ readonly classLabelsFile: pulumi.Output<string | undefined>;
43
+ /**
44
+ * The number of deployments for the Custom Model.
45
+ */
46
+ readonly deploymentsCount: pulumi.Output<number>;
47
+ /**
48
+ * The description of the Custom Model.
49
+ */
50
+ readonly description: pulumi.Output<string | undefined>;
51
+ /**
52
+ * The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Custom Model. If list is of strings, then basenames will be used for tuples.
53
+ */
54
+ readonly files: pulumi.Output<any | undefined>;
55
+ /**
56
+ * The path to a folder containing files to build the Custom Model. Each file in the folder is uploaded under path relative to a folder path.
57
+ */
58
+ readonly folderPath: pulumi.Output<string | undefined>;
59
+ /**
60
+ * The guard configurations for the Custom Model.
61
+ */
62
+ readonly guardConfigurations: pulumi.Output<outputs.CustomModelGuardConfiguration[] | undefined>;
63
+ /**
64
+ * Flag indicating if the Custom Model is a proxy model.
65
+ */
66
+ readonly isProxy: pulumi.Output<boolean>;
67
+ /**
68
+ * The language used to build the Custom Model.
69
+ */
70
+ readonly language: pulumi.Output<string | undefined>;
71
+ /**
72
+ * The name of the Custom Model.
73
+ */
74
+ readonly name: pulumi.Output<string>;
75
+ /**
76
+ * The negative class label of the Custom Model.
77
+ */
78
+ readonly negativeClassLabel: pulumi.Output<string>;
79
+ /**
80
+ * The overall moderation configuration for the Custom Model.
81
+ */
82
+ readonly overallModerationConfiguration: pulumi.Output<outputs.CustomModelOverallModerationConfiguration | undefined>;
83
+ /**
84
+ * The positive class label of the Custom Model.
85
+ */
86
+ readonly positiveClassLabel: pulumi.Output<string>;
87
+ /**
88
+ * The prediction threshold of the Custom Model.
89
+ */
90
+ readonly predictionThreshold: pulumi.Output<number>;
91
+ /**
92
+ * The resource settings for the Custom Model.
93
+ */
94
+ readonly resourceSettings: pulumi.Output<outputs.CustomModelResourceSettings>;
95
+ /**
96
+ * The runtime parameter values for the Custom Model.
97
+ */
98
+ readonly runtimeParameterValues: pulumi.Output<outputs.CustomModelRuntimeParameterValue[]>;
99
+ /**
100
+ * The ID of the source LLM Blueprint for the Custom Model.
101
+ */
102
+ readonly sourceLlmBlueprintId: pulumi.Output<string | undefined>;
103
+ /**
104
+ * The source remote repositories for the Custom Model.
105
+ */
106
+ readonly sourceRemoteRepositories: pulumi.Output<outputs.CustomModelSourceRemoteRepository[] | undefined>;
107
+ /**
108
+ * The target name of the Custom Model.
109
+ */
110
+ readonly targetName: pulumi.Output<string>;
111
+ /**
112
+ * The target type of the Custom Model.
113
+ */
114
+ readonly targetType: pulumi.Output<string | undefined>;
115
+ /**
116
+ * The name of the partition column in the training dataset assigned to the Custom Model.
117
+ */
118
+ readonly trainingDataPartitionColumn: pulumi.Output<string | undefined>;
119
+ /**
120
+ * The ID of the training dataset assigned to the Custom Model.
121
+ */
122
+ readonly trainingDatasetId: pulumi.Output<string | undefined>;
123
+ /**
124
+ * The name of the training dataset assigned to the Custom Model.
125
+ */
126
+ readonly trainingDatasetName: pulumi.Output<string>;
127
+ /**
128
+ * The version ID of the training dataset assigned to the Custom Model.
129
+ */
130
+ readonly trainingDatasetVersionId: pulumi.Output<string>;
131
+ /**
132
+ * The ID of the latest Custom Model version.
133
+ */
134
+ readonly versionId: pulumi.Output<string>;
135
+ /**
136
+ * Create a CustomModel resource with the given unique name, arguments, and options.
137
+ *
138
+ * @param name The _unique_ name of the resource.
139
+ * @param args The arguments to use to populate this resource's properties.
140
+ * @param opts A bag of options that control this resource's behavior.
141
+ */
142
+ constructor(name: string, args?: CustomModelArgs, opts?: pulumi.CustomResourceOptions);
143
+ }
144
+ /**
145
+ * Input properties used for looking up and filtering CustomModel resources.
146
+ */
147
+ export interface CustomModelState {
148
+ /**
149
+ * The ID of the base environment for the Custom Model.
150
+ */
151
+ baseEnvironmentId?: pulumi.Input<string>;
152
+ /**
153
+ * The name of the base environment for the Custom Model.
154
+ */
155
+ baseEnvironmentName?: pulumi.Input<string>;
156
+ /**
157
+ * The ID of the base environment version for the Custom Model.
158
+ */
159
+ baseEnvironmentVersionId?: pulumi.Input<string>;
160
+ /**
161
+ * Class labels for multiclass classification. Cannot be used with class*labels*file.
162
+ */
163
+ classLabels?: pulumi.Input<pulumi.Input<string>[]>;
164
+ /**
165
+ * Path to file containing newline separated class labels for multiclass classification. Cannot be used with class_labels.
166
+ */
167
+ classLabelsFile?: pulumi.Input<string>;
168
+ /**
169
+ * The number of deployments for the Custom Model.
170
+ */
171
+ deploymentsCount?: pulumi.Input<number>;
172
+ /**
173
+ * The description of the Custom Model.
174
+ */
175
+ description?: pulumi.Input<string>;
176
+ /**
177
+ * The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Custom Model. If list is of strings, then basenames will be used for tuples.
178
+ */
179
+ files?: any;
180
+ /**
181
+ * The path to a folder containing files to build the Custom Model. Each file in the folder is uploaded under path relative to a folder path.
182
+ */
183
+ folderPath?: pulumi.Input<string>;
184
+ /**
185
+ * The guard configurations for the Custom Model.
186
+ */
187
+ guardConfigurations?: pulumi.Input<pulumi.Input<inputs.CustomModelGuardConfiguration>[]>;
188
+ /**
189
+ * Flag indicating if the Custom Model is a proxy model.
190
+ */
191
+ isProxy?: pulumi.Input<boolean>;
192
+ /**
193
+ * The language used to build the Custom Model.
194
+ */
195
+ language?: pulumi.Input<string>;
196
+ /**
197
+ * The name of the Custom Model.
198
+ */
199
+ name?: pulumi.Input<string>;
200
+ /**
201
+ * The negative class label of the Custom Model.
202
+ */
203
+ negativeClassLabel?: pulumi.Input<string>;
204
+ /**
205
+ * The overall moderation configuration for the Custom Model.
206
+ */
207
+ overallModerationConfiguration?: pulumi.Input<inputs.CustomModelOverallModerationConfiguration>;
208
+ /**
209
+ * The positive class label of the Custom Model.
210
+ */
211
+ positiveClassLabel?: pulumi.Input<string>;
212
+ /**
213
+ * The prediction threshold of the Custom Model.
214
+ */
215
+ predictionThreshold?: pulumi.Input<number>;
216
+ /**
217
+ * The resource settings for the Custom Model.
218
+ */
219
+ resourceSettings?: pulumi.Input<inputs.CustomModelResourceSettings>;
220
+ /**
221
+ * The runtime parameter values for the Custom Model.
222
+ */
223
+ runtimeParameterValues?: pulumi.Input<pulumi.Input<inputs.CustomModelRuntimeParameterValue>[]>;
224
+ /**
225
+ * The ID of the source LLM Blueprint for the Custom Model.
226
+ */
227
+ sourceLlmBlueprintId?: pulumi.Input<string>;
228
+ /**
229
+ * The source remote repositories for the Custom Model.
230
+ */
231
+ sourceRemoteRepositories?: pulumi.Input<pulumi.Input<inputs.CustomModelSourceRemoteRepository>[]>;
232
+ /**
233
+ * The target name of the Custom Model.
234
+ */
235
+ targetName?: pulumi.Input<string>;
236
+ /**
237
+ * The target type of the Custom Model.
238
+ */
239
+ targetType?: pulumi.Input<string>;
240
+ /**
241
+ * The name of the partition column in the training dataset assigned to the Custom Model.
242
+ */
243
+ trainingDataPartitionColumn?: pulumi.Input<string>;
244
+ /**
245
+ * The ID of the training dataset assigned to the Custom Model.
246
+ */
247
+ trainingDatasetId?: pulumi.Input<string>;
248
+ /**
249
+ * The name of the training dataset assigned to the Custom Model.
250
+ */
251
+ trainingDatasetName?: pulumi.Input<string>;
252
+ /**
253
+ * The version ID of the training dataset assigned to the Custom Model.
254
+ */
255
+ trainingDatasetVersionId?: pulumi.Input<string>;
256
+ /**
257
+ * The ID of the latest Custom Model version.
258
+ */
259
+ versionId?: pulumi.Input<string>;
260
+ }
261
+ /**
262
+ * The set of arguments for constructing a CustomModel resource.
263
+ */
264
+ export interface CustomModelArgs {
265
+ /**
266
+ * The ID of the base environment for the Custom Model.
267
+ */
268
+ baseEnvironmentId?: pulumi.Input<string>;
269
+ /**
270
+ * The name of the base environment for the Custom Model.
271
+ */
272
+ baseEnvironmentName?: pulumi.Input<string>;
273
+ /**
274
+ * The ID of the base environment version for the Custom Model.
275
+ */
276
+ baseEnvironmentVersionId?: pulumi.Input<string>;
277
+ /**
278
+ * Class labels for multiclass classification. Cannot be used with class*labels*file.
279
+ */
280
+ classLabels?: pulumi.Input<pulumi.Input<string>[]>;
281
+ /**
282
+ * Path to file containing newline separated class labels for multiclass classification. Cannot be used with class_labels.
283
+ */
284
+ classLabelsFile?: pulumi.Input<string>;
285
+ /**
286
+ * The description of the Custom Model.
287
+ */
288
+ description?: pulumi.Input<string>;
289
+ /**
290
+ * The list of tuples, where values in each tuple are the local filesystem path and the path the file should be placed in the Custom Model. If list is of strings, then basenames will be used for tuples.
291
+ */
292
+ files?: any;
293
+ /**
294
+ * The path to a folder containing files to build the Custom Model. Each file in the folder is uploaded under path relative to a folder path.
295
+ */
296
+ folderPath?: pulumi.Input<string>;
297
+ /**
298
+ * The guard configurations for the Custom Model.
299
+ */
300
+ guardConfigurations?: pulumi.Input<pulumi.Input<inputs.CustomModelGuardConfiguration>[]>;
301
+ /**
302
+ * Flag indicating if the Custom Model is a proxy model.
303
+ */
304
+ isProxy?: pulumi.Input<boolean>;
305
+ /**
306
+ * The language used to build the Custom Model.
307
+ */
308
+ language?: pulumi.Input<string>;
309
+ /**
310
+ * The name of the Custom Model.
311
+ */
312
+ name?: pulumi.Input<string>;
313
+ /**
314
+ * The negative class label of the Custom Model.
315
+ */
316
+ negativeClassLabel?: pulumi.Input<string>;
317
+ /**
318
+ * The overall moderation configuration for the Custom Model.
319
+ */
320
+ overallModerationConfiguration?: pulumi.Input<inputs.CustomModelOverallModerationConfiguration>;
321
+ /**
322
+ * The positive class label of the Custom Model.
323
+ */
324
+ positiveClassLabel?: pulumi.Input<string>;
325
+ /**
326
+ * The prediction threshold of the Custom Model.
327
+ */
328
+ predictionThreshold?: pulumi.Input<number>;
329
+ /**
330
+ * The resource settings for the Custom Model.
331
+ */
332
+ resourceSettings?: pulumi.Input<inputs.CustomModelResourceSettings>;
333
+ /**
334
+ * The runtime parameter values for the Custom Model.
335
+ */
336
+ runtimeParameterValues?: pulumi.Input<pulumi.Input<inputs.CustomModelRuntimeParameterValue>[]>;
337
+ /**
338
+ * The ID of the source LLM Blueprint for the Custom Model.
339
+ */
340
+ sourceLlmBlueprintId?: pulumi.Input<string>;
341
+ /**
342
+ * The source remote repositories for the Custom Model.
343
+ */
344
+ sourceRemoteRepositories?: pulumi.Input<pulumi.Input<inputs.CustomModelSourceRemoteRepository>[]>;
345
+ /**
346
+ * The target name of the Custom Model.
347
+ */
348
+ targetName?: pulumi.Input<string>;
349
+ /**
350
+ * The target type of the Custom Model.
351
+ */
352
+ targetType?: pulumi.Input<string>;
353
+ /**
354
+ * The name of the partition column in the training dataset assigned to the Custom Model.
355
+ */
356
+ trainingDataPartitionColumn?: pulumi.Input<string>;
357
+ /**
358
+ * The ID of the training dataset assigned to the Custom Model.
359
+ */
360
+ trainingDatasetId?: pulumi.Input<string>;
361
+ }
package/customModel.js ADDED
@@ -0,0 +1,106 @@
1
+ "use strict";
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
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.CustomModel = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data set from file
10
+ */
11
+ class CustomModel extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing CustomModel resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name, id, state, opts) {
22
+ return new CustomModel(name, state, Object.assign(Object.assign({}, opts), { id: id }));
23
+ }
24
+ /**
25
+ * Returns true if the given object is an instance of CustomModel. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj) {
29
+ if (obj === undefined || obj === null) {
30
+ return false;
31
+ }
32
+ return obj['__pulumiType'] === CustomModel.__pulumiType;
33
+ }
34
+ constructor(name, argsOrState, opts) {
35
+ let resourceInputs = {};
36
+ opts = opts || {};
37
+ if (opts.id) {
38
+ const state = argsOrState;
39
+ resourceInputs["baseEnvironmentId"] = state ? state.baseEnvironmentId : undefined;
40
+ resourceInputs["baseEnvironmentName"] = state ? state.baseEnvironmentName : undefined;
41
+ resourceInputs["baseEnvironmentVersionId"] = state ? state.baseEnvironmentVersionId : undefined;
42
+ resourceInputs["classLabels"] = state ? state.classLabels : undefined;
43
+ resourceInputs["classLabelsFile"] = state ? state.classLabelsFile : undefined;
44
+ resourceInputs["deploymentsCount"] = state ? state.deploymentsCount : undefined;
45
+ resourceInputs["description"] = state ? state.description : undefined;
46
+ resourceInputs["files"] = state ? state.files : undefined;
47
+ resourceInputs["folderPath"] = state ? state.folderPath : undefined;
48
+ resourceInputs["guardConfigurations"] = state ? state.guardConfigurations : undefined;
49
+ resourceInputs["isProxy"] = state ? state.isProxy : undefined;
50
+ resourceInputs["language"] = state ? state.language : undefined;
51
+ resourceInputs["name"] = state ? state.name : undefined;
52
+ resourceInputs["negativeClassLabel"] = state ? state.negativeClassLabel : undefined;
53
+ resourceInputs["overallModerationConfiguration"] = state ? state.overallModerationConfiguration : undefined;
54
+ resourceInputs["positiveClassLabel"] = state ? state.positiveClassLabel : undefined;
55
+ resourceInputs["predictionThreshold"] = state ? state.predictionThreshold : undefined;
56
+ resourceInputs["resourceSettings"] = state ? state.resourceSettings : undefined;
57
+ resourceInputs["runtimeParameterValues"] = state ? state.runtimeParameterValues : undefined;
58
+ resourceInputs["sourceLlmBlueprintId"] = state ? state.sourceLlmBlueprintId : undefined;
59
+ resourceInputs["sourceRemoteRepositories"] = state ? state.sourceRemoteRepositories : undefined;
60
+ resourceInputs["targetName"] = state ? state.targetName : undefined;
61
+ resourceInputs["targetType"] = state ? state.targetType : undefined;
62
+ resourceInputs["trainingDataPartitionColumn"] = state ? state.trainingDataPartitionColumn : undefined;
63
+ resourceInputs["trainingDatasetId"] = state ? state.trainingDatasetId : undefined;
64
+ resourceInputs["trainingDatasetName"] = state ? state.trainingDatasetName : undefined;
65
+ resourceInputs["trainingDatasetVersionId"] = state ? state.trainingDatasetVersionId : undefined;
66
+ resourceInputs["versionId"] = state ? state.versionId : undefined;
67
+ }
68
+ else {
69
+ const args = argsOrState;
70
+ resourceInputs["baseEnvironmentId"] = args ? args.baseEnvironmentId : undefined;
71
+ resourceInputs["baseEnvironmentName"] = args ? args.baseEnvironmentName : undefined;
72
+ resourceInputs["baseEnvironmentVersionId"] = args ? args.baseEnvironmentVersionId : undefined;
73
+ resourceInputs["classLabels"] = args ? args.classLabels : undefined;
74
+ resourceInputs["classLabelsFile"] = args ? args.classLabelsFile : undefined;
75
+ resourceInputs["description"] = args ? args.description : undefined;
76
+ resourceInputs["files"] = args ? args.files : undefined;
77
+ resourceInputs["folderPath"] = args ? args.folderPath : undefined;
78
+ resourceInputs["guardConfigurations"] = args ? args.guardConfigurations : undefined;
79
+ resourceInputs["isProxy"] = args ? args.isProxy : undefined;
80
+ resourceInputs["language"] = args ? args.language : undefined;
81
+ resourceInputs["name"] = args ? args.name : undefined;
82
+ resourceInputs["negativeClassLabel"] = args ? args.negativeClassLabel : undefined;
83
+ resourceInputs["overallModerationConfiguration"] = args ? args.overallModerationConfiguration : undefined;
84
+ resourceInputs["positiveClassLabel"] = args ? args.positiveClassLabel : undefined;
85
+ resourceInputs["predictionThreshold"] = args ? args.predictionThreshold : undefined;
86
+ resourceInputs["resourceSettings"] = args ? args.resourceSettings : undefined;
87
+ resourceInputs["runtimeParameterValues"] = args ? args.runtimeParameterValues : undefined;
88
+ resourceInputs["sourceLlmBlueprintId"] = args ? args.sourceLlmBlueprintId : undefined;
89
+ resourceInputs["sourceRemoteRepositories"] = args ? args.sourceRemoteRepositories : undefined;
90
+ resourceInputs["targetName"] = args ? args.targetName : undefined;
91
+ resourceInputs["targetType"] = args ? args.targetType : undefined;
92
+ resourceInputs["trainingDataPartitionColumn"] = args ? args.trainingDataPartitionColumn : undefined;
93
+ resourceInputs["trainingDatasetId"] = args ? args.trainingDatasetId : undefined;
94
+ resourceInputs["deploymentsCount"] = undefined /*out*/;
95
+ resourceInputs["trainingDatasetName"] = undefined /*out*/;
96
+ resourceInputs["trainingDatasetVersionId"] = undefined /*out*/;
97
+ resourceInputs["versionId"] = undefined /*out*/;
98
+ }
99
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
100
+ super(CustomModel.__pulumiType, name, resourceInputs, opts);
101
+ }
102
+ }
103
+ exports.CustomModel = CustomModel;
104
+ /** @internal */
105
+ CustomModel.__pulumiType = 'datarobot:index/customModel:CustomModel';
106
+ //# sourceMappingURL=customModel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customModel.js","sourceRoot":"","sources":["../customModel.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,76 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Data set from file
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as datarobot from "@datarobot/pulumi-datarobot";
10
+ *
11
+ * const example = new datarobot.DatasetFromFile("example", {
12
+ * sourceFile: "[Path to file to upload]",
13
+ * useCaseId: datarobot_use_case.example.id,
14
+ * });
15
+ * export const exampleId = example.id;
16
+ * ```
17
+ */
18
+ export declare class DatasetFromFile extends pulumi.CustomResource {
19
+ /**
20
+ * Get an existing DatasetFromFile resource's state with the given name, ID, and optional extra
21
+ * properties used to qualify the lookup.
22
+ *
23
+ * @param name The _unique_ name of the resulting resource.
24
+ * @param id The _unique_ provider ID of the resource to lookup.
25
+ * @param state Any extra arguments used during the lookup.
26
+ * @param opts Optional settings to control the behavior of the CustomResource.
27
+ */
28
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DatasetFromFileState, opts?: pulumi.CustomResourceOptions): DatasetFromFile;
29
+ /**
30
+ * Returns true if the given object is an instance of DatasetFromFile. This is designed to work even
31
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
32
+ */
33
+ static isInstance(obj: any): obj is DatasetFromFile;
34
+ /**
35
+ * The path to the file to upload.
36
+ */
37
+ readonly sourceFile: pulumi.Output<string>;
38
+ /**
39
+ * The id of the Use Case.
40
+ */
41
+ readonly useCaseId: pulumi.Output<string>;
42
+ /**
43
+ * Create a DatasetFromFile resource with the given unique name, arguments, and options.
44
+ *
45
+ * @param name The _unique_ name of the resource.
46
+ * @param args The arguments to use to populate this resource's properties.
47
+ * @param opts A bag of options that control this resource's behavior.
48
+ */
49
+ constructor(name: string, args: DatasetFromFileArgs, opts?: pulumi.CustomResourceOptions);
50
+ }
51
+ /**
52
+ * Input properties used for looking up and filtering DatasetFromFile resources.
53
+ */
54
+ export interface DatasetFromFileState {
55
+ /**
56
+ * The path to the file to upload.
57
+ */
58
+ sourceFile?: pulumi.Input<string>;
59
+ /**
60
+ * The id of the Use Case.
61
+ */
62
+ useCaseId?: pulumi.Input<string>;
63
+ }
64
+ /**
65
+ * The set of arguments for constructing a DatasetFromFile resource.
66
+ */
67
+ export interface DatasetFromFileArgs {
68
+ /**
69
+ * The path to the file to upload.
70
+ */
71
+ sourceFile: pulumi.Input<string>;
72
+ /**
73
+ * The id of the Use Case.
74
+ */
75
+ useCaseId: pulumi.Input<string>;
76
+ }
@@ -0,0 +1,73 @@
1
+ "use strict";
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
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.DatasetFromFile = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Data set from file
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datarobot from "@datarobot/pulumi-datarobot";
16
+ *
17
+ * const example = new datarobot.DatasetFromFile("example", {
18
+ * sourceFile: "[Path to file to upload]",
19
+ * useCaseId: datarobot_use_case.example.id,
20
+ * });
21
+ * export const exampleId = example.id;
22
+ * ```
23
+ */
24
+ class DatasetFromFile extends pulumi.CustomResource {
25
+ /**
26
+ * Get an existing DatasetFromFile resource's state with the given name, ID, and optional extra
27
+ * properties used to qualify the lookup.
28
+ *
29
+ * @param name The _unique_ name of the resulting resource.
30
+ * @param id The _unique_ provider ID of the resource to lookup.
31
+ * @param state Any extra arguments used during the lookup.
32
+ * @param opts Optional settings to control the behavior of the CustomResource.
33
+ */
34
+ static get(name, id, state, opts) {
35
+ return new DatasetFromFile(name, state, Object.assign(Object.assign({}, opts), { id: id }));
36
+ }
37
+ /**
38
+ * Returns true if the given object is an instance of DatasetFromFile. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj) {
42
+ if (obj === undefined || obj === null) {
43
+ return false;
44
+ }
45
+ return obj['__pulumiType'] === DatasetFromFile.__pulumiType;
46
+ }
47
+ constructor(name, argsOrState, opts) {
48
+ let resourceInputs = {};
49
+ opts = opts || {};
50
+ if (opts.id) {
51
+ const state = argsOrState;
52
+ resourceInputs["sourceFile"] = state ? state.sourceFile : undefined;
53
+ resourceInputs["useCaseId"] = state ? state.useCaseId : undefined;
54
+ }
55
+ else {
56
+ const args = argsOrState;
57
+ if ((!args || args.sourceFile === undefined) && !opts.urn) {
58
+ throw new Error("Missing required property 'sourceFile'");
59
+ }
60
+ if ((!args || args.useCaseId === undefined) && !opts.urn) {
61
+ throw new Error("Missing required property 'useCaseId'");
62
+ }
63
+ resourceInputs["sourceFile"] = args ? args.sourceFile : undefined;
64
+ resourceInputs["useCaseId"] = args ? args.useCaseId : undefined;
65
+ }
66
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
67
+ super(DatasetFromFile.__pulumiType, name, resourceInputs, opts);
68
+ }
69
+ }
70
+ exports.DatasetFromFile = DatasetFromFile;
71
+ /** @internal */
72
+ DatasetFromFile.__pulumiType = 'datarobot:index/datasetFromFile:DatasetFromFile';
73
+ //# sourceMappingURL=datasetFromFile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"datasetFromFile.js","sourceRoot":"","sources":["../datasetFromFile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAjEL,0CAkEC;AApDG,gBAAgB;AACO,4BAAY,GAAG,iDAAiD,CAAC"}