@datarobot/pulumi-datarobot 0.5.1 → 0.5.3

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.
@@ -0,0 +1,125 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * AWS Credential
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as datarobot from "@datarobot/pulumi-datarobot";
10
+ *
11
+ * const example = new datarobot.AwsCredential("example", {
12
+ * awsAccessKeyId: "example_access_key_id",
13
+ * awsSecretAccessKey: "example_secret_access_key",
14
+ * awsSessionToken: "example_session_token",
15
+ * description: "Description for the example AWS credential",
16
+ * });
17
+ * ```
18
+ */
19
+ export declare class AwsCredential extends pulumi.CustomResource {
20
+ /**
21
+ * Get an existing AwsCredential resource's state with the given name, ID, and optional extra
22
+ * properties used to qualify the lookup.
23
+ *
24
+ * @param name The _unique_ name of the resulting resource.
25
+ * @param id The _unique_ provider ID of the resource to lookup.
26
+ * @param state Any extra arguments used during the lookup.
27
+ * @param opts Optional settings to control the behavior of the CustomResource.
28
+ */
29
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AwsCredentialState, opts?: pulumi.CustomResourceOptions): AwsCredential;
30
+ /**
31
+ * Returns true if the given object is an instance of AwsCredential. This is designed to work even
32
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
33
+ */
34
+ static isInstance(obj: any): obj is AwsCredential;
35
+ /**
36
+ * The AWS Access Key ID.
37
+ */
38
+ readonly awsAccessKeyId: pulumi.Output<string | undefined>;
39
+ /**
40
+ * The AWS Secret Access Key.
41
+ */
42
+ readonly awsSecretAccessKey: pulumi.Output<string | undefined>;
43
+ /**
44
+ * The AWS Session Token.
45
+ */
46
+ readonly awsSessionToken: pulumi.Output<string | undefined>;
47
+ /**
48
+ * The ID of the saved shared secure configuration. If specified, cannot include awsAccessKeyId, awsSecretAccessKey or awsSessionToken.
49
+ */
50
+ readonly configId: pulumi.Output<string | undefined>;
51
+ /**
52
+ * The description of the AWS Credential.
53
+ */
54
+ readonly description: pulumi.Output<string | undefined>;
55
+ /**
56
+ * The name of the AWS Credential.
57
+ */
58
+ readonly name: pulumi.Output<string>;
59
+ /**
60
+ * Create a AwsCredential resource with the given unique name, arguments, and options.
61
+ *
62
+ * @param name The _unique_ name of the resource.
63
+ * @param args The arguments to use to populate this resource's properties.
64
+ * @param opts A bag of options that control this resource's behavior.
65
+ */
66
+ constructor(name: string, args?: AwsCredentialArgs, opts?: pulumi.CustomResourceOptions);
67
+ }
68
+ /**
69
+ * Input properties used for looking up and filtering AwsCredential resources.
70
+ */
71
+ export interface AwsCredentialState {
72
+ /**
73
+ * The AWS Access Key ID.
74
+ */
75
+ awsAccessKeyId?: pulumi.Input<string>;
76
+ /**
77
+ * The AWS Secret Access Key.
78
+ */
79
+ awsSecretAccessKey?: pulumi.Input<string>;
80
+ /**
81
+ * The AWS Session Token.
82
+ */
83
+ awsSessionToken?: pulumi.Input<string>;
84
+ /**
85
+ * The ID of the saved shared secure configuration. If specified, cannot include awsAccessKeyId, awsSecretAccessKey or awsSessionToken.
86
+ */
87
+ configId?: pulumi.Input<string>;
88
+ /**
89
+ * The description of the AWS Credential.
90
+ */
91
+ description?: pulumi.Input<string>;
92
+ /**
93
+ * The name of the AWS Credential.
94
+ */
95
+ name?: pulumi.Input<string>;
96
+ }
97
+ /**
98
+ * The set of arguments for constructing a AwsCredential resource.
99
+ */
100
+ export interface AwsCredentialArgs {
101
+ /**
102
+ * The AWS Access Key ID.
103
+ */
104
+ awsAccessKeyId?: pulumi.Input<string>;
105
+ /**
106
+ * The AWS Secret Access Key.
107
+ */
108
+ awsSecretAccessKey?: pulumi.Input<string>;
109
+ /**
110
+ * The AWS Session Token.
111
+ */
112
+ awsSessionToken?: pulumi.Input<string>;
113
+ /**
114
+ * The ID of the saved shared secure configuration. If specified, cannot include awsAccessKeyId, awsSecretAccessKey or awsSessionToken.
115
+ */
116
+ configId?: pulumi.Input<string>;
117
+ /**
118
+ * The description of the AWS Credential.
119
+ */
120
+ description?: pulumi.Input<string>;
121
+ /**
122
+ * The name of the AWS Credential.
123
+ */
124
+ name?: pulumi.Input<string>;
125
+ }
@@ -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.AwsCredential = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * AWS Credential
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datarobot from "@datarobot/pulumi-datarobot";
16
+ *
17
+ * const example = new datarobot.AwsCredential("example", {
18
+ * awsAccessKeyId: "example_access_key_id",
19
+ * awsSecretAccessKey: "example_secret_access_key",
20
+ * awsSessionToken: "example_session_token",
21
+ * description: "Description for the example AWS credential",
22
+ * });
23
+ * ```
24
+ */
25
+ class AwsCredential extends pulumi.CustomResource {
26
+ /**
27
+ * Get an existing AwsCredential resource's state with the given name, ID, and optional extra
28
+ * properties used to qualify the lookup.
29
+ *
30
+ * @param name The _unique_ name of the resulting resource.
31
+ * @param id The _unique_ provider ID of the resource to lookup.
32
+ * @param state Any extra arguments used during the lookup.
33
+ * @param opts Optional settings to control the behavior of the CustomResource.
34
+ */
35
+ static get(name, id, state, opts) {
36
+ return new AwsCredential(name, state, Object.assign(Object.assign({}, opts), { id: id }));
37
+ }
38
+ /**
39
+ * Returns true if the given object is an instance of AwsCredential. This is designed to work even
40
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
+ */
42
+ static isInstance(obj) {
43
+ if (obj === undefined || obj === null) {
44
+ return false;
45
+ }
46
+ return obj['__pulumiType'] === AwsCredential.__pulumiType;
47
+ }
48
+ constructor(name, argsOrState, opts) {
49
+ let resourceInputs = {};
50
+ opts = opts || {};
51
+ if (opts.id) {
52
+ const state = argsOrState;
53
+ resourceInputs["awsAccessKeyId"] = state ? state.awsAccessKeyId : undefined;
54
+ resourceInputs["awsSecretAccessKey"] = state ? state.awsSecretAccessKey : undefined;
55
+ resourceInputs["awsSessionToken"] = state ? state.awsSessionToken : undefined;
56
+ resourceInputs["configId"] = state ? state.configId : undefined;
57
+ resourceInputs["description"] = state ? state.description : undefined;
58
+ resourceInputs["name"] = state ? state.name : undefined;
59
+ }
60
+ else {
61
+ const args = argsOrState;
62
+ resourceInputs["awsAccessKeyId"] = args ? args.awsAccessKeyId : undefined;
63
+ resourceInputs["awsSecretAccessKey"] = (args === null || args === void 0 ? void 0 : args.awsSecretAccessKey) ? pulumi.secret(args.awsSecretAccessKey) : undefined;
64
+ resourceInputs["awsSessionToken"] = (args === null || args === void 0 ? void 0 : args.awsSessionToken) ? pulumi.secret(args.awsSessionToken) : undefined;
65
+ resourceInputs["configId"] = args ? args.configId : undefined;
66
+ resourceInputs["description"] = args ? args.description : undefined;
67
+ resourceInputs["name"] = args ? args.name : undefined;
68
+ }
69
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
70
+ const secretOpts = { additionalSecretOutputs: ["awsSecretAccessKey", "awsSessionToken"] };
71
+ opts = pulumi.mergeOptions(opts, secretOpts);
72
+ super(AwsCredential.__pulumiType, name, resourceInputs, opts);
73
+ }
74
+ }
75
+ exports.AwsCredential = AwsCredential;
76
+ /** @internal */
77
+ AwsCredential.__pulumiType = 'datarobot:index/awsCredential:AwsCredential';
78
+ //# sourceMappingURL=awsCredential.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"awsCredential.js","sourceRoot":"","sources":["../awsCredential.ts"],"names":[],"mappings":"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"}
@@ -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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"}
@@ -62,7 +62,7 @@ export interface GetExecutionEnvironmentResult {
62
62
  * });
63
63
  * ```
64
64
  */
65
- export declare function getExecutionEnvironmentOutput(args: GetExecutionEnvironmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetExecutionEnvironmentResult>;
65
+ export declare function getExecutionEnvironmentOutput(args: GetExecutionEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExecutionEnvironmentResult>;
66
66
  /**
67
67
  * A collection of arguments for invoking getExecutionEnvironment.
68
68
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getExecutionEnvironment.js","sourceRoot":"","sources":["../getExecutionEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE;QAClG,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
1
+ {"version":3,"file":"getExecutionEnvironment.js","sourceRoot":"","sources":["../getExecutionEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAAiC;IACpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE;QAClG,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
@@ -54,7 +54,7 @@ export interface GetGlobalModelResult {
54
54
  * });
55
55
  * ```
56
56
  */
57
- export declare function getGlobalModelOutput(args: GetGlobalModelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGlobalModelResult>;
57
+ export declare function getGlobalModelOutput(args: GetGlobalModelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlobalModelResult>;
58
58
  /**
59
59
  * A collection of arguments for invoking getGlobalModel.
60
60
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getGlobalModel.js","sourceRoot":"","sources":["../getGlobalModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+CAA+C,EAAE;QAChF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC"}
1
+ {"version":3,"file":"getGlobalModel.js","sourceRoot":"","sources":["../getGlobalModel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+CAA+C,EAAE;QAChF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC"}
package/index.d.ts CHANGED
@@ -4,6 +4,9 @@ export declare const ApiTokenCredential: typeof import("./apiTokenCredential").A
4
4
  export { ApplicationSourceArgs, ApplicationSourceState } from "./applicationSource";
5
5
  export type ApplicationSource = import("./applicationSource").ApplicationSource;
6
6
  export declare const ApplicationSource: typeof import("./applicationSource").ApplicationSource;
7
+ export { AwsCredentialArgs, AwsCredentialState } from "./awsCredential";
8
+ export type AwsCredential = import("./awsCredential").AwsCredential;
9
+ export declare const AwsCredential: typeof import("./awsCredential").AwsCredential;
7
10
  export { BasicCredentialArgs, BasicCredentialState } from "./basicCredential";
8
11
  export type BasicCredential = import("./basicCredential").BasicCredential;
9
12
  export declare const BasicCredential: typeof import("./basicCredential").BasicCredential;
@@ -43,6 +46,9 @@ export declare const Datastore: typeof import("./datastore").Datastore;
43
46
  export { DeploymentArgs, DeploymentState } from "./deployment";
44
47
  export type Deployment = import("./deployment").Deployment;
45
48
  export declare const Deployment: typeof import("./deployment").Deployment;
49
+ export { DeploymentRetrainingPolicyArgs, DeploymentRetrainingPolicyState } from "./deploymentRetrainingPolicy";
50
+ export type DeploymentRetrainingPolicy = import("./deploymentRetrainingPolicy").DeploymentRetrainingPolicy;
51
+ export declare const DeploymentRetrainingPolicy: typeof import("./deploymentRetrainingPolicy").DeploymentRetrainingPolicy;
46
52
  export { ExecutionEnvironmentArgs, ExecutionEnvironmentState } from "./executionEnvironment";
47
53
  export type ExecutionEnvironment = import("./executionEnvironment").ExecutionEnvironment;
48
54
  export declare const ExecutionEnvironment: typeof import("./executionEnvironment").ExecutionEnvironment;
package/index.js CHANGED
@@ -2,13 +2,15 @@
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.AwsCredential = exports.ApplicationSource = exports.ApiTokenCredential = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  exports.ApiTokenCredential = null;
9
9
  utilities.lazyLoad(exports, ["ApiTokenCredential"], () => require("./apiTokenCredential"));
10
10
  exports.ApplicationSource = null;
11
11
  utilities.lazyLoad(exports, ["ApplicationSource"], () => require("./applicationSource"));
12
+ exports.AwsCredential = null;
13
+ utilities.lazyLoad(exports, ["AwsCredential"], () => require("./awsCredential"));
12
14
  exports.BasicCredential = null;
13
15
  utilities.lazyLoad(exports, ["BasicCredential"], () => require("./basicCredential"));
14
16
  exports.BatchPredictionJobDefinition = null;
@@ -35,6 +37,8 @@ exports.Datastore = null;
35
37
  utilities.lazyLoad(exports, ["Datastore"], () => require("./datastore"));
36
38
  exports.Deployment = null;
37
39
  utilities.lazyLoad(exports, ["Deployment"], () => require("./deployment"));
40
+ exports.DeploymentRetrainingPolicy = null;
41
+ utilities.lazyLoad(exports, ["DeploymentRetrainingPolicy"], () => require("./deploymentRetrainingPolicy"));
38
42
  exports.ExecutionEnvironment = null;
39
43
  utilities.lazyLoad(exports, ["ExecutionEnvironment"], () => require("./executionEnvironment"));
40
44
  exports.getExecutionEnvironment = null;
@@ -78,6 +82,8 @@ const _module = {
78
82
  return new exports.ApiTokenCredential(name, undefined, { urn });
79
83
  case "datarobot:index/applicationSource:ApplicationSource":
80
84
  return new exports.ApplicationSource(name, undefined, { urn });
85
+ case "datarobot:index/awsCredential:AwsCredential":
86
+ return new exports.AwsCredential(name, undefined, { urn });
81
87
  case "datarobot:index/basicCredential:BasicCredential":
82
88
  return new exports.BasicCredential(name, undefined, { urn });
83
89
  case "datarobot:index/batchPredictionJobDefinition:BatchPredictionJobDefinition":
@@ -104,6 +110,8 @@ const _module = {
104
110
  return new exports.Datastore(name, undefined, { urn });
105
111
  case "datarobot:index/deployment:Deployment":
106
112
  return new exports.Deployment(name, undefined, { urn });
113
+ case "datarobot:index/deploymentRetrainingPolicy:DeploymentRetrainingPolicy":
114
+ return new exports.DeploymentRetrainingPolicy(name, undefined, { urn });
107
115
  case "datarobot:index/executionEnvironment:ExecutionEnvironment":
108
116
  return new exports.ExecutionEnvironment(name, undefined, { urn });
109
117
  case "datarobot:index/googleCloudCredential:GoogleCloudCredential":
@@ -133,6 +141,7 @@ const _module = {
133
141
  };
134
142
  pulumi.runtime.registerResourceModule("datarobot", "index/apiTokenCredential", _module);
135
143
  pulumi.runtime.registerResourceModule("datarobot", "index/applicationSource", _module);
144
+ pulumi.runtime.registerResourceModule("datarobot", "index/awsCredential", _module);
136
145
  pulumi.runtime.registerResourceModule("datarobot", "index/basicCredential", _module);
137
146
  pulumi.runtime.registerResourceModule("datarobot", "index/batchPredictionJobDefinition", _module);
138
147
  pulumi.runtime.registerResourceModule("datarobot", "index/customApplication", _module);
@@ -146,6 +155,7 @@ pulumi.runtime.registerResourceModule("datarobot", "index/datasetFromUrl", _modu
146
155
  pulumi.runtime.registerResourceModule("datarobot", "index/datasource", _module);
147
156
  pulumi.runtime.registerResourceModule("datarobot", "index/datastore", _module);
148
157
  pulumi.runtime.registerResourceModule("datarobot", "index/deployment", _module);
158
+ pulumi.runtime.registerResourceModule("datarobot", "index/deploymentRetrainingPolicy", _module);
149
159
  pulumi.runtime.registerResourceModule("datarobot", "index/executionEnvironment", _module);
150
160
  pulumi.runtime.registerResourceModule("datarobot", "index/googleCloudCredential", _module);
151
161
  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":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarobot/pulumi-datarobot",
3
- "version": "v0.5.1",
3
+ "version": "v0.5.3",
4
4
  "description": "A Pulumi package for creating and managing DataRobot resources.",
5
5
  "keywords": [
6
6
  "datarobot",
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.