@datarobot/pulumi-datarobot 0.5.1 → 0.5.2
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/deploymentRetrainingPolicy.d.ts +173 -0
- package/deploymentRetrainingPolicy.js +78 -0
- package/deploymentRetrainingPolicy.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 +132 -0
- package/types/output.d.ts +132 -0
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Deployment Retraining Policy
|
|
6
|
+
*/
|
|
7
|
+
export declare class DeploymentRetrainingPolicy extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing DeploymentRetrainingPolicy 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?: DeploymentRetrainingPolicyState, opts?: pulumi.CustomResourceOptions): DeploymentRetrainingPolicy;
|
|
18
|
+
/**
|
|
19
|
+
* Returns true if the given object is an instance of DeploymentRetrainingPolicy. 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 DeploymentRetrainingPolicy;
|
|
23
|
+
/**
|
|
24
|
+
* The the action to take on the resultant new model.
|
|
25
|
+
*/
|
|
26
|
+
readonly action: pulumi.Output<string>;
|
|
27
|
+
/**
|
|
28
|
+
* Options for projects used to build new models.
|
|
29
|
+
*/
|
|
30
|
+
readonly autopilotOptions: pulumi.Output<outputs.DeploymentRetrainingPolicyAutopilotOptions>;
|
|
31
|
+
/**
|
|
32
|
+
* The ID of the Deployment for the Retraining Policy.
|
|
33
|
+
*/
|
|
34
|
+
readonly deploymentId: pulumi.Output<string>;
|
|
35
|
+
/**
|
|
36
|
+
* The description of the Retraining Policy.
|
|
37
|
+
*/
|
|
38
|
+
readonly description: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* The feature list strategy used for modeling.
|
|
41
|
+
*/
|
|
42
|
+
readonly featureListStrategy: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Determines how the new model is selected when the retraining policy runs.
|
|
45
|
+
*/
|
|
46
|
+
readonly modelSelectionStrategy: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* The name of the Retraining Policy.
|
|
49
|
+
*/
|
|
50
|
+
readonly name: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* Options for projects used to build new models.
|
|
53
|
+
*/
|
|
54
|
+
readonly projectOptions: pulumi.Output<outputs.DeploymentRetrainingPolicyProjectOptions>;
|
|
55
|
+
/**
|
|
56
|
+
* The project option strategy used for modeling.
|
|
57
|
+
*/
|
|
58
|
+
readonly projectOptionsStrategy: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* Time Series project options used to build new models.
|
|
61
|
+
*/
|
|
62
|
+
readonly timeSeriesOptions: pulumi.Output<outputs.DeploymentRetrainingPolicyTimeSeriesOptions | undefined>;
|
|
63
|
+
/**
|
|
64
|
+
* Retraining policy trigger.
|
|
65
|
+
*/
|
|
66
|
+
readonly trigger: pulumi.Output<outputs.DeploymentRetrainingPolicyTrigger | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* Create a DeploymentRetrainingPolicy resource with the given unique name, arguments, and options.
|
|
69
|
+
*
|
|
70
|
+
* @param name The _unique_ name of the resource.
|
|
71
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
72
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
73
|
+
*/
|
|
74
|
+
constructor(name: string, args: DeploymentRetrainingPolicyArgs, opts?: pulumi.CustomResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Input properties used for looking up and filtering DeploymentRetrainingPolicy resources.
|
|
78
|
+
*/
|
|
79
|
+
export interface DeploymentRetrainingPolicyState {
|
|
80
|
+
/**
|
|
81
|
+
* The the action to take on the resultant new model.
|
|
82
|
+
*/
|
|
83
|
+
action?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* Options for projects used to build new models.
|
|
86
|
+
*/
|
|
87
|
+
autopilotOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyAutopilotOptions>;
|
|
88
|
+
/**
|
|
89
|
+
* The ID of the Deployment for the Retraining Policy.
|
|
90
|
+
*/
|
|
91
|
+
deploymentId?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The description of the Retraining Policy.
|
|
94
|
+
*/
|
|
95
|
+
description?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The feature list strategy used for modeling.
|
|
98
|
+
*/
|
|
99
|
+
featureListStrategy?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Determines how the new model is selected when the retraining policy runs.
|
|
102
|
+
*/
|
|
103
|
+
modelSelectionStrategy?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* The name of the Retraining Policy.
|
|
106
|
+
*/
|
|
107
|
+
name?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Options for projects used to build new models.
|
|
110
|
+
*/
|
|
111
|
+
projectOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyProjectOptions>;
|
|
112
|
+
/**
|
|
113
|
+
* The project option strategy used for modeling.
|
|
114
|
+
*/
|
|
115
|
+
projectOptionsStrategy?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Time Series project options used to build new models.
|
|
118
|
+
*/
|
|
119
|
+
timeSeriesOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyTimeSeriesOptions>;
|
|
120
|
+
/**
|
|
121
|
+
* Retraining policy trigger.
|
|
122
|
+
*/
|
|
123
|
+
trigger?: pulumi.Input<inputs.DeploymentRetrainingPolicyTrigger>;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* The set of arguments for constructing a DeploymentRetrainingPolicy resource.
|
|
127
|
+
*/
|
|
128
|
+
export interface DeploymentRetrainingPolicyArgs {
|
|
129
|
+
/**
|
|
130
|
+
* The the action to take on the resultant new model.
|
|
131
|
+
*/
|
|
132
|
+
action?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Options for projects used to build new models.
|
|
135
|
+
*/
|
|
136
|
+
autopilotOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyAutopilotOptions>;
|
|
137
|
+
/**
|
|
138
|
+
* The ID of the Deployment for the Retraining Policy.
|
|
139
|
+
*/
|
|
140
|
+
deploymentId: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The description of the Retraining Policy.
|
|
143
|
+
*/
|
|
144
|
+
description: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* The feature list strategy used for modeling.
|
|
147
|
+
*/
|
|
148
|
+
featureListStrategy?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* Determines how the new model is selected when the retraining policy runs.
|
|
151
|
+
*/
|
|
152
|
+
modelSelectionStrategy?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* The name of the Retraining Policy.
|
|
155
|
+
*/
|
|
156
|
+
name?: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Options for projects used to build new models.
|
|
159
|
+
*/
|
|
160
|
+
projectOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyProjectOptions>;
|
|
161
|
+
/**
|
|
162
|
+
* The project option strategy used for modeling.
|
|
163
|
+
*/
|
|
164
|
+
projectOptionsStrategy?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Time Series project options used to build new models.
|
|
167
|
+
*/
|
|
168
|
+
timeSeriesOptions?: pulumi.Input<inputs.DeploymentRetrainingPolicyTimeSeriesOptions>;
|
|
169
|
+
/**
|
|
170
|
+
* Retraining policy trigger.
|
|
171
|
+
*/
|
|
172
|
+
trigger?: pulumi.Input<inputs.DeploymentRetrainingPolicyTrigger>;
|
|
173
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
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.DeploymentRetrainingPolicy = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Deployment Retraining Policy
|
|
10
|
+
*/
|
|
11
|
+
class DeploymentRetrainingPolicy extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing DeploymentRetrainingPolicy 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 DeploymentRetrainingPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of DeploymentRetrainingPolicy. 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'] === DeploymentRetrainingPolicy.__pulumiType;
|
|
33
|
+
}
|
|
34
|
+
constructor(name, argsOrState, opts) {
|
|
35
|
+
let resourceInputs = {};
|
|
36
|
+
opts = opts || {};
|
|
37
|
+
if (opts.id) {
|
|
38
|
+
const state = argsOrState;
|
|
39
|
+
resourceInputs["action"] = state ? state.action : undefined;
|
|
40
|
+
resourceInputs["autopilotOptions"] = state ? state.autopilotOptions : undefined;
|
|
41
|
+
resourceInputs["deploymentId"] = state ? state.deploymentId : undefined;
|
|
42
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
43
|
+
resourceInputs["featureListStrategy"] = state ? state.featureListStrategy : undefined;
|
|
44
|
+
resourceInputs["modelSelectionStrategy"] = state ? state.modelSelectionStrategy : undefined;
|
|
45
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
46
|
+
resourceInputs["projectOptions"] = state ? state.projectOptions : undefined;
|
|
47
|
+
resourceInputs["projectOptionsStrategy"] = state ? state.projectOptionsStrategy : undefined;
|
|
48
|
+
resourceInputs["timeSeriesOptions"] = state ? state.timeSeriesOptions : undefined;
|
|
49
|
+
resourceInputs["trigger"] = state ? state.trigger : undefined;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
const args = argsOrState;
|
|
53
|
+
if ((!args || args.deploymentId === undefined) && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'deploymentId'");
|
|
55
|
+
}
|
|
56
|
+
if ((!args || args.description === undefined) && !opts.urn) {
|
|
57
|
+
throw new Error("Missing required property 'description'");
|
|
58
|
+
}
|
|
59
|
+
resourceInputs["action"] = args ? args.action : undefined;
|
|
60
|
+
resourceInputs["autopilotOptions"] = args ? args.autopilotOptions : undefined;
|
|
61
|
+
resourceInputs["deploymentId"] = args ? args.deploymentId : undefined;
|
|
62
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
63
|
+
resourceInputs["featureListStrategy"] = args ? args.featureListStrategy : undefined;
|
|
64
|
+
resourceInputs["modelSelectionStrategy"] = args ? args.modelSelectionStrategy : undefined;
|
|
65
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
66
|
+
resourceInputs["projectOptions"] = args ? args.projectOptions : undefined;
|
|
67
|
+
resourceInputs["projectOptionsStrategy"] = args ? args.projectOptionsStrategy : undefined;
|
|
68
|
+
resourceInputs["timeSeriesOptions"] = args ? args.timeSeriesOptions : undefined;
|
|
69
|
+
resourceInputs["trigger"] = args ? args.trigger : undefined;
|
|
70
|
+
}
|
|
71
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
72
|
+
super(DeploymentRetrainingPolicy.__pulumiType, name, resourceInputs, opts);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.DeploymentRetrainingPolicy = DeploymentRetrainingPolicy;
|
|
76
|
+
/** @internal */
|
|
77
|
+
DeploymentRetrainingPolicy.__pulumiType = 'datarobot:index/deploymentRetrainingPolicy:DeploymentRetrainingPolicy';
|
|
78
|
+
//# sourceMappingURL=deploymentRetrainingPolicy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deploymentRetrainingPolicy.js","sourceRoot":"","sources":["../deploymentRetrainingPolicy.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -43,6 +43,9 @@ export declare const Datastore: typeof import("./datastore").Datastore;
|
|
|
43
43
|
export { DeploymentArgs, DeploymentState } from "./deployment";
|
|
44
44
|
export type Deployment = import("./deployment").Deployment;
|
|
45
45
|
export declare const Deployment: typeof import("./deployment").Deployment;
|
|
46
|
+
export { DeploymentRetrainingPolicyArgs, DeploymentRetrainingPolicyState } from "./deploymentRetrainingPolicy";
|
|
47
|
+
export type DeploymentRetrainingPolicy = import("./deploymentRetrainingPolicy").DeploymentRetrainingPolicy;
|
|
48
|
+
export declare const DeploymentRetrainingPolicy: typeof import("./deploymentRetrainingPolicy").DeploymentRetrainingPolicy;
|
|
46
49
|
export { ExecutionEnvironmentArgs, ExecutionEnvironmentState } from "./executionEnvironment";
|
|
47
50
|
export type ExecutionEnvironment = import("./executionEnvironment").ExecutionEnvironment;
|
|
48
51
|
export declare const ExecutionEnvironment: typeof import("./executionEnvironment").ExecutionEnvironment;
|
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.CustomMetricJob = exports.CustomMetricFromJob = exports.CustomJob = exports.CustomApplication = exports.BatchPredictionJobDefinition = 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.DeploymentRetrainingPolicy = exports.Deployment = exports.Datastore = exports.Datasource = exports.DatasetFromUrl = exports.DatasetFromFile = exports.DatasetFromDatasource = exports.CustomModel = exports.CustomMetricJob = exports.CustomMetricFromJob = 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;
|
|
@@ -35,6 +35,8 @@ exports.Datastore = null;
|
|
|
35
35
|
utilities.lazyLoad(exports, ["Datastore"], () => require("./datastore"));
|
|
36
36
|
exports.Deployment = null;
|
|
37
37
|
utilities.lazyLoad(exports, ["Deployment"], () => require("./deployment"));
|
|
38
|
+
exports.DeploymentRetrainingPolicy = null;
|
|
39
|
+
utilities.lazyLoad(exports, ["DeploymentRetrainingPolicy"], () => require("./deploymentRetrainingPolicy"));
|
|
38
40
|
exports.ExecutionEnvironment = null;
|
|
39
41
|
utilities.lazyLoad(exports, ["ExecutionEnvironment"], () => require("./executionEnvironment"));
|
|
40
42
|
exports.getExecutionEnvironment = null;
|
|
@@ -104,6 +106,8 @@ const _module = {
|
|
|
104
106
|
return new exports.Datastore(name, undefined, { urn });
|
|
105
107
|
case "datarobot:index/deployment:Deployment":
|
|
106
108
|
return new exports.Deployment(name, undefined, { urn });
|
|
109
|
+
case "datarobot:index/deploymentRetrainingPolicy:DeploymentRetrainingPolicy":
|
|
110
|
+
return new exports.DeploymentRetrainingPolicy(name, undefined, { urn });
|
|
107
111
|
case "datarobot:index/executionEnvironment:ExecutionEnvironment":
|
|
108
112
|
return new exports.ExecutionEnvironment(name, undefined, { urn });
|
|
109
113
|
case "datarobot:index/googleCloudCredential:GoogleCloudCredential":
|
|
@@ -146,6 +150,7 @@ pulumi.runtime.registerResourceModule("datarobot", "index/datasetFromUrl", _modu
|
|
|
146
150
|
pulumi.runtime.registerResourceModule("datarobot", "index/datasource", _module);
|
|
147
151
|
pulumi.runtime.registerResourceModule("datarobot", "index/datastore", _module);
|
|
148
152
|
pulumi.runtime.registerResourceModule("datarobot", "index/deployment", _module);
|
|
153
|
+
pulumi.runtime.registerResourceModule("datarobot", "index/deploymentRetrainingPolicy", _module);
|
|
149
154
|
pulumi.runtime.registerResourceModule("datarobot", "index/executionEnvironment", _module);
|
|
150
155
|
pulumi.runtime.registerResourceModule("datarobot", "index/googleCloudCredential", _module);
|
|
151
156
|
pulumi.runtime.registerResourceModule("datarobot", "index/llmBlueprint", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAI9E,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,4BAA4B,GAAiF,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,CAAC;AAIlG,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAIhF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIhE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAGlF,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AAC1G,QAAA,6BAA6B,GAA6E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAGxH,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAI7F,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,8BAA8B,GAAqF,IAAW,CAAC;AAC5I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gCAAgC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kCAAkC,CAAC,CAAC,CAAC;AAItG,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAGnF,sBAAsB;AACtB,mCAAmC;AAI/B,wBAAM;AAHV,iCAAiC;AAI7B,sBAAK;AAGT,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,uDAAuD;gBACxD,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,qDAAqD;gBACtD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,2EAA2E;gBAC5E,OAAO,IAAI,oCAA4B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1E,KAAK,qDAAqD;gBACtD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,qCAAqC;gBACtC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,+CAA+C;gBAChD,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,qCAAqC;gBACtC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,iDAAiD;gBAClD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,+EAA+E;gBAChF,OAAO,IAAI,sCAA8B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5E,KAAK,mDAAmD;gBACpD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,iCAAiC;gBAClC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,+CAA+C;gBAChD,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACvF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA;AACjG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sCAAsC,EAAE,OAAO,CAAC,CAAA;AACnG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,WAAW,EAAE;IAChD,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,4BAA4B,EAAE;YACvC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
|
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
|
@@ -726,6 +726,138 @@ export interface DeploymentPredictionsSettings {
|
|
|
726
726
|
*/
|
|
727
727
|
minComputes: pulumi.Input<number>;
|
|
728
728
|
}
|
|
729
|
+
export interface DeploymentRetrainingPolicyAutopilotOptions {
|
|
730
|
+
/**
|
|
731
|
+
* Blend best models during Autopilot run. This option is not supported in SHAP-only mode.
|
|
732
|
+
*/
|
|
733
|
+
blendBestModels?: pulumi.Input<boolean>;
|
|
734
|
+
/**
|
|
735
|
+
* The autopiltot mode.
|
|
736
|
+
*/
|
|
737
|
+
mode?: pulumi.Input<string>;
|
|
738
|
+
/**
|
|
739
|
+
* Run Autopilot on Leakage Removed feature list (if exists).
|
|
740
|
+
*/
|
|
741
|
+
runLeakageRemovedFeatureList?: pulumi.Input<boolean>;
|
|
742
|
+
/**
|
|
743
|
+
* Keep only models that can be converted to scorable java code during Autopilot run.
|
|
744
|
+
*/
|
|
745
|
+
scoringCodeOnly?: pulumi.Input<boolean>;
|
|
746
|
+
/**
|
|
747
|
+
* Include only models with SHAP value support.
|
|
748
|
+
*/
|
|
749
|
+
shapOnlyMode?: pulumi.Input<boolean>;
|
|
750
|
+
}
|
|
751
|
+
export interface DeploymentRetrainingPolicyProjectOptions {
|
|
752
|
+
/**
|
|
753
|
+
* The partitioning method for projects used to build new models.
|
|
754
|
+
*/
|
|
755
|
+
cvMethod?: pulumi.Input<string>;
|
|
756
|
+
/**
|
|
757
|
+
* The percentage of dataset to assign to holdout set in projects used to build new models.
|
|
758
|
+
*/
|
|
759
|
+
holdoutPct?: pulumi.Input<number>;
|
|
760
|
+
/**
|
|
761
|
+
* The model selection metric in projects used to build new models.
|
|
762
|
+
*/
|
|
763
|
+
metric?: pulumi.Input<string>;
|
|
764
|
+
/**
|
|
765
|
+
* The number of cross validation folds to use for projects used to build new models.
|
|
766
|
+
*/
|
|
767
|
+
reps?: pulumi.Input<number>;
|
|
768
|
+
/**
|
|
769
|
+
* The percentage of dataset to assign to validation set in projects used to build new models.
|
|
770
|
+
*/
|
|
771
|
+
validationPct?: pulumi.Input<number>;
|
|
772
|
+
/**
|
|
773
|
+
* The validation type for projects used to build new models.
|
|
774
|
+
*/
|
|
775
|
+
validationType?: pulumi.Input<string>;
|
|
776
|
+
}
|
|
777
|
+
export interface DeploymentRetrainingPolicyTimeSeriesOptions {
|
|
778
|
+
/**
|
|
779
|
+
* The ID of the calendar to be used in this project.
|
|
780
|
+
*/
|
|
781
|
+
calendarId?: pulumi.Input<string>;
|
|
782
|
+
/**
|
|
783
|
+
* For time series projects only. Used to specify which differencing method to apply if the data is stationary. For classification problems simple and seasonal are not allowed. Parameter periodicities must be specified if seasonal is chosen. Defaults to auto.
|
|
784
|
+
*/
|
|
785
|
+
differencingMethod?: pulumi.Input<string>;
|
|
786
|
+
/**
|
|
787
|
+
* Discount factor (alpha) used for exponentially weighted moving features.
|
|
788
|
+
*/
|
|
789
|
+
exponentiallyWeightedMovingAlpha?: pulumi.Input<number>;
|
|
790
|
+
/**
|
|
791
|
+
* A list of periodicities for time series projects only. For classification problems periodicities are not allowed. If this is provided, parameter 'differencing*method' will default to 'seasonal' if not provided or 'auto'.
|
|
792
|
+
*/
|
|
793
|
+
periodicities?: pulumi.Input<pulumi.Input<inputs.DeploymentRetrainingPolicyTimeSeriesOptionsPeriodicity>[]>;
|
|
794
|
+
/**
|
|
795
|
+
* For time series projects only. Used to specify whether to treat data as exponential trend and apply transformations like log-transform. For classification problems always is not allowed. Defaults to auto.
|
|
796
|
+
*/
|
|
797
|
+
treatAsExponential?: pulumi.Input<string>;
|
|
798
|
+
}
|
|
799
|
+
export interface DeploymentRetrainingPolicyTimeSeriesOptionsPeriodicity {
|
|
800
|
+
/**
|
|
801
|
+
* The number of time steps.
|
|
802
|
+
*/
|
|
803
|
+
timeSteps: pulumi.Input<number>;
|
|
804
|
+
/**
|
|
805
|
+
* The time unit or ROW if windowsBasisUnit is ROW
|
|
806
|
+
*/
|
|
807
|
+
timeUnit: pulumi.Input<string>;
|
|
808
|
+
}
|
|
809
|
+
export interface DeploymentRetrainingPolicyTrigger {
|
|
810
|
+
/**
|
|
811
|
+
* Custom job ID for the retraining policy.
|
|
812
|
+
*/
|
|
813
|
+
customJobId?: pulumi.Input<string>;
|
|
814
|
+
/**
|
|
815
|
+
* Minimal interval between policy runs in ISO 8601 duration string.
|
|
816
|
+
*/
|
|
817
|
+
minIntervalBetweenRuns?: pulumi.Input<string>;
|
|
818
|
+
/**
|
|
819
|
+
* Schedule for the retraining policy.
|
|
820
|
+
*/
|
|
821
|
+
schedule?: pulumi.Input<inputs.DeploymentRetrainingPolicyTriggerSchedule>;
|
|
822
|
+
/**
|
|
823
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status declines to failing.
|
|
824
|
+
*/
|
|
825
|
+
statusDeclinesToFailing?: pulumi.Input<boolean>;
|
|
826
|
+
/**
|
|
827
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status declines to warning.
|
|
828
|
+
*/
|
|
829
|
+
statusDeclinesToWarning?: pulumi.Input<boolean>;
|
|
830
|
+
/**
|
|
831
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status still in decline.
|
|
832
|
+
*/
|
|
833
|
+
statusStillInDecline?: pulumi.Input<boolean>;
|
|
834
|
+
/**
|
|
835
|
+
* Type of retraining policy trigger.
|
|
836
|
+
*/
|
|
837
|
+
type?: pulumi.Input<string>;
|
|
838
|
+
}
|
|
839
|
+
export interface DeploymentRetrainingPolicyTriggerSchedule {
|
|
840
|
+
/**
|
|
841
|
+
* Days of the month when the job will run.
|
|
842
|
+
*/
|
|
843
|
+
dayOfMonths: pulumi.Input<pulumi.Input<string>[]>;
|
|
844
|
+
/**
|
|
845
|
+
* Days of the week when the job will run.
|
|
846
|
+
*/
|
|
847
|
+
dayOfWeeks: pulumi.Input<pulumi.Input<string>[]>;
|
|
848
|
+
/**
|
|
849
|
+
* Hours of the day when the job will run.
|
|
850
|
+
*/
|
|
851
|
+
hours: pulumi.Input<pulumi.Input<string>[]>;
|
|
852
|
+
/**
|
|
853
|
+
* Minutes of the day when the job will run.
|
|
854
|
+
*/
|
|
855
|
+
minutes: pulumi.Input<pulumi.Input<string>[]>;
|
|
856
|
+
/**
|
|
857
|
+
* Months of the year when the job will run.
|
|
858
|
+
*/
|
|
859
|
+
months: pulumi.Input<pulumi.Input<string>[]>;
|
|
860
|
+
}
|
|
729
861
|
export interface DeploymentSegmentAnalysisSettings {
|
|
730
862
|
/**
|
|
731
863
|
* A list of strings that gives the segment attributes selected for tracking.
|
package/types/output.d.ts
CHANGED
|
@@ -725,6 +725,138 @@ export interface DeploymentPredictionsSettings {
|
|
|
725
725
|
*/
|
|
726
726
|
minComputes: number;
|
|
727
727
|
}
|
|
728
|
+
export interface DeploymentRetrainingPolicyAutopilotOptions {
|
|
729
|
+
/**
|
|
730
|
+
* Blend best models during Autopilot run. This option is not supported in SHAP-only mode.
|
|
731
|
+
*/
|
|
732
|
+
blendBestModels: boolean;
|
|
733
|
+
/**
|
|
734
|
+
* The autopiltot mode.
|
|
735
|
+
*/
|
|
736
|
+
mode: string;
|
|
737
|
+
/**
|
|
738
|
+
* Run Autopilot on Leakage Removed feature list (if exists).
|
|
739
|
+
*/
|
|
740
|
+
runLeakageRemovedFeatureList: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* Keep only models that can be converted to scorable java code during Autopilot run.
|
|
743
|
+
*/
|
|
744
|
+
scoringCodeOnly: boolean;
|
|
745
|
+
/**
|
|
746
|
+
* Include only models with SHAP value support.
|
|
747
|
+
*/
|
|
748
|
+
shapOnlyMode: boolean;
|
|
749
|
+
}
|
|
750
|
+
export interface DeploymentRetrainingPolicyProjectOptions {
|
|
751
|
+
/**
|
|
752
|
+
* The partitioning method for projects used to build new models.
|
|
753
|
+
*/
|
|
754
|
+
cvMethod: string;
|
|
755
|
+
/**
|
|
756
|
+
* The percentage of dataset to assign to holdout set in projects used to build new models.
|
|
757
|
+
*/
|
|
758
|
+
holdoutPct: number;
|
|
759
|
+
/**
|
|
760
|
+
* The model selection metric in projects used to build new models.
|
|
761
|
+
*/
|
|
762
|
+
metric?: string;
|
|
763
|
+
/**
|
|
764
|
+
* The number of cross validation folds to use for projects used to build new models.
|
|
765
|
+
*/
|
|
766
|
+
reps: number;
|
|
767
|
+
/**
|
|
768
|
+
* The percentage of dataset to assign to validation set in projects used to build new models.
|
|
769
|
+
*/
|
|
770
|
+
validationPct?: number;
|
|
771
|
+
/**
|
|
772
|
+
* The validation type for projects used to build new models.
|
|
773
|
+
*/
|
|
774
|
+
validationType: string;
|
|
775
|
+
}
|
|
776
|
+
export interface DeploymentRetrainingPolicyTimeSeriesOptions {
|
|
777
|
+
/**
|
|
778
|
+
* The ID of the calendar to be used in this project.
|
|
779
|
+
*/
|
|
780
|
+
calendarId?: string;
|
|
781
|
+
/**
|
|
782
|
+
* For time series projects only. Used to specify which differencing method to apply if the data is stationary. For classification problems simple and seasonal are not allowed. Parameter periodicities must be specified if seasonal is chosen. Defaults to auto.
|
|
783
|
+
*/
|
|
784
|
+
differencingMethod?: string;
|
|
785
|
+
/**
|
|
786
|
+
* Discount factor (alpha) used for exponentially weighted moving features.
|
|
787
|
+
*/
|
|
788
|
+
exponentiallyWeightedMovingAlpha?: number;
|
|
789
|
+
/**
|
|
790
|
+
* A list of periodicities for time series projects only. For classification problems periodicities are not allowed. If this is provided, parameter 'differencing*method' will default to 'seasonal' if not provided or 'auto'.
|
|
791
|
+
*/
|
|
792
|
+
periodicities?: outputs.DeploymentRetrainingPolicyTimeSeriesOptionsPeriodicity[];
|
|
793
|
+
/**
|
|
794
|
+
* For time series projects only. Used to specify whether to treat data as exponential trend and apply transformations like log-transform. For classification problems always is not allowed. Defaults to auto.
|
|
795
|
+
*/
|
|
796
|
+
treatAsExponential?: string;
|
|
797
|
+
}
|
|
798
|
+
export interface DeploymentRetrainingPolicyTimeSeriesOptionsPeriodicity {
|
|
799
|
+
/**
|
|
800
|
+
* The number of time steps.
|
|
801
|
+
*/
|
|
802
|
+
timeSteps: number;
|
|
803
|
+
/**
|
|
804
|
+
* The time unit or ROW if windowsBasisUnit is ROW
|
|
805
|
+
*/
|
|
806
|
+
timeUnit: string;
|
|
807
|
+
}
|
|
808
|
+
export interface DeploymentRetrainingPolicyTrigger {
|
|
809
|
+
/**
|
|
810
|
+
* Custom job ID for the retraining policy.
|
|
811
|
+
*/
|
|
812
|
+
customJobId?: string;
|
|
813
|
+
/**
|
|
814
|
+
* Minimal interval between policy runs in ISO 8601 duration string.
|
|
815
|
+
*/
|
|
816
|
+
minIntervalBetweenRuns?: string;
|
|
817
|
+
/**
|
|
818
|
+
* Schedule for the retraining policy.
|
|
819
|
+
*/
|
|
820
|
+
schedule?: outputs.DeploymentRetrainingPolicyTriggerSchedule;
|
|
821
|
+
/**
|
|
822
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status declines to failing.
|
|
823
|
+
*/
|
|
824
|
+
statusDeclinesToFailing: boolean;
|
|
825
|
+
/**
|
|
826
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status declines to warning.
|
|
827
|
+
*/
|
|
828
|
+
statusDeclinesToWarning: boolean;
|
|
829
|
+
/**
|
|
830
|
+
* Identifies when trigger type is based on deployment a health status, whether the policy will run when health status still in decline.
|
|
831
|
+
*/
|
|
832
|
+
statusStillInDecline: boolean;
|
|
833
|
+
/**
|
|
834
|
+
* Type of retraining policy trigger.
|
|
835
|
+
*/
|
|
836
|
+
type?: string;
|
|
837
|
+
}
|
|
838
|
+
export interface DeploymentRetrainingPolicyTriggerSchedule {
|
|
839
|
+
/**
|
|
840
|
+
* Days of the month when the job will run.
|
|
841
|
+
*/
|
|
842
|
+
dayOfMonths: string[];
|
|
843
|
+
/**
|
|
844
|
+
* Days of the week when the job will run.
|
|
845
|
+
*/
|
|
846
|
+
dayOfWeeks: string[];
|
|
847
|
+
/**
|
|
848
|
+
* Hours of the day when the job will run.
|
|
849
|
+
*/
|
|
850
|
+
hours: string[];
|
|
851
|
+
/**
|
|
852
|
+
* Minutes of the day when the job will run.
|
|
853
|
+
*/
|
|
854
|
+
minutes: string[];
|
|
855
|
+
/**
|
|
856
|
+
* Months of the year when the job will run.
|
|
857
|
+
*/
|
|
858
|
+
months: string[];
|
|
859
|
+
}
|
|
728
860
|
export interface DeploymentSegmentAnalysisSettings {
|
|
729
861
|
/**
|
|
730
862
|
* A list of strings that gives the segment attributes selected for tracking.
|