@datarobot/pulumi-datarobot 0.2.7 → 1.0.1
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/README.md +1 -1
- package/customModel.d.ts +45 -11
- package/customModel.js +11 -7
- package/customModel.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +0 -18
- package/types/output.d.ts +0 -18
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ No install necessary, just run `pulumi up`.
|
|
|
57
57
|
|
|
58
58
|
The following configuration points are available for the DataRobot provider:
|
|
59
59
|
|
|
60
|
-
- `datarobot:apikey` (environment: `
|
|
60
|
+
- `datarobot:apikey` (environment: `DATAROBOT_API_TOKEN`) - the API key for DataRobot
|
|
61
61
|
- `datarobot:endpoint` (environment: `DATAROBOT_ENDPOINT`) - the endpoint for DataRobot
|
|
62
62
|
|
|
63
63
|
## Examples
|
package/customModel.d.ts
CHANGED
|
@@ -56,11 +56,9 @@ import * as outputs from "./types/output";
|
|
|
56
56
|
* // timeout_sec = 120
|
|
57
57
|
* // timeout_action = "score"
|
|
58
58
|
* // }
|
|
59
|
-
* //
|
|
60
|
-
* //
|
|
61
|
-
* //
|
|
62
|
-
* // network_access = "NONE"
|
|
63
|
-
* // }
|
|
59
|
+
* // memory_mb = 512
|
|
60
|
+
* // replicas = 2
|
|
61
|
+
* // network_access = "NONE"
|
|
64
62
|
* export const exampleId = exampleCustomModel.id;
|
|
65
63
|
* ```
|
|
66
64
|
*/
|
|
@@ -132,6 +130,10 @@ export declare class CustomModel extends pulumi.CustomResource {
|
|
|
132
130
|
* The language used to build the Custom Model.
|
|
133
131
|
*/
|
|
134
132
|
readonly language: pulumi.Output<string | undefined>;
|
|
133
|
+
/**
|
|
134
|
+
* The memory in MB for the Custom Model.
|
|
135
|
+
*/
|
|
136
|
+
readonly memoryMb: pulumi.Output<number>;
|
|
135
137
|
/**
|
|
136
138
|
* The name of the Custom Model.
|
|
137
139
|
*/
|
|
@@ -140,6 +142,10 @@ export declare class CustomModel extends pulumi.CustomResource {
|
|
|
140
142
|
* The negative class label of the Custom Model.
|
|
141
143
|
*/
|
|
142
144
|
readonly negativeClassLabel: pulumi.Output<string>;
|
|
145
|
+
/**
|
|
146
|
+
* The network access for the Custom Model.
|
|
147
|
+
*/
|
|
148
|
+
readonly networkAccess: pulumi.Output<string>;
|
|
143
149
|
/**
|
|
144
150
|
* The overall moderation configuration for the Custom Model.
|
|
145
151
|
*/
|
|
@@ -153,9 +159,13 @@ export declare class CustomModel extends pulumi.CustomResource {
|
|
|
153
159
|
*/
|
|
154
160
|
readonly predictionThreshold: pulumi.Output<number>;
|
|
155
161
|
/**
|
|
156
|
-
* The
|
|
162
|
+
* The replicas for the Custom Model.
|
|
157
163
|
*/
|
|
158
|
-
readonly
|
|
164
|
+
readonly replicas: pulumi.Output<number>;
|
|
165
|
+
/**
|
|
166
|
+
* A single identifier that represents a bundle of resources: Memory, CPU, GPU, etc.
|
|
167
|
+
*/
|
|
168
|
+
readonly resourceBundleId: pulumi.Output<string | undefined>;
|
|
159
169
|
/**
|
|
160
170
|
* The runtime parameter values for the Custom Model.
|
|
161
171
|
*/
|
|
@@ -265,6 +275,10 @@ export interface CustomModelState {
|
|
|
265
275
|
* The language used to build the Custom Model.
|
|
266
276
|
*/
|
|
267
277
|
language?: pulumi.Input<string>;
|
|
278
|
+
/**
|
|
279
|
+
* The memory in MB for the Custom Model.
|
|
280
|
+
*/
|
|
281
|
+
memoryMb?: pulumi.Input<number>;
|
|
268
282
|
/**
|
|
269
283
|
* The name of the Custom Model.
|
|
270
284
|
*/
|
|
@@ -273,6 +287,10 @@ export interface CustomModelState {
|
|
|
273
287
|
* The negative class label of the Custom Model.
|
|
274
288
|
*/
|
|
275
289
|
negativeClassLabel?: pulumi.Input<string>;
|
|
290
|
+
/**
|
|
291
|
+
* The network access for the Custom Model.
|
|
292
|
+
*/
|
|
293
|
+
networkAccess?: pulumi.Input<string>;
|
|
276
294
|
/**
|
|
277
295
|
* The overall moderation configuration for the Custom Model.
|
|
278
296
|
*/
|
|
@@ -286,9 +304,13 @@ export interface CustomModelState {
|
|
|
286
304
|
*/
|
|
287
305
|
predictionThreshold?: pulumi.Input<number>;
|
|
288
306
|
/**
|
|
289
|
-
* The
|
|
307
|
+
* The replicas for the Custom Model.
|
|
308
|
+
*/
|
|
309
|
+
replicas?: pulumi.Input<number>;
|
|
310
|
+
/**
|
|
311
|
+
* A single identifier that represents a bundle of resources: Memory, CPU, GPU, etc.
|
|
290
312
|
*/
|
|
291
|
-
|
|
313
|
+
resourceBundleId?: pulumi.Input<string>;
|
|
292
314
|
/**
|
|
293
315
|
* The runtime parameter values for the Custom Model.
|
|
294
316
|
*/
|
|
@@ -378,6 +400,10 @@ export interface CustomModelArgs {
|
|
|
378
400
|
* The language used to build the Custom Model.
|
|
379
401
|
*/
|
|
380
402
|
language?: pulumi.Input<string>;
|
|
403
|
+
/**
|
|
404
|
+
* The memory in MB for the Custom Model.
|
|
405
|
+
*/
|
|
406
|
+
memoryMb?: pulumi.Input<number>;
|
|
381
407
|
/**
|
|
382
408
|
* The name of the Custom Model.
|
|
383
409
|
*/
|
|
@@ -386,6 +412,10 @@ export interface CustomModelArgs {
|
|
|
386
412
|
* The negative class label of the Custom Model.
|
|
387
413
|
*/
|
|
388
414
|
negativeClassLabel?: pulumi.Input<string>;
|
|
415
|
+
/**
|
|
416
|
+
* The network access for the Custom Model.
|
|
417
|
+
*/
|
|
418
|
+
networkAccess?: pulumi.Input<string>;
|
|
389
419
|
/**
|
|
390
420
|
* The overall moderation configuration for the Custom Model.
|
|
391
421
|
*/
|
|
@@ -399,9 +429,13 @@ export interface CustomModelArgs {
|
|
|
399
429
|
*/
|
|
400
430
|
predictionThreshold?: pulumi.Input<number>;
|
|
401
431
|
/**
|
|
402
|
-
* The
|
|
432
|
+
* The replicas for the Custom Model.
|
|
433
|
+
*/
|
|
434
|
+
replicas?: pulumi.Input<number>;
|
|
435
|
+
/**
|
|
436
|
+
* A single identifier that represents a bundle of resources: Memory, CPU, GPU, etc.
|
|
403
437
|
*/
|
|
404
|
-
|
|
438
|
+
resourceBundleId?: pulumi.Input<string>;
|
|
405
439
|
/**
|
|
406
440
|
* The runtime parameter values for the Custom Model.
|
|
407
441
|
*/
|
package/customModel.js
CHANGED
|
@@ -60,11 +60,9 @@ const utilities = require("./utilities");
|
|
|
60
60
|
* // timeout_sec = 120
|
|
61
61
|
* // timeout_action = "score"
|
|
62
62
|
* // }
|
|
63
|
-
* //
|
|
64
|
-
* //
|
|
65
|
-
* //
|
|
66
|
-
* // network_access = "NONE"
|
|
67
|
-
* // }
|
|
63
|
+
* // memory_mb = 512
|
|
64
|
+
* // replicas = 2
|
|
65
|
+
* // network_access = "NONE"
|
|
68
66
|
* export const exampleId = exampleCustomModel.id;
|
|
69
67
|
* ```
|
|
70
68
|
*/
|
|
@@ -109,12 +107,15 @@ class CustomModel extends pulumi.CustomResource {
|
|
|
109
107
|
resourceInputs["guardConfigurations"] = state ? state.guardConfigurations : undefined;
|
|
110
108
|
resourceInputs["isProxy"] = state ? state.isProxy : undefined;
|
|
111
109
|
resourceInputs["language"] = state ? state.language : undefined;
|
|
110
|
+
resourceInputs["memoryMb"] = state ? state.memoryMb : undefined;
|
|
112
111
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
113
112
|
resourceInputs["negativeClassLabel"] = state ? state.negativeClassLabel : undefined;
|
|
113
|
+
resourceInputs["networkAccess"] = state ? state.networkAccess : undefined;
|
|
114
114
|
resourceInputs["overallModerationConfiguration"] = state ? state.overallModerationConfiguration : undefined;
|
|
115
115
|
resourceInputs["positiveClassLabel"] = state ? state.positiveClassLabel : undefined;
|
|
116
116
|
resourceInputs["predictionThreshold"] = state ? state.predictionThreshold : undefined;
|
|
117
|
-
resourceInputs["
|
|
117
|
+
resourceInputs["replicas"] = state ? state.replicas : undefined;
|
|
118
|
+
resourceInputs["resourceBundleId"] = state ? state.resourceBundleId : undefined;
|
|
118
119
|
resourceInputs["runtimeParameterValues"] = state ? state.runtimeParameterValues : undefined;
|
|
119
120
|
resourceInputs["sourceLlmBlueprintId"] = state ? state.sourceLlmBlueprintId : undefined;
|
|
120
121
|
resourceInputs["sourceRemoteRepositories"] = state ? state.sourceRemoteRepositories : undefined;
|
|
@@ -139,12 +140,15 @@ class CustomModel extends pulumi.CustomResource {
|
|
|
139
140
|
resourceInputs["guardConfigurations"] = args ? args.guardConfigurations : undefined;
|
|
140
141
|
resourceInputs["isProxy"] = args ? args.isProxy : undefined;
|
|
141
142
|
resourceInputs["language"] = args ? args.language : undefined;
|
|
143
|
+
resourceInputs["memoryMb"] = args ? args.memoryMb : undefined;
|
|
142
144
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
143
145
|
resourceInputs["negativeClassLabel"] = args ? args.negativeClassLabel : undefined;
|
|
146
|
+
resourceInputs["networkAccess"] = args ? args.networkAccess : undefined;
|
|
144
147
|
resourceInputs["overallModerationConfiguration"] = args ? args.overallModerationConfiguration : undefined;
|
|
145
148
|
resourceInputs["positiveClassLabel"] = args ? args.positiveClassLabel : undefined;
|
|
146
149
|
resourceInputs["predictionThreshold"] = args ? args.predictionThreshold : undefined;
|
|
147
|
-
resourceInputs["
|
|
150
|
+
resourceInputs["replicas"] = args ? args.replicas : undefined;
|
|
151
|
+
resourceInputs["resourceBundleId"] = args ? args.resourceBundleId : undefined;
|
|
148
152
|
resourceInputs["runtimeParameterValues"] = args ? args.runtimeParameterValues : undefined;
|
|
149
153
|
resourceInputs["sourceLlmBlueprintId"] = args ? args.sourceLlmBlueprintId : undefined;
|
|
150
154
|
resourceInputs["sourceRemoteRepositories"] = args ? args.sourceRemoteRepositories : undefined;
|
package/customModel.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customModel.js","sourceRoot":"","sources":["../customModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"customModel.js","sourceRoot":"","sources":["../customModel.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -90,20 +90,6 @@ export interface CustomModelOverallModerationConfiguration {
|
|
|
90
90
|
*/
|
|
91
91
|
timeoutSec?: pulumi.Input<number>;
|
|
92
92
|
}
|
|
93
|
-
export interface CustomModelResourceSettings {
|
|
94
|
-
/**
|
|
95
|
-
* The memory in MB for the Custom Model.
|
|
96
|
-
*/
|
|
97
|
-
memoryMb?: pulumi.Input<number>;
|
|
98
|
-
/**
|
|
99
|
-
* The network access for the Custom Model.
|
|
100
|
-
*/
|
|
101
|
-
networkAccess?: pulumi.Input<string>;
|
|
102
|
-
/**
|
|
103
|
-
* The replicas for the Custom Model.
|
|
104
|
-
*/
|
|
105
|
-
replicas?: pulumi.Input<number>;
|
|
106
|
-
}
|
|
107
93
|
export interface CustomModelRuntimeParameterValue {
|
|
108
94
|
/**
|
|
109
95
|
* The name of the runtime parameter.
|
|
@@ -413,10 +399,6 @@ export interface DeploymentPredictionsSettings {
|
|
|
413
399
|
* The minimum number of computes to use for predictions.
|
|
414
400
|
*/
|
|
415
401
|
minComputes: pulumi.Input<number>;
|
|
416
|
-
/**
|
|
417
|
-
* Whether to use real-time predictions.
|
|
418
|
-
*/
|
|
419
|
-
realTime: pulumi.Input<boolean>;
|
|
420
402
|
}
|
|
421
403
|
export interface DeploymentSegmentAnalysisSettings {
|
|
422
404
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -89,20 +89,6 @@ export interface CustomModelOverallModerationConfiguration {
|
|
|
89
89
|
*/
|
|
90
90
|
timeoutSec: number;
|
|
91
91
|
}
|
|
92
|
-
export interface CustomModelResourceSettings {
|
|
93
|
-
/**
|
|
94
|
-
* The memory in MB for the Custom Model.
|
|
95
|
-
*/
|
|
96
|
-
memoryMb: number;
|
|
97
|
-
/**
|
|
98
|
-
* The network access for the Custom Model.
|
|
99
|
-
*/
|
|
100
|
-
networkAccess: string;
|
|
101
|
-
/**
|
|
102
|
-
* The replicas for the Custom Model.
|
|
103
|
-
*/
|
|
104
|
-
replicas: number;
|
|
105
|
-
}
|
|
106
92
|
export interface CustomModelRuntimeParameterValue {
|
|
107
93
|
/**
|
|
108
94
|
* The name of the runtime parameter.
|
|
@@ -412,10 +398,6 @@ export interface DeploymentPredictionsSettings {
|
|
|
412
398
|
* The minimum number of computes to use for predictions.
|
|
413
399
|
*/
|
|
414
400
|
minComputes: number;
|
|
415
|
-
/**
|
|
416
|
-
* Whether to use real-time predictions.
|
|
417
|
-
*/
|
|
418
|
-
realTime: boolean;
|
|
419
401
|
}
|
|
420
402
|
export interface DeploymentSegmentAnalysisSettings {
|
|
421
403
|
/**
|