@datarobot/pulumi-datarobot 0.4.8 → 0.5.0
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.
- package/batchPredictionJobDefinition.d.ts +347 -0
- package/batchPredictionJobDefinition.js +106 -0
- package/batchPredictionJobDefinition.js.map +1 -0
- package/index.d.ts +3 -0
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +180 -0
- package/types/output.d.ts +180 -0
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Batch Prediction Job Definition
|
|
6
|
+
*/
|
|
7
|
+
export declare class BatchPredictionJobDefinition extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing BatchPredictionJobDefinition 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?: BatchPredictionJobDefinitionState, opts?: pulumi.CustomResourceOptions): BatchPredictionJobDefinition;
|
|
18
|
+
/**
|
|
19
|
+
* Returns true if the given object is an instance of BatchPredictionJobDefinition. 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 BatchPredictionJobDefinition;
|
|
23
|
+
/**
|
|
24
|
+
* Default behavior is to abort the job if too many rows fail scoring. This will free up resources for other jobs that may score successfully. Set to false to unconditionally score every row no matter how many errors are encountered. Defaults to True.
|
|
25
|
+
*/
|
|
26
|
+
readonly abortOnError: pulumi.Output<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* Which strategy should be used to determine the chunk size. Can be either a named strategy or a fixed size in bytes.
|
|
29
|
+
*/
|
|
30
|
+
readonly chunkSize: pulumi.Output<any | undefined>;
|
|
31
|
+
/**
|
|
32
|
+
* Mapping with column renaming for output table.
|
|
33
|
+
*/
|
|
34
|
+
readonly columnNamesRemapping: pulumi.Output<{
|
|
35
|
+
[key: string]: string;
|
|
36
|
+
} | undefined>;
|
|
37
|
+
/**
|
|
38
|
+
* CSV intake and output settings.
|
|
39
|
+
*/
|
|
40
|
+
readonly csvSettings: pulumi.Output<outputs.BatchPredictionJobDefinitionCsvSettings>;
|
|
41
|
+
/**
|
|
42
|
+
* The ID of the deployment to use for the batch prediction job.
|
|
43
|
+
*/
|
|
44
|
+
readonly deploymentId: pulumi.Output<string>;
|
|
45
|
+
/**
|
|
46
|
+
* Whether or not the job definition should be active on a scheduled basis. If True, schedule is required.
|
|
47
|
+
*/
|
|
48
|
+
readonly enabled: pulumi.Output<boolean>;
|
|
49
|
+
/**
|
|
50
|
+
* Which algorithm will be used to calculate prediction explanations.
|
|
51
|
+
*/
|
|
52
|
+
readonly explanationAlgorithm: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Include the predictionStatus column in the output. Defaults to False.
|
|
55
|
+
*/
|
|
56
|
+
readonly includePredictionStatus: pulumi.Output<boolean>;
|
|
57
|
+
/**
|
|
58
|
+
* Flag that enables returning of all probability columns. Defaults to True.
|
|
59
|
+
*/
|
|
60
|
+
readonly includeProbabilities: pulumi.Output<boolean>;
|
|
61
|
+
/**
|
|
62
|
+
* List the subset of classes if a user doesn’t want all the classes. Defaults to [].
|
|
63
|
+
*/
|
|
64
|
+
readonly includeProbabilitiesClasses: pulumi.Output<string[] | undefined>;
|
|
65
|
+
/**
|
|
66
|
+
* A dict configuring how data is coming from.
|
|
67
|
+
*/
|
|
68
|
+
readonly intakeSettings: pulumi.Output<outputs.BatchPredictionJobDefinitionIntakeSettings>;
|
|
69
|
+
/**
|
|
70
|
+
* Compute prediction explanations for this amount of features.
|
|
71
|
+
*/
|
|
72
|
+
readonly maxExplanations: pulumi.Output<number>;
|
|
73
|
+
/**
|
|
74
|
+
* The name you want your job to be identified with. Must be unique across the organization’s existing jobs.
|
|
75
|
+
*/
|
|
76
|
+
readonly name: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Number of concurrent chunks to score simultaneously. Defaults to the available number of cores of the deployment. Lower it to leave resources for real-time scoring.
|
|
79
|
+
*/
|
|
80
|
+
readonly numConcurrent: pulumi.Output<number | undefined>;
|
|
81
|
+
/**
|
|
82
|
+
* A dict configuring how scored data is to be saved.
|
|
83
|
+
*/
|
|
84
|
+
readonly outputSettings: pulumi.Output<outputs.BatchPredictionJobDefinitionOutputSettings>;
|
|
85
|
+
/**
|
|
86
|
+
* Keep these columns from the scoring dataset in the scored dataset. This is useful for correlating predictions with source data.
|
|
87
|
+
*/
|
|
88
|
+
readonly passthroughColumns: pulumi.Output<string[] | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* To pass through every column from the scoring dataset, set this to all.
|
|
91
|
+
*/
|
|
92
|
+
readonly passthroughColumnsSet: pulumi.Output<string | undefined>;
|
|
93
|
+
/**
|
|
94
|
+
* Defaults to instance specified by deployment or system configuration.
|
|
95
|
+
*/
|
|
96
|
+
readonly predictionInstance: pulumi.Output<outputs.BatchPredictionJobDefinitionPredictionInstance | undefined>;
|
|
97
|
+
/**
|
|
98
|
+
* Threshold is the point that sets the class boundary for a predicted value. This value can be set between 0.0 and 1.0.
|
|
99
|
+
*/
|
|
100
|
+
readonly predictionThreshold: pulumi.Output<number | undefined>;
|
|
101
|
+
/**
|
|
102
|
+
* Add prediction warnings to the scored data. Currently only supported for regression models. Defaults to False.
|
|
103
|
+
*/
|
|
104
|
+
readonly predictionWarningEnabled: pulumi.Output<boolean>;
|
|
105
|
+
/**
|
|
106
|
+
* Defines at what intervals the job should run.
|
|
107
|
+
*/
|
|
108
|
+
readonly schedule: pulumi.Output<outputs.BatchPredictionJobDefinitionSchedule | undefined>;
|
|
109
|
+
/**
|
|
110
|
+
* Skips drift tracking on any predictions made from this job. This is useful when running non-production workloads to not affect drift tracking and cause unnecessary alerts. Defaults to false.
|
|
111
|
+
*/
|
|
112
|
+
readonly skipDriftTracking: pulumi.Output<boolean>;
|
|
113
|
+
/**
|
|
114
|
+
* Only compute prediction explanations for predictions above this threshold. Can be combined with threshold_low.
|
|
115
|
+
*/
|
|
116
|
+
readonly thresholdHigh: pulumi.Output<number | undefined>;
|
|
117
|
+
/**
|
|
118
|
+
* Only compute prediction explanations for predictions below this threshold. Can be combined with threshold_high.
|
|
119
|
+
*/
|
|
120
|
+
readonly thresholdLow: pulumi.Output<number | undefined>;
|
|
121
|
+
/**
|
|
122
|
+
* Configuration for time-series scoring.
|
|
123
|
+
*/
|
|
124
|
+
readonly timeseriesSettings: pulumi.Output<outputs.BatchPredictionJobDefinitionTimeseriesSettings | undefined>;
|
|
125
|
+
/**
|
|
126
|
+
* Create a BatchPredictionJobDefinition resource with the given unique name, arguments, and options.
|
|
127
|
+
*
|
|
128
|
+
* @param name The _unique_ name of the resource.
|
|
129
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
130
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
131
|
+
*/
|
|
132
|
+
constructor(name: string, args: BatchPredictionJobDefinitionArgs, opts?: pulumi.CustomResourceOptions);
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Input properties used for looking up and filtering BatchPredictionJobDefinition resources.
|
|
136
|
+
*/
|
|
137
|
+
export interface BatchPredictionJobDefinitionState {
|
|
138
|
+
/**
|
|
139
|
+
* Default behavior is to abort the job if too many rows fail scoring. This will free up resources for other jobs that may score successfully. Set to false to unconditionally score every row no matter how many errors are encountered. Defaults to True.
|
|
140
|
+
*/
|
|
141
|
+
abortOnError?: pulumi.Input<boolean>;
|
|
142
|
+
/**
|
|
143
|
+
* Which strategy should be used to determine the chunk size. Can be either a named strategy or a fixed size in bytes.
|
|
144
|
+
*/
|
|
145
|
+
chunkSize?: any;
|
|
146
|
+
/**
|
|
147
|
+
* Mapping with column renaming for output table.
|
|
148
|
+
*/
|
|
149
|
+
columnNamesRemapping?: pulumi.Input<{
|
|
150
|
+
[key: string]: pulumi.Input<string>;
|
|
151
|
+
}>;
|
|
152
|
+
/**
|
|
153
|
+
* CSV intake and output settings.
|
|
154
|
+
*/
|
|
155
|
+
csvSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionCsvSettings>;
|
|
156
|
+
/**
|
|
157
|
+
* The ID of the deployment to use for the batch prediction job.
|
|
158
|
+
*/
|
|
159
|
+
deploymentId?: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* Whether or not the job definition should be active on a scheduled basis. If True, schedule is required.
|
|
162
|
+
*/
|
|
163
|
+
enabled?: pulumi.Input<boolean>;
|
|
164
|
+
/**
|
|
165
|
+
* Which algorithm will be used to calculate prediction explanations.
|
|
166
|
+
*/
|
|
167
|
+
explanationAlgorithm?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* Include the predictionStatus column in the output. Defaults to False.
|
|
170
|
+
*/
|
|
171
|
+
includePredictionStatus?: pulumi.Input<boolean>;
|
|
172
|
+
/**
|
|
173
|
+
* Flag that enables returning of all probability columns. Defaults to True.
|
|
174
|
+
*/
|
|
175
|
+
includeProbabilities?: pulumi.Input<boolean>;
|
|
176
|
+
/**
|
|
177
|
+
* List the subset of classes if a user doesn’t want all the classes. Defaults to [].
|
|
178
|
+
*/
|
|
179
|
+
includeProbabilitiesClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
180
|
+
/**
|
|
181
|
+
* A dict configuring how data is coming from.
|
|
182
|
+
*/
|
|
183
|
+
intakeSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionIntakeSettings>;
|
|
184
|
+
/**
|
|
185
|
+
* Compute prediction explanations for this amount of features.
|
|
186
|
+
*/
|
|
187
|
+
maxExplanations?: pulumi.Input<number>;
|
|
188
|
+
/**
|
|
189
|
+
* The name you want your job to be identified with. Must be unique across the organization’s existing jobs.
|
|
190
|
+
*/
|
|
191
|
+
name?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* Number of concurrent chunks to score simultaneously. Defaults to the available number of cores of the deployment. Lower it to leave resources for real-time scoring.
|
|
194
|
+
*/
|
|
195
|
+
numConcurrent?: pulumi.Input<number>;
|
|
196
|
+
/**
|
|
197
|
+
* A dict configuring how scored data is to be saved.
|
|
198
|
+
*/
|
|
199
|
+
outputSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionOutputSettings>;
|
|
200
|
+
/**
|
|
201
|
+
* Keep these columns from the scoring dataset in the scored dataset. This is useful for correlating predictions with source data.
|
|
202
|
+
*/
|
|
203
|
+
passthroughColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
204
|
+
/**
|
|
205
|
+
* To pass through every column from the scoring dataset, set this to all.
|
|
206
|
+
*/
|
|
207
|
+
passthroughColumnsSet?: pulumi.Input<string>;
|
|
208
|
+
/**
|
|
209
|
+
* Defaults to instance specified by deployment or system configuration.
|
|
210
|
+
*/
|
|
211
|
+
predictionInstance?: pulumi.Input<inputs.BatchPredictionJobDefinitionPredictionInstance>;
|
|
212
|
+
/**
|
|
213
|
+
* Threshold is the point that sets the class boundary for a predicted value. This value can be set between 0.0 and 1.0.
|
|
214
|
+
*/
|
|
215
|
+
predictionThreshold?: pulumi.Input<number>;
|
|
216
|
+
/**
|
|
217
|
+
* Add prediction warnings to the scored data. Currently only supported for regression models. Defaults to False.
|
|
218
|
+
*/
|
|
219
|
+
predictionWarningEnabled?: pulumi.Input<boolean>;
|
|
220
|
+
/**
|
|
221
|
+
* Defines at what intervals the job should run.
|
|
222
|
+
*/
|
|
223
|
+
schedule?: pulumi.Input<inputs.BatchPredictionJobDefinitionSchedule>;
|
|
224
|
+
/**
|
|
225
|
+
* Skips drift tracking on any predictions made from this job. This is useful when running non-production workloads to not affect drift tracking and cause unnecessary alerts. Defaults to false.
|
|
226
|
+
*/
|
|
227
|
+
skipDriftTracking?: pulumi.Input<boolean>;
|
|
228
|
+
/**
|
|
229
|
+
* Only compute prediction explanations for predictions above this threshold. Can be combined with threshold_low.
|
|
230
|
+
*/
|
|
231
|
+
thresholdHigh?: pulumi.Input<number>;
|
|
232
|
+
/**
|
|
233
|
+
* Only compute prediction explanations for predictions below this threshold. Can be combined with threshold_high.
|
|
234
|
+
*/
|
|
235
|
+
thresholdLow?: pulumi.Input<number>;
|
|
236
|
+
/**
|
|
237
|
+
* Configuration for time-series scoring.
|
|
238
|
+
*/
|
|
239
|
+
timeseriesSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionTimeseriesSettings>;
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* The set of arguments for constructing a BatchPredictionJobDefinition resource.
|
|
243
|
+
*/
|
|
244
|
+
export interface BatchPredictionJobDefinitionArgs {
|
|
245
|
+
/**
|
|
246
|
+
* Default behavior is to abort the job if too many rows fail scoring. This will free up resources for other jobs that may score successfully. Set to false to unconditionally score every row no matter how many errors are encountered. Defaults to True.
|
|
247
|
+
*/
|
|
248
|
+
abortOnError?: pulumi.Input<boolean>;
|
|
249
|
+
/**
|
|
250
|
+
* Which strategy should be used to determine the chunk size. Can be either a named strategy or a fixed size in bytes.
|
|
251
|
+
*/
|
|
252
|
+
chunkSize?: any;
|
|
253
|
+
/**
|
|
254
|
+
* Mapping with column renaming for output table.
|
|
255
|
+
*/
|
|
256
|
+
columnNamesRemapping?: pulumi.Input<{
|
|
257
|
+
[key: string]: pulumi.Input<string>;
|
|
258
|
+
}>;
|
|
259
|
+
/**
|
|
260
|
+
* CSV intake and output settings.
|
|
261
|
+
*/
|
|
262
|
+
csvSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionCsvSettings>;
|
|
263
|
+
/**
|
|
264
|
+
* The ID of the deployment to use for the batch prediction job.
|
|
265
|
+
*/
|
|
266
|
+
deploymentId: pulumi.Input<string>;
|
|
267
|
+
/**
|
|
268
|
+
* Whether or not the job definition should be active on a scheduled basis. If True, schedule is required.
|
|
269
|
+
*/
|
|
270
|
+
enabled?: pulumi.Input<boolean>;
|
|
271
|
+
/**
|
|
272
|
+
* Which algorithm will be used to calculate prediction explanations.
|
|
273
|
+
*/
|
|
274
|
+
explanationAlgorithm?: pulumi.Input<string>;
|
|
275
|
+
/**
|
|
276
|
+
* Include the predictionStatus column in the output. Defaults to False.
|
|
277
|
+
*/
|
|
278
|
+
includePredictionStatus?: pulumi.Input<boolean>;
|
|
279
|
+
/**
|
|
280
|
+
* Flag that enables returning of all probability columns. Defaults to True.
|
|
281
|
+
*/
|
|
282
|
+
includeProbabilities?: pulumi.Input<boolean>;
|
|
283
|
+
/**
|
|
284
|
+
* List the subset of classes if a user doesn’t want all the classes. Defaults to [].
|
|
285
|
+
*/
|
|
286
|
+
includeProbabilitiesClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
287
|
+
/**
|
|
288
|
+
* A dict configuring how data is coming from.
|
|
289
|
+
*/
|
|
290
|
+
intakeSettings: pulumi.Input<inputs.BatchPredictionJobDefinitionIntakeSettings>;
|
|
291
|
+
/**
|
|
292
|
+
* Compute prediction explanations for this amount of features.
|
|
293
|
+
*/
|
|
294
|
+
maxExplanations?: pulumi.Input<number>;
|
|
295
|
+
/**
|
|
296
|
+
* The name you want your job to be identified with. Must be unique across the organization’s existing jobs.
|
|
297
|
+
*/
|
|
298
|
+
name?: pulumi.Input<string>;
|
|
299
|
+
/**
|
|
300
|
+
* Number of concurrent chunks to score simultaneously. Defaults to the available number of cores of the deployment. Lower it to leave resources for real-time scoring.
|
|
301
|
+
*/
|
|
302
|
+
numConcurrent?: pulumi.Input<number>;
|
|
303
|
+
/**
|
|
304
|
+
* A dict configuring how scored data is to be saved.
|
|
305
|
+
*/
|
|
306
|
+
outputSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionOutputSettings>;
|
|
307
|
+
/**
|
|
308
|
+
* Keep these columns from the scoring dataset in the scored dataset. This is useful for correlating predictions with source data.
|
|
309
|
+
*/
|
|
310
|
+
passthroughColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
311
|
+
/**
|
|
312
|
+
* To pass through every column from the scoring dataset, set this to all.
|
|
313
|
+
*/
|
|
314
|
+
passthroughColumnsSet?: pulumi.Input<string>;
|
|
315
|
+
/**
|
|
316
|
+
* Defaults to instance specified by deployment or system configuration.
|
|
317
|
+
*/
|
|
318
|
+
predictionInstance?: pulumi.Input<inputs.BatchPredictionJobDefinitionPredictionInstance>;
|
|
319
|
+
/**
|
|
320
|
+
* Threshold is the point that sets the class boundary for a predicted value. This value can be set between 0.0 and 1.0.
|
|
321
|
+
*/
|
|
322
|
+
predictionThreshold?: pulumi.Input<number>;
|
|
323
|
+
/**
|
|
324
|
+
* Add prediction warnings to the scored data. Currently only supported for regression models. Defaults to False.
|
|
325
|
+
*/
|
|
326
|
+
predictionWarningEnabled?: pulumi.Input<boolean>;
|
|
327
|
+
/**
|
|
328
|
+
* Defines at what intervals the job should run.
|
|
329
|
+
*/
|
|
330
|
+
schedule?: pulumi.Input<inputs.BatchPredictionJobDefinitionSchedule>;
|
|
331
|
+
/**
|
|
332
|
+
* Skips drift tracking on any predictions made from this job. This is useful when running non-production workloads to not affect drift tracking and cause unnecessary alerts. Defaults to false.
|
|
333
|
+
*/
|
|
334
|
+
skipDriftTracking?: pulumi.Input<boolean>;
|
|
335
|
+
/**
|
|
336
|
+
* Only compute prediction explanations for predictions above this threshold. Can be combined with threshold_low.
|
|
337
|
+
*/
|
|
338
|
+
thresholdHigh?: pulumi.Input<number>;
|
|
339
|
+
/**
|
|
340
|
+
* Only compute prediction explanations for predictions below this threshold. Can be combined with threshold_high.
|
|
341
|
+
*/
|
|
342
|
+
thresholdLow?: pulumi.Input<number>;
|
|
343
|
+
/**
|
|
344
|
+
* Configuration for time-series scoring.
|
|
345
|
+
*/
|
|
346
|
+
timeseriesSettings?: pulumi.Input<inputs.BatchPredictionJobDefinitionTimeseriesSettings>;
|
|
347
|
+
}
|
|
@@ -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.BatchPredictionJobDefinition = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Batch Prediction Job Definition
|
|
10
|
+
*/
|
|
11
|
+
class BatchPredictionJobDefinition extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing BatchPredictionJobDefinition 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 BatchPredictionJobDefinition(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of BatchPredictionJobDefinition. 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'] === BatchPredictionJobDefinition.__pulumiType;
|
|
33
|
+
}
|
|
34
|
+
constructor(name, argsOrState, opts) {
|
|
35
|
+
let resourceInputs = {};
|
|
36
|
+
opts = opts || {};
|
|
37
|
+
if (opts.id) {
|
|
38
|
+
const state = argsOrState;
|
|
39
|
+
resourceInputs["abortOnError"] = state ? state.abortOnError : undefined;
|
|
40
|
+
resourceInputs["chunkSize"] = state ? state.chunkSize : undefined;
|
|
41
|
+
resourceInputs["columnNamesRemapping"] = state ? state.columnNamesRemapping : undefined;
|
|
42
|
+
resourceInputs["csvSettings"] = state ? state.csvSettings : undefined;
|
|
43
|
+
resourceInputs["deploymentId"] = state ? state.deploymentId : undefined;
|
|
44
|
+
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
45
|
+
resourceInputs["explanationAlgorithm"] = state ? state.explanationAlgorithm : undefined;
|
|
46
|
+
resourceInputs["includePredictionStatus"] = state ? state.includePredictionStatus : undefined;
|
|
47
|
+
resourceInputs["includeProbabilities"] = state ? state.includeProbabilities : undefined;
|
|
48
|
+
resourceInputs["includeProbabilitiesClasses"] = state ? state.includeProbabilitiesClasses : undefined;
|
|
49
|
+
resourceInputs["intakeSettings"] = state ? state.intakeSettings : undefined;
|
|
50
|
+
resourceInputs["maxExplanations"] = state ? state.maxExplanations : undefined;
|
|
51
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
52
|
+
resourceInputs["numConcurrent"] = state ? state.numConcurrent : undefined;
|
|
53
|
+
resourceInputs["outputSettings"] = state ? state.outputSettings : undefined;
|
|
54
|
+
resourceInputs["passthroughColumns"] = state ? state.passthroughColumns : undefined;
|
|
55
|
+
resourceInputs["passthroughColumnsSet"] = state ? state.passthroughColumnsSet : undefined;
|
|
56
|
+
resourceInputs["predictionInstance"] = state ? state.predictionInstance : undefined;
|
|
57
|
+
resourceInputs["predictionThreshold"] = state ? state.predictionThreshold : undefined;
|
|
58
|
+
resourceInputs["predictionWarningEnabled"] = state ? state.predictionWarningEnabled : undefined;
|
|
59
|
+
resourceInputs["schedule"] = state ? state.schedule : undefined;
|
|
60
|
+
resourceInputs["skipDriftTracking"] = state ? state.skipDriftTracking : undefined;
|
|
61
|
+
resourceInputs["thresholdHigh"] = state ? state.thresholdHigh : undefined;
|
|
62
|
+
resourceInputs["thresholdLow"] = state ? state.thresholdLow : undefined;
|
|
63
|
+
resourceInputs["timeseriesSettings"] = state ? state.timeseriesSettings : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.deploymentId === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'deploymentId'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.intakeSettings === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'intakeSettings'");
|
|
72
|
+
}
|
|
73
|
+
resourceInputs["abortOnError"] = args ? args.abortOnError : undefined;
|
|
74
|
+
resourceInputs["chunkSize"] = args ? args.chunkSize : undefined;
|
|
75
|
+
resourceInputs["columnNamesRemapping"] = args ? args.columnNamesRemapping : undefined;
|
|
76
|
+
resourceInputs["csvSettings"] = args ? args.csvSettings : undefined;
|
|
77
|
+
resourceInputs["deploymentId"] = args ? args.deploymentId : undefined;
|
|
78
|
+
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
79
|
+
resourceInputs["explanationAlgorithm"] = args ? args.explanationAlgorithm : undefined;
|
|
80
|
+
resourceInputs["includePredictionStatus"] = args ? args.includePredictionStatus : undefined;
|
|
81
|
+
resourceInputs["includeProbabilities"] = args ? args.includeProbabilities : undefined;
|
|
82
|
+
resourceInputs["includeProbabilitiesClasses"] = args ? args.includeProbabilitiesClasses : undefined;
|
|
83
|
+
resourceInputs["intakeSettings"] = args ? args.intakeSettings : undefined;
|
|
84
|
+
resourceInputs["maxExplanations"] = args ? args.maxExplanations : undefined;
|
|
85
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
86
|
+
resourceInputs["numConcurrent"] = args ? args.numConcurrent : undefined;
|
|
87
|
+
resourceInputs["outputSettings"] = args ? args.outputSettings : undefined;
|
|
88
|
+
resourceInputs["passthroughColumns"] = args ? args.passthroughColumns : undefined;
|
|
89
|
+
resourceInputs["passthroughColumnsSet"] = args ? args.passthroughColumnsSet : undefined;
|
|
90
|
+
resourceInputs["predictionInstance"] = args ? args.predictionInstance : undefined;
|
|
91
|
+
resourceInputs["predictionThreshold"] = args ? args.predictionThreshold : undefined;
|
|
92
|
+
resourceInputs["predictionWarningEnabled"] = args ? args.predictionWarningEnabled : undefined;
|
|
93
|
+
resourceInputs["schedule"] = args ? args.schedule : undefined;
|
|
94
|
+
resourceInputs["skipDriftTracking"] = args ? args.skipDriftTracking : undefined;
|
|
95
|
+
resourceInputs["thresholdHigh"] = args ? args.thresholdHigh : undefined;
|
|
96
|
+
resourceInputs["thresholdLow"] = args ? args.thresholdLow : undefined;
|
|
97
|
+
resourceInputs["timeseriesSettings"] = args ? args.timeseriesSettings : undefined;
|
|
98
|
+
}
|
|
99
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
100
|
+
super(BatchPredictionJobDefinition.__pulumiType, name, resourceInputs, opts);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.BatchPredictionJobDefinition = BatchPredictionJobDefinition;
|
|
104
|
+
/** @internal */
|
|
105
|
+
BatchPredictionJobDefinition.__pulumiType = 'datarobot:index/batchPredictionJobDefinition:BatchPredictionJobDefinition';
|
|
106
|
+
//# sourceMappingURL=batchPredictionJobDefinition.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batchPredictionJobDefinition.js","sourceRoot":"","sources":["../batchPredictionJobDefinition.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IA+GD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACvF;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AA3ML,oEA4MC;AA9LG,gBAAgB;AACO,yCAAY,GAAG,2EAA2E,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export declare const ApplicationSource: typeof import("./applicationSource").App
|
|
|
7
7
|
export { BasicCredentialArgs, BasicCredentialState } from "./basicCredential";
|
|
8
8
|
export type BasicCredential = import("./basicCredential").BasicCredential;
|
|
9
9
|
export declare const BasicCredential: typeof import("./basicCredential").BasicCredential;
|
|
10
|
+
export { BatchPredictionJobDefinitionArgs, BatchPredictionJobDefinitionState } from "./batchPredictionJobDefinition";
|
|
11
|
+
export type BatchPredictionJobDefinition = import("./batchPredictionJobDefinition").BatchPredictionJobDefinition;
|
|
12
|
+
export declare const BatchPredictionJobDefinition: typeof import("./batchPredictionJobDefinition").BatchPredictionJobDefinition;
|
|
10
13
|
export { CustomApplicationArgs, CustomApplicationState } from "./customApplication";
|
|
11
14
|
export type CustomApplication = import("./customApplication").CustomApplication;
|
|
12
15
|
export declare const CustomApplication: typeof import("./customApplication").CustomApplication;
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.types = exports.config = exports.VectorDatabase = exports.UseCase = exports.RemoteRepository = exports.RegisteredModelFromLeaderboard = exports.RegisteredModel = exports.QaApplication = exports.Provider = exports.PredictionEnvironment = exports.Playground = exports.LlmBlueprint = exports.GoogleCloudCredential = exports.getGlobalModelOutput = exports.getGlobalModel = exports.getExecutionEnvironmentOutput = exports.getExecutionEnvironment = exports.ExecutionEnvironment = exports.Deployment = exports.Datastore = exports.Datasource = exports.DatasetFromUrl = exports.DatasetFromFile = exports.DatasetFromDatasource = exports.CustomModel = exports.CustomJob = exports.CustomApplication = exports.BasicCredential = exports.ApplicationSource = exports.ApiTokenCredential = void 0;
|
|
5
|
+
exports.types = exports.config = exports.VectorDatabase = exports.UseCase = exports.RemoteRepository = exports.RegisteredModelFromLeaderboard = exports.RegisteredModel = exports.QaApplication = exports.Provider = exports.PredictionEnvironment = exports.Playground = exports.LlmBlueprint = exports.GoogleCloudCredential = exports.getGlobalModelOutput = exports.getGlobalModel = exports.getExecutionEnvironmentOutput = exports.getExecutionEnvironment = exports.ExecutionEnvironment = exports.Deployment = exports.Datastore = exports.Datasource = exports.DatasetFromUrl = exports.DatasetFromFile = exports.DatasetFromDatasource = exports.CustomModel = exports.CustomJob = exports.CustomApplication = exports.BatchPredictionJobDefinition = exports.BasicCredential = exports.ApplicationSource = exports.ApiTokenCredential = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.ApiTokenCredential = null;
|
|
@@ -11,6 +11,8 @@ exports.ApplicationSource = null;
|
|
|
11
11
|
utilities.lazyLoad(exports, ["ApplicationSource"], () => require("./applicationSource"));
|
|
12
12
|
exports.BasicCredential = null;
|
|
13
13
|
utilities.lazyLoad(exports, ["BasicCredential"], () => require("./basicCredential"));
|
|
14
|
+
exports.BatchPredictionJobDefinition = null;
|
|
15
|
+
utilities.lazyLoad(exports, ["BatchPredictionJobDefinition"], () => require("./batchPredictionJobDefinition"));
|
|
14
16
|
exports.CustomApplication = null;
|
|
15
17
|
utilities.lazyLoad(exports, ["CustomApplication"], () => require("./customApplication"));
|
|
16
18
|
exports.CustomJob = null;
|
|
@@ -74,6 +76,8 @@ const _module = {
|
|
|
74
76
|
return new exports.ApplicationSource(name, undefined, { urn });
|
|
75
77
|
case "datarobot:index/basicCredential:BasicCredential":
|
|
76
78
|
return new exports.BasicCredential(name, undefined, { urn });
|
|
79
|
+
case "datarobot:index/batchPredictionJobDefinition:BatchPredictionJobDefinition":
|
|
80
|
+
return new exports.BatchPredictionJobDefinition(name, undefined, { urn });
|
|
77
81
|
case "datarobot:index/customApplication:CustomApplication":
|
|
78
82
|
return new exports.CustomApplication(name, undefined, { urn });
|
|
79
83
|
case "datarobot:index/customJob:CustomJob":
|
|
@@ -122,6 +126,7 @@ const _module = {
|
|
|
122
126
|
pulumi.runtime.registerResourceModule("datarobot", "index/apiTokenCredential", _module);
|
|
123
127
|
pulumi.runtime.registerResourceModule("datarobot", "index/applicationSource", _module);
|
|
124
128
|
pulumi.runtime.registerResourceModule("datarobot", "index/basicCredential", _module);
|
|
129
|
+
pulumi.runtime.registerResourceModule("datarobot", "index/batchPredictionJobDefinition", _module);
|
|
125
130
|
pulumi.runtime.registerResourceModule("datarobot", "index/customApplication", _module);
|
|
126
131
|
pulumi.runtime.registerResourceModule("datarobot", "index/customJob", _module);
|
|
127
132
|
pulumi.runtime.registerResourceModule("datarobot", "index/customModel", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -14,6 +14,186 @@ export interface ApplicationSourceRuntimeParameterValue {
|
|
|
14
14
|
*/
|
|
15
15
|
value: pulumi.Input<string>;
|
|
16
16
|
}
|
|
17
|
+
export interface BatchPredictionJobDefinitionCsvSettings {
|
|
18
|
+
/**
|
|
19
|
+
* Fields are delimited by this character. Use the string tab to denote TSV (TAB separated values). Must be either a one-character string or the string tab.
|
|
20
|
+
*/
|
|
21
|
+
delimiter?: pulumi.Input<string>;
|
|
22
|
+
/**
|
|
23
|
+
* Encoding for the CSV files.
|
|
24
|
+
*/
|
|
25
|
+
encoding?: pulumi.Input<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Fields containing the delimiter must be quoted using this character.
|
|
28
|
+
*/
|
|
29
|
+
quotechar?: pulumi.Input<string>;
|
|
30
|
+
}
|
|
31
|
+
export interface BatchPredictionJobDefinitionIntakeSettings {
|
|
32
|
+
/**
|
|
33
|
+
* The name of specified database catalog for JDBC type.
|
|
34
|
+
*/
|
|
35
|
+
catalog?: pulumi.Input<string>;
|
|
36
|
+
/**
|
|
37
|
+
* The ID of the credentials for S3 or JDBC data source.
|
|
38
|
+
*/
|
|
39
|
+
credentialId?: pulumi.Input<string>;
|
|
40
|
+
/**
|
|
41
|
+
* The ID of the external data store connected to the JDBC data source.
|
|
42
|
+
*/
|
|
43
|
+
dataStoreId?: pulumi.Input<string>;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the dataset to score for dataset type.
|
|
46
|
+
*/
|
|
47
|
+
datasetId?: pulumi.Input<string>;
|
|
48
|
+
/**
|
|
49
|
+
* Any non-default endpoint URL for S3 access.
|
|
50
|
+
*/
|
|
51
|
+
endpointUrl?: pulumi.Input<string>;
|
|
52
|
+
/**
|
|
53
|
+
* Changing the fetchSize can be used to balance throughput and memory usage for JDBC type.
|
|
54
|
+
*/
|
|
55
|
+
fetchSize?: pulumi.Input<number>;
|
|
56
|
+
/**
|
|
57
|
+
* String path to file of scoring data for localFile type.
|
|
58
|
+
*/
|
|
59
|
+
file?: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* A self-supplied SELECT statement of the data set you wish to predict for JDBC type.
|
|
62
|
+
*/
|
|
63
|
+
query?: pulumi.Input<string>;
|
|
64
|
+
/**
|
|
65
|
+
* The name of specified database schema for JDBC type.
|
|
66
|
+
*/
|
|
67
|
+
schema?: pulumi.Input<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The name of specified database table for JDBC type.
|
|
70
|
+
*/
|
|
71
|
+
table?: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Type of data source.
|
|
74
|
+
*/
|
|
75
|
+
type: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* The URL to score (e.g.: s3://bucket/key) for S3 type.
|
|
78
|
+
*/
|
|
79
|
+
url?: pulumi.Input<string>;
|
|
80
|
+
}
|
|
81
|
+
export interface BatchPredictionJobDefinitionOutputSettings {
|
|
82
|
+
/**
|
|
83
|
+
* The name of specified database catalog for JDBC type.
|
|
84
|
+
*/
|
|
85
|
+
catalog?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* If no existing table is detected, attempt to create it before writing data for JDBC type.
|
|
88
|
+
*/
|
|
89
|
+
createTableIfNotExists?: pulumi.Input<boolean>;
|
|
90
|
+
/**
|
|
91
|
+
* The ID of the credentials for S3 or JDBC data source.
|
|
92
|
+
*/
|
|
93
|
+
credentialId?: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* The ID of the external data store connected to the JDBC data source.
|
|
96
|
+
*/
|
|
97
|
+
dataStoreId?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* Any non-default endpoint URL for S3 access.
|
|
100
|
+
*/
|
|
101
|
+
endpointUrl?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Path to save the scored data as CSV for localFile type.
|
|
104
|
+
*/
|
|
105
|
+
path?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The name of specified database schema for JDBC type.
|
|
108
|
+
*/
|
|
109
|
+
schema?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* The type of insertion statement to create for JDBC type.
|
|
112
|
+
*/
|
|
113
|
+
statementType?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* The name of specified database table for JDBC type.
|
|
116
|
+
*/
|
|
117
|
+
table?: pulumi.Input<string>;
|
|
118
|
+
/**
|
|
119
|
+
* Type of output.
|
|
120
|
+
*/
|
|
121
|
+
type?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* A list of strings containing those column names to be updated for JDBC type.
|
|
124
|
+
*/
|
|
125
|
+
updateColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
126
|
+
/**
|
|
127
|
+
* The URL for storing the results (e.g.: s3://bucket/key) for S3 type.
|
|
128
|
+
*/
|
|
129
|
+
url?: pulumi.Input<string>;
|
|
130
|
+
/**
|
|
131
|
+
* A list of strings containing those column names to be selected for JDBC type.
|
|
132
|
+
*/
|
|
133
|
+
whereColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
134
|
+
}
|
|
135
|
+
export interface BatchPredictionJobDefinitionPredictionInstance {
|
|
136
|
+
/**
|
|
137
|
+
* By default, prediction requests will use the API key of the user that created the job. This allows you to make requests on behalf of other users.
|
|
138
|
+
*/
|
|
139
|
+
apiKey?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* If running a job against a prediction instance in the Managed AI Cloud, you must provide the organization level DataRobot-Key.
|
|
142
|
+
*/
|
|
143
|
+
datarobotKey?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Hostname of the prediction instance.
|
|
146
|
+
*/
|
|
147
|
+
hostName: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* Set to false to run prediction requests from the batch prediction job without SSL. Defaults to true.
|
|
150
|
+
*/
|
|
151
|
+
sslEnabled?: pulumi.Input<boolean>;
|
|
152
|
+
}
|
|
153
|
+
export interface BatchPredictionJobDefinitionSchedule {
|
|
154
|
+
/**
|
|
155
|
+
* Days of the month when the job will run.
|
|
156
|
+
*/
|
|
157
|
+
dayOfMonths: pulumi.Input<pulumi.Input<string>[]>;
|
|
158
|
+
/**
|
|
159
|
+
* Days of the week when the job will run.
|
|
160
|
+
*/
|
|
161
|
+
dayOfWeeks: pulumi.Input<pulumi.Input<string>[]>;
|
|
162
|
+
/**
|
|
163
|
+
* Hours of the day when the job will run.
|
|
164
|
+
*/
|
|
165
|
+
hours: pulumi.Input<pulumi.Input<string>[]>;
|
|
166
|
+
/**
|
|
167
|
+
* Minutes of the day when the job will run.
|
|
168
|
+
*/
|
|
169
|
+
minutes: pulumi.Input<pulumi.Input<string>[]>;
|
|
170
|
+
/**
|
|
171
|
+
* Months of the year when the job will run.
|
|
172
|
+
*/
|
|
173
|
+
months: pulumi.Input<pulumi.Input<string>[]>;
|
|
174
|
+
}
|
|
175
|
+
export interface BatchPredictionJobDefinitionTimeseriesSettings {
|
|
176
|
+
/**
|
|
177
|
+
* Forecast point for the dataset, used for the forecast predictions. May be passed if timeseries_settings.type=forecast.
|
|
178
|
+
*/
|
|
179
|
+
forecastPoint?: pulumi.Input<string>;
|
|
180
|
+
/**
|
|
181
|
+
* End date for historical predictions. May be passed if timeseries_settings.type=historical.
|
|
182
|
+
*/
|
|
183
|
+
predictionsEndDate?: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* Start date for historical predictions. May be passed if timeseries_settings.type=historical.
|
|
186
|
+
*/
|
|
187
|
+
predictionsStartDate?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* If True, missing values in the known in advance features are allowed in the forecast window at the prediction time. Default is False.
|
|
190
|
+
*/
|
|
191
|
+
relaxKnownInAdvanceFeaturesCheck?: pulumi.Input<boolean>;
|
|
192
|
+
/**
|
|
193
|
+
* Type of time-series prediction. Must be 'forecast' or 'historical'. Default is 'forecast'.
|
|
194
|
+
*/
|
|
195
|
+
type?: pulumi.Input<string>;
|
|
196
|
+
}
|
|
17
197
|
export interface CustomJobRuntimeParameterValue {
|
|
18
198
|
/**
|
|
19
199
|
* The name of the runtime parameter.
|
package/types/output.d.ts
CHANGED
|
@@ -13,6 +13,186 @@ export interface ApplicationSourceRuntimeParameterValue {
|
|
|
13
13
|
*/
|
|
14
14
|
value: string;
|
|
15
15
|
}
|
|
16
|
+
export interface BatchPredictionJobDefinitionCsvSettings {
|
|
17
|
+
/**
|
|
18
|
+
* Fields are delimited by this character. Use the string tab to denote TSV (TAB separated values). Must be either a one-character string or the string tab.
|
|
19
|
+
*/
|
|
20
|
+
delimiter: string;
|
|
21
|
+
/**
|
|
22
|
+
* Encoding for the CSV files.
|
|
23
|
+
*/
|
|
24
|
+
encoding: string;
|
|
25
|
+
/**
|
|
26
|
+
* Fields containing the delimiter must be quoted using this character.
|
|
27
|
+
*/
|
|
28
|
+
quotechar: string;
|
|
29
|
+
}
|
|
30
|
+
export interface BatchPredictionJobDefinitionIntakeSettings {
|
|
31
|
+
/**
|
|
32
|
+
* The name of specified database catalog for JDBC type.
|
|
33
|
+
*/
|
|
34
|
+
catalog?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the credentials for S3 or JDBC data source.
|
|
37
|
+
*/
|
|
38
|
+
credentialId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the external data store connected to the JDBC data source.
|
|
41
|
+
*/
|
|
42
|
+
dataStoreId?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the dataset to score for dataset type.
|
|
45
|
+
*/
|
|
46
|
+
datasetId?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Any non-default endpoint URL for S3 access.
|
|
49
|
+
*/
|
|
50
|
+
endpointUrl?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Changing the fetchSize can be used to balance throughput and memory usage for JDBC type.
|
|
53
|
+
*/
|
|
54
|
+
fetchSize?: number;
|
|
55
|
+
/**
|
|
56
|
+
* String path to file of scoring data for localFile type.
|
|
57
|
+
*/
|
|
58
|
+
file?: string;
|
|
59
|
+
/**
|
|
60
|
+
* A self-supplied SELECT statement of the data set you wish to predict for JDBC type.
|
|
61
|
+
*/
|
|
62
|
+
query?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The name of specified database schema for JDBC type.
|
|
65
|
+
*/
|
|
66
|
+
schema?: string;
|
|
67
|
+
/**
|
|
68
|
+
* The name of specified database table for JDBC type.
|
|
69
|
+
*/
|
|
70
|
+
table?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Type of data source.
|
|
73
|
+
*/
|
|
74
|
+
type: string;
|
|
75
|
+
/**
|
|
76
|
+
* The URL to score (e.g.: s3://bucket/key) for S3 type.
|
|
77
|
+
*/
|
|
78
|
+
url?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface BatchPredictionJobDefinitionOutputSettings {
|
|
81
|
+
/**
|
|
82
|
+
* The name of specified database catalog for JDBC type.
|
|
83
|
+
*/
|
|
84
|
+
catalog?: string;
|
|
85
|
+
/**
|
|
86
|
+
* If no existing table is detected, attempt to create it before writing data for JDBC type.
|
|
87
|
+
*/
|
|
88
|
+
createTableIfNotExists?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* The ID of the credentials for S3 or JDBC data source.
|
|
91
|
+
*/
|
|
92
|
+
credentialId?: string;
|
|
93
|
+
/**
|
|
94
|
+
* The ID of the external data store connected to the JDBC data source.
|
|
95
|
+
*/
|
|
96
|
+
dataStoreId?: string;
|
|
97
|
+
/**
|
|
98
|
+
* Any non-default endpoint URL for S3 access.
|
|
99
|
+
*/
|
|
100
|
+
endpointUrl?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Path to save the scored data as CSV for localFile type.
|
|
103
|
+
*/
|
|
104
|
+
path?: string;
|
|
105
|
+
/**
|
|
106
|
+
* The name of specified database schema for JDBC type.
|
|
107
|
+
*/
|
|
108
|
+
schema?: string;
|
|
109
|
+
/**
|
|
110
|
+
* The type of insertion statement to create for JDBC type.
|
|
111
|
+
*/
|
|
112
|
+
statementType?: string;
|
|
113
|
+
/**
|
|
114
|
+
* The name of specified database table for JDBC type.
|
|
115
|
+
*/
|
|
116
|
+
table?: string;
|
|
117
|
+
/**
|
|
118
|
+
* Type of output.
|
|
119
|
+
*/
|
|
120
|
+
type: string;
|
|
121
|
+
/**
|
|
122
|
+
* A list of strings containing those column names to be updated for JDBC type.
|
|
123
|
+
*/
|
|
124
|
+
updateColumns?: string[];
|
|
125
|
+
/**
|
|
126
|
+
* The URL for storing the results (e.g.: s3://bucket/key) for S3 type.
|
|
127
|
+
*/
|
|
128
|
+
url?: string;
|
|
129
|
+
/**
|
|
130
|
+
* A list of strings containing those column names to be selected for JDBC type.
|
|
131
|
+
*/
|
|
132
|
+
whereColumns?: string[];
|
|
133
|
+
}
|
|
134
|
+
export interface BatchPredictionJobDefinitionPredictionInstance {
|
|
135
|
+
/**
|
|
136
|
+
* By default, prediction requests will use the API key of the user that created the job. This allows you to make requests on behalf of other users.
|
|
137
|
+
*/
|
|
138
|
+
apiKey?: string;
|
|
139
|
+
/**
|
|
140
|
+
* If running a job against a prediction instance in the Managed AI Cloud, you must provide the organization level DataRobot-Key.
|
|
141
|
+
*/
|
|
142
|
+
datarobotKey?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Hostname of the prediction instance.
|
|
145
|
+
*/
|
|
146
|
+
hostName: string;
|
|
147
|
+
/**
|
|
148
|
+
* Set to false to run prediction requests from the batch prediction job without SSL. Defaults to true.
|
|
149
|
+
*/
|
|
150
|
+
sslEnabled: boolean;
|
|
151
|
+
}
|
|
152
|
+
export interface BatchPredictionJobDefinitionSchedule {
|
|
153
|
+
/**
|
|
154
|
+
* Days of the month when the job will run.
|
|
155
|
+
*/
|
|
156
|
+
dayOfMonths: string[];
|
|
157
|
+
/**
|
|
158
|
+
* Days of the week when the job will run.
|
|
159
|
+
*/
|
|
160
|
+
dayOfWeeks: string[];
|
|
161
|
+
/**
|
|
162
|
+
* Hours of the day when the job will run.
|
|
163
|
+
*/
|
|
164
|
+
hours: string[];
|
|
165
|
+
/**
|
|
166
|
+
* Minutes of the day when the job will run.
|
|
167
|
+
*/
|
|
168
|
+
minutes: string[];
|
|
169
|
+
/**
|
|
170
|
+
* Months of the year when the job will run.
|
|
171
|
+
*/
|
|
172
|
+
months: string[];
|
|
173
|
+
}
|
|
174
|
+
export interface BatchPredictionJobDefinitionTimeseriesSettings {
|
|
175
|
+
/**
|
|
176
|
+
* Forecast point for the dataset, used for the forecast predictions. May be passed if timeseries_settings.type=forecast.
|
|
177
|
+
*/
|
|
178
|
+
forecastPoint?: string;
|
|
179
|
+
/**
|
|
180
|
+
* End date for historical predictions. May be passed if timeseries_settings.type=historical.
|
|
181
|
+
*/
|
|
182
|
+
predictionsEndDate?: string;
|
|
183
|
+
/**
|
|
184
|
+
* Start date for historical predictions. May be passed if timeseries_settings.type=historical.
|
|
185
|
+
*/
|
|
186
|
+
predictionsStartDate?: string;
|
|
187
|
+
/**
|
|
188
|
+
* If True, missing values in the known in advance features are allowed in the forecast window at the prediction time. Default is False.
|
|
189
|
+
*/
|
|
190
|
+
relaxKnownInAdvanceFeaturesCheck: boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Type of time-series prediction. Must be 'forecast' or 'historical'. Default is 'forecast'.
|
|
193
|
+
*/
|
|
194
|
+
type?: string;
|
|
195
|
+
}
|
|
16
196
|
export interface CustomJobRuntimeParameterValue {
|
|
17
197
|
/**
|
|
18
198
|
* The name of the runtime parameter.
|