@datarobot/pulumi-datarobot 0.10.34 → 0.10.36
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/artifact.d.ts +109 -0
- package/artifact.js +65 -0
- package/artifact.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +11 -1
- package/index.js.map +1 -1
- package/memorySpace.d.ts +1 -1
- package/memorySpace.js +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +240 -0
- package/types/output.d.ts +240 -0
- package/workload.d.ts +123 -0
- package/workload.js +76 -0
- package/workload.js.map +1 -0
package/artifact.d.ts
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Artifact definition for the Workload API. Artifacts define container images and runtime configuration for workloads.
|
|
6
|
+
*/
|
|
7
|
+
export declare class Artifact extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing Artifact 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?: ArtifactState, opts?: pulumi.CustomResourceOptions): Artifact;
|
|
18
|
+
/**
|
|
19
|
+
* Returns true if the given object is an instance of Artifact. 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 Artifact;
|
|
23
|
+
/**
|
|
24
|
+
* The current artifact ID. Updated on every create or update that produces a new artifact version. Reference this field from dependent resources such as Workload.
|
|
25
|
+
*/
|
|
26
|
+
readonly artifactId: pulumi.Output<string>;
|
|
27
|
+
/**
|
|
28
|
+
* ID of the artifact repository for versioning. Computed on first create if not provided; subsequent updates create new versions in the same repository.
|
|
29
|
+
*/
|
|
30
|
+
readonly artifactRepositoryId: pulumi.Output<string>;
|
|
31
|
+
/**
|
|
32
|
+
* The description of the Artifact.
|
|
33
|
+
*/
|
|
34
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
35
|
+
/**
|
|
36
|
+
* The name of the Artifact.
|
|
37
|
+
*/
|
|
38
|
+
readonly name: pulumi.Output<string>;
|
|
39
|
+
/**
|
|
40
|
+
* The artifact specification containing container group definitions.
|
|
41
|
+
*/
|
|
42
|
+
readonly spec: pulumi.Output<outputs.ArtifactSpec>;
|
|
43
|
+
/**
|
|
44
|
+
* The artifact type: `service` or `nim`. Defaults to `service`.
|
|
45
|
+
*/
|
|
46
|
+
readonly type: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Create a Artifact resource with the given unique name, arguments, and options.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resource.
|
|
51
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
52
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
53
|
+
*/
|
|
54
|
+
constructor(name: string, args: ArtifactArgs, opts?: pulumi.CustomResourceOptions);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Input properties used for looking up and filtering Artifact resources.
|
|
58
|
+
*/
|
|
59
|
+
export interface ArtifactState {
|
|
60
|
+
/**
|
|
61
|
+
* The current artifact ID. Updated on every create or update that produces a new artifact version. Reference this field from dependent resources such as Workload.
|
|
62
|
+
*/
|
|
63
|
+
artifactId?: pulumi.Input<string>;
|
|
64
|
+
/**
|
|
65
|
+
* ID of the artifact repository for versioning. Computed on first create if not provided; subsequent updates create new versions in the same repository.
|
|
66
|
+
*/
|
|
67
|
+
artifactRepositoryId?: pulumi.Input<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The description of the Artifact.
|
|
70
|
+
*/
|
|
71
|
+
description?: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* The name of the Artifact.
|
|
74
|
+
*/
|
|
75
|
+
name?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* The artifact specification containing container group definitions.
|
|
78
|
+
*/
|
|
79
|
+
spec?: pulumi.Input<inputs.ArtifactSpec>;
|
|
80
|
+
/**
|
|
81
|
+
* The artifact type: `service` or `nim`. Defaults to `service`.
|
|
82
|
+
*/
|
|
83
|
+
type?: pulumi.Input<string>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* The set of arguments for constructing a Artifact resource.
|
|
87
|
+
*/
|
|
88
|
+
export interface ArtifactArgs {
|
|
89
|
+
/**
|
|
90
|
+
* ID of the artifact repository for versioning. Computed on first create if not provided; subsequent updates create new versions in the same repository.
|
|
91
|
+
*/
|
|
92
|
+
artifactRepositoryId?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The description of the Artifact.
|
|
95
|
+
*/
|
|
96
|
+
description?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* The name of the Artifact.
|
|
99
|
+
*/
|
|
100
|
+
name?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The artifact specification containing container group definitions.
|
|
103
|
+
*/
|
|
104
|
+
spec: pulumi.Input<inputs.ArtifactSpec>;
|
|
105
|
+
/**
|
|
106
|
+
* The artifact type: `service` or `nim`. Defaults to `service`.
|
|
107
|
+
*/
|
|
108
|
+
type?: pulumi.Input<string>;
|
|
109
|
+
}
|
package/artifact.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
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.Artifact = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Artifact definition for the Workload API. Artifacts define container images and runtime configuration for workloads.
|
|
10
|
+
*/
|
|
11
|
+
class Artifact extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing Artifact 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 Artifact(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of Artifact. 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'] === Artifact.__pulumiType;
|
|
33
|
+
}
|
|
34
|
+
constructor(name, argsOrState, opts) {
|
|
35
|
+
let resourceInputs = {};
|
|
36
|
+
opts = opts || {};
|
|
37
|
+
if (opts.id) {
|
|
38
|
+
const state = argsOrState;
|
|
39
|
+
resourceInputs["artifactId"] = state ? state.artifactId : undefined;
|
|
40
|
+
resourceInputs["artifactRepositoryId"] = state ? state.artifactRepositoryId : undefined;
|
|
41
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
42
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
43
|
+
resourceInputs["spec"] = state ? state.spec : undefined;
|
|
44
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
const args = argsOrState;
|
|
48
|
+
if ((!args || args.spec === undefined) && !opts.urn) {
|
|
49
|
+
throw new Error("Missing required property 'spec'");
|
|
50
|
+
}
|
|
51
|
+
resourceInputs["artifactRepositoryId"] = args ? args.artifactRepositoryId : undefined;
|
|
52
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
53
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
54
|
+
resourceInputs["spec"] = args ? args.spec : undefined;
|
|
55
|
+
resourceInputs["type"] = args ? args.type : undefined;
|
|
56
|
+
resourceInputs["artifactId"] = undefined /*out*/;
|
|
57
|
+
}
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
59
|
+
super(Artifact.__pulumiType, name, resourceInputs, opts);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.Artifact = Artifact;
|
|
63
|
+
/** @internal */
|
|
64
|
+
Artifact.__pulumiType = 'datarobot:index/artifact:Artifact';
|
|
65
|
+
//# sourceMappingURL=artifact.js.map
|
package/artifact.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"artifact.js","sourceRoot":"","sources":["../artifact.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const ApplicationSource: typeof import("./applicationSource").App
|
|
|
10
10
|
export { ApplicationSourceFromTemplateArgs, ApplicationSourceFromTemplateState } from "./applicationSourceFromTemplate";
|
|
11
11
|
export type ApplicationSourceFromTemplate = import("./applicationSourceFromTemplate").ApplicationSourceFromTemplate;
|
|
12
12
|
export declare const ApplicationSourceFromTemplate: typeof import("./applicationSourceFromTemplate").ApplicationSourceFromTemplate;
|
|
13
|
+
export { ArtifactArgs, ArtifactState } from "./artifact";
|
|
14
|
+
export type Artifact = import("./artifact").Artifact;
|
|
15
|
+
export declare const Artifact: typeof import("./artifact").Artifact;
|
|
13
16
|
export { AwsCredentialArgs, AwsCredentialState } from "./awsCredential";
|
|
14
17
|
export type AwsCredential = import("./awsCredential").AwsCredential;
|
|
15
18
|
export declare const AwsCredential: typeof import("./awsCredential").AwsCredential;
|
|
@@ -130,6 +133,9 @@ export declare const UserMcpToolMetadata: typeof import("./userMcpToolMetadata")
|
|
|
130
133
|
export { VectorDatabaseArgs, VectorDatabaseState } from "./vectorDatabase";
|
|
131
134
|
export type VectorDatabase = import("./vectorDatabase").VectorDatabase;
|
|
132
135
|
export declare const VectorDatabase: typeof import("./vectorDatabase").VectorDatabase;
|
|
136
|
+
export { WorkloadArgs, WorkloadState } from "./workload";
|
|
137
|
+
export type Workload = import("./workload").Workload;
|
|
138
|
+
export declare const Workload: typeof import("./workload").Workload;
|
|
133
139
|
import * as config from "./config";
|
|
134
140
|
import * as types from "./types";
|
|
135
141
|
export { config, types, };
|
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.UserMcpToolMetadata = exports.UserMcpResourceMetadata = exports.UserMcpPromptMetadata = exports.UseCase = exports.RemoteRepository = exports.RegisteredModelFromLeaderboard = exports.RegisteredModel = exports.QaApplication = exports.Provider = exports.PredictionEnvironment = exports.Playground = exports.NotificationPolicy = exports.NotificationChannel = exports.Notebook = exports.MemorySpace = 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.CustomModelLlmValidation = exports.CustomModel = exports.CustomMetricJob = exports.CustomMetricFromJob = exports.CustomMetric = exports.CustomJob = exports.CustomApplicationFromEnvironment = exports.CustomApplication = exports.BatchPredictionJobDefinition = exports.BasicCredential = exports.AzureCredential = exports.AwsCredential = exports.ApplicationSourceFromTemplate = exports.ApplicationSource = exports.AppOauth = exports.ApiTokenCredential = void 0;
|
|
5
|
+
exports.types = exports.config = exports.Workload = exports.VectorDatabase = exports.UserMcpToolMetadata = exports.UserMcpResourceMetadata = exports.UserMcpPromptMetadata = exports.UseCase = exports.RemoteRepository = exports.RegisteredModelFromLeaderboard = exports.RegisteredModel = exports.QaApplication = exports.Provider = exports.PredictionEnvironment = exports.Playground = exports.NotificationPolicy = exports.NotificationChannel = exports.Notebook = exports.MemorySpace = 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.CustomModelLlmValidation = exports.CustomModel = exports.CustomMetricJob = exports.CustomMetricFromJob = exports.CustomMetric = exports.CustomJob = exports.CustomApplicationFromEnvironment = exports.CustomApplication = exports.BatchPredictionJobDefinition = exports.BasicCredential = exports.AzureCredential = exports.AwsCredential = exports.Artifact = exports.ApplicationSourceFromTemplate = exports.ApplicationSource = exports.AppOauth = exports.ApiTokenCredential = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.ApiTokenCredential = null;
|
|
@@ -13,6 +13,8 @@ exports.ApplicationSource = null;
|
|
|
13
13
|
utilities.lazyLoad(exports, ["ApplicationSource"], () => require("./applicationSource"));
|
|
14
14
|
exports.ApplicationSourceFromTemplate = null;
|
|
15
15
|
utilities.lazyLoad(exports, ["ApplicationSourceFromTemplate"], () => require("./applicationSourceFromTemplate"));
|
|
16
|
+
exports.Artifact = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["Artifact"], () => require("./artifact"));
|
|
16
18
|
exports.AwsCredential = null;
|
|
17
19
|
utilities.lazyLoad(exports, ["AwsCredential"], () => require("./awsCredential"));
|
|
18
20
|
exports.AzureCredential = null;
|
|
@@ -95,6 +97,8 @@ exports.UserMcpToolMetadata = null;
|
|
|
95
97
|
utilities.lazyLoad(exports, ["UserMcpToolMetadata"], () => require("./userMcpToolMetadata"));
|
|
96
98
|
exports.VectorDatabase = null;
|
|
97
99
|
utilities.lazyLoad(exports, ["VectorDatabase"], () => require("./vectorDatabase"));
|
|
100
|
+
exports.Workload = null;
|
|
101
|
+
utilities.lazyLoad(exports, ["Workload"], () => require("./workload"));
|
|
98
102
|
// Export sub-modules:
|
|
99
103
|
const config = require("./config");
|
|
100
104
|
exports.config = config;
|
|
@@ -112,6 +116,8 @@ const _module = {
|
|
|
112
116
|
return new exports.ApplicationSource(name, undefined, { urn });
|
|
113
117
|
case "datarobot:index/applicationSourceFromTemplate:ApplicationSourceFromTemplate":
|
|
114
118
|
return new exports.ApplicationSourceFromTemplate(name, undefined, { urn });
|
|
119
|
+
case "datarobot:index/artifact:Artifact":
|
|
120
|
+
return new exports.Artifact(name, undefined, { urn });
|
|
115
121
|
case "datarobot:index/awsCredential:AwsCredential":
|
|
116
122
|
return new exports.AwsCredential(name, undefined, { urn });
|
|
117
123
|
case "datarobot:index/azureCredential:AzureCredential":
|
|
@@ -186,6 +192,8 @@ const _module = {
|
|
|
186
192
|
return new exports.UserMcpToolMetadata(name, undefined, { urn });
|
|
187
193
|
case "datarobot:index/vectorDatabase:VectorDatabase":
|
|
188
194
|
return new exports.VectorDatabase(name, undefined, { urn });
|
|
195
|
+
case "datarobot:index/workload:Workload":
|
|
196
|
+
return new exports.Workload(name, undefined, { urn });
|
|
189
197
|
default:
|
|
190
198
|
throw new Error(`unknown resource type ${type}`);
|
|
191
199
|
}
|
|
@@ -195,6 +203,7 @@ pulumi.runtime.registerResourceModule("datarobot", "index/apiTokenCredential", _
|
|
|
195
203
|
pulumi.runtime.registerResourceModule("datarobot", "index/appOauth", _module);
|
|
196
204
|
pulumi.runtime.registerResourceModule("datarobot", "index/applicationSource", _module);
|
|
197
205
|
pulumi.runtime.registerResourceModule("datarobot", "index/applicationSourceFromTemplate", _module);
|
|
206
|
+
pulumi.runtime.registerResourceModule("datarobot", "index/artifact", _module);
|
|
198
207
|
pulumi.runtime.registerResourceModule("datarobot", "index/awsCredential", _module);
|
|
199
208
|
pulumi.runtime.registerResourceModule("datarobot", "index/azureCredential", _module);
|
|
200
209
|
pulumi.runtime.registerResourceModule("datarobot", "index/basicCredential", _module);
|
|
@@ -232,6 +241,7 @@ pulumi.runtime.registerResourceModule("datarobot", "index/userMcpPromptMetadata"
|
|
|
232
241
|
pulumi.runtime.registerResourceModule("datarobot", "index/userMcpResourceMetadata", _module);
|
|
233
242
|
pulumi.runtime.registerResourceModule("datarobot", "index/userMcpToolMetadata", _module);
|
|
234
243
|
pulumi.runtime.registerResourceModule("datarobot", "index/vectorDatabase", _module);
|
|
244
|
+
pulumi.runtime.registerResourceModule("datarobot", "index/workload", _module);
|
|
235
245
|
pulumi.runtime.registerResourcePackage("datarobot", {
|
|
236
246
|
version: utilities.getVersion(),
|
|
237
247
|
constructProvider: (name, type, urn) => {
|
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/memorySpace.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Memory Space is a DataRobot concept that serves as a logical container for Chat Histories (Sessions) and persistent Memories. Feature should be enabled before use with `
|
|
3
|
+
* Memory Space is a DataRobot concept that serves as a logical container for Chat Histories (Sessions) and persistent Memories. Feature should be enabled before use with `ENABLE_AGENTIC_MEMORY_API` flag.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
package/memorySpace.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.MemorySpace = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Memory Space is a DataRobot concept that serves as a logical container for Chat Histories (Sessions) and persistent Memories. Feature should be enabled before use with `
|
|
9
|
+
* Memory Space is a DataRobot concept that serves as a logical container for Chat Histories (Sessions) and persistent Memories. Feature should be enabled before use with `ENABLE_AGENTIC_MEMORY_API` flag.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -72,6 +72,194 @@ export interface ApplicationSourceRuntimeParameterValue {
|
|
|
72
72
|
*/
|
|
73
73
|
value: pulumi.Input<string>;
|
|
74
74
|
}
|
|
75
|
+
export interface ArtifactSpec {
|
|
76
|
+
/**
|
|
77
|
+
* List of container groups.
|
|
78
|
+
*/
|
|
79
|
+
containerGroups: pulumi.Input<pulumi.Input<inputs.ArtifactSpecContainerGroup>[]>;
|
|
80
|
+
}
|
|
81
|
+
export interface ArtifactSpecContainerGroup {
|
|
82
|
+
/**
|
|
83
|
+
* List of containers in this group.
|
|
84
|
+
*/
|
|
85
|
+
containers: pulumi.Input<pulumi.Input<inputs.ArtifactSpecContainerGroupContainer>[]>;
|
|
86
|
+
}
|
|
87
|
+
export interface ArtifactSpecContainerGroupContainer {
|
|
88
|
+
/**
|
|
89
|
+
* Description of the container.
|
|
90
|
+
*/
|
|
91
|
+
description?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Container entrypoint.
|
|
94
|
+
*/
|
|
95
|
+
entrypoints?: pulumi.Input<pulumi.Input<string>[]>;
|
|
96
|
+
/**
|
|
97
|
+
* Environment variables for the container.
|
|
98
|
+
*/
|
|
99
|
+
environmentVars?: pulumi.Input<pulumi.Input<inputs.ArtifactSpecContainerGroupContainerEnvironmentVar>[]>;
|
|
100
|
+
/**
|
|
101
|
+
* Docker image URI.
|
|
102
|
+
*/
|
|
103
|
+
imageUri: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Container liveness check configuration.
|
|
106
|
+
*/
|
|
107
|
+
livenessProbe?: pulumi.Input<inputs.ArtifactSpecContainerGroupContainerLivenessProbe>;
|
|
108
|
+
/**
|
|
109
|
+
* Name of the container.
|
|
110
|
+
*/
|
|
111
|
+
name?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* Container access port (1024-65535). Required for primary containers; omit for non-primary.
|
|
114
|
+
*/
|
|
115
|
+
port?: pulumi.Input<number>;
|
|
116
|
+
/**
|
|
117
|
+
* Whether this is the primary container.
|
|
118
|
+
*/
|
|
119
|
+
primary?: pulumi.Input<boolean>;
|
|
120
|
+
/**
|
|
121
|
+
* Container readiness check configuration.
|
|
122
|
+
*/
|
|
123
|
+
readinessProbe?: pulumi.Input<inputs.ArtifactSpecContainerGroupContainerReadinessProbe>;
|
|
124
|
+
/**
|
|
125
|
+
* Resource requirements for the container.
|
|
126
|
+
*/
|
|
127
|
+
resourceRequest: pulumi.Input<inputs.ArtifactSpecContainerGroupContainerResourceRequest>;
|
|
128
|
+
/**
|
|
129
|
+
* Container startup check configuration.
|
|
130
|
+
*/
|
|
131
|
+
startupProbe?: pulumi.Input<inputs.ArtifactSpecContainerGroupContainerStartupProbe>;
|
|
132
|
+
}
|
|
133
|
+
export interface ArtifactSpecContainerGroupContainerEnvironmentVar {
|
|
134
|
+
/**
|
|
135
|
+
* Name of the environment variable.
|
|
136
|
+
*/
|
|
137
|
+
name: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* Value of the environment variable.
|
|
140
|
+
*/
|
|
141
|
+
value: pulumi.Input<string>;
|
|
142
|
+
}
|
|
143
|
+
export interface ArtifactSpecContainerGroupContainerLivenessProbe {
|
|
144
|
+
/**
|
|
145
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
146
|
+
*/
|
|
147
|
+
failureThreshold?: pulumi.Input<number>;
|
|
148
|
+
/**
|
|
149
|
+
* Host name to connect to, defaults to the pod IP.
|
|
150
|
+
*/
|
|
151
|
+
host?: pulumi.Input<string>;
|
|
152
|
+
/**
|
|
153
|
+
* Number of seconds to wait before the first probe is executed.
|
|
154
|
+
*/
|
|
155
|
+
initialDelaySeconds?: pulumi.Input<number>;
|
|
156
|
+
/**
|
|
157
|
+
* URL path to query for health check.
|
|
158
|
+
*/
|
|
159
|
+
path: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* How often (in seconds) to perform the probe.
|
|
162
|
+
*/
|
|
163
|
+
periodSeconds?: pulumi.Input<number>;
|
|
164
|
+
/**
|
|
165
|
+
* Port number to access on the container.
|
|
166
|
+
*/
|
|
167
|
+
port?: pulumi.Input<number>;
|
|
168
|
+
/**
|
|
169
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
170
|
+
*/
|
|
171
|
+
scheme?: pulumi.Input<string>;
|
|
172
|
+
/**
|
|
173
|
+
* Number of seconds after which the probe times out.
|
|
174
|
+
*/
|
|
175
|
+
timeoutSeconds?: pulumi.Input<number>;
|
|
176
|
+
}
|
|
177
|
+
export interface ArtifactSpecContainerGroupContainerReadinessProbe {
|
|
178
|
+
/**
|
|
179
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
180
|
+
*/
|
|
181
|
+
failureThreshold?: pulumi.Input<number>;
|
|
182
|
+
/**
|
|
183
|
+
* Host name to connect to, defaults to the pod IP.
|
|
184
|
+
*/
|
|
185
|
+
host?: pulumi.Input<string>;
|
|
186
|
+
/**
|
|
187
|
+
* Number of seconds to wait before the first probe is executed.
|
|
188
|
+
*/
|
|
189
|
+
initialDelaySeconds?: pulumi.Input<number>;
|
|
190
|
+
/**
|
|
191
|
+
* URL path to query for health check.
|
|
192
|
+
*/
|
|
193
|
+
path: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* How often (in seconds) to perform the probe.
|
|
196
|
+
*/
|
|
197
|
+
periodSeconds?: pulumi.Input<number>;
|
|
198
|
+
/**
|
|
199
|
+
* Port number to access on the container.
|
|
200
|
+
*/
|
|
201
|
+
port?: pulumi.Input<number>;
|
|
202
|
+
/**
|
|
203
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
204
|
+
*/
|
|
205
|
+
scheme?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Number of seconds after which the probe times out.
|
|
208
|
+
*/
|
|
209
|
+
timeoutSeconds?: pulumi.Input<number>;
|
|
210
|
+
}
|
|
211
|
+
export interface ArtifactSpecContainerGroupContainerResourceRequest {
|
|
212
|
+
/**
|
|
213
|
+
* Number of CPU cores required.
|
|
214
|
+
*/
|
|
215
|
+
cpu: pulumi.Input<number>;
|
|
216
|
+
/**
|
|
217
|
+
* Number of GPUs required.
|
|
218
|
+
*/
|
|
219
|
+
gpu?: pulumi.Input<number>;
|
|
220
|
+
/**
|
|
221
|
+
* GPU type required (e.g., NVIDIA-A100).
|
|
222
|
+
*/
|
|
223
|
+
gpuType?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* Memory required in bytes.
|
|
226
|
+
*/
|
|
227
|
+
memory: pulumi.Input<number>;
|
|
228
|
+
}
|
|
229
|
+
export interface ArtifactSpecContainerGroupContainerStartupProbe {
|
|
230
|
+
/**
|
|
231
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
232
|
+
*/
|
|
233
|
+
failureThreshold?: pulumi.Input<number>;
|
|
234
|
+
/**
|
|
235
|
+
* Host name to connect to, defaults to the pod IP.
|
|
236
|
+
*/
|
|
237
|
+
host?: pulumi.Input<string>;
|
|
238
|
+
/**
|
|
239
|
+
* Number of seconds to wait before the first probe is executed.
|
|
240
|
+
*/
|
|
241
|
+
initialDelaySeconds?: pulumi.Input<number>;
|
|
242
|
+
/**
|
|
243
|
+
* URL path to query for health check.
|
|
244
|
+
*/
|
|
245
|
+
path: pulumi.Input<string>;
|
|
246
|
+
/**
|
|
247
|
+
* How often (in seconds) to perform the probe.
|
|
248
|
+
*/
|
|
249
|
+
periodSeconds?: pulumi.Input<number>;
|
|
250
|
+
/**
|
|
251
|
+
* Port number to access on the container.
|
|
252
|
+
*/
|
|
253
|
+
port?: pulumi.Input<number>;
|
|
254
|
+
/**
|
|
255
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
256
|
+
*/
|
|
257
|
+
scheme?: pulumi.Input<string>;
|
|
258
|
+
/**
|
|
259
|
+
* Number of seconds after which the probe times out.
|
|
260
|
+
*/
|
|
261
|
+
timeoutSeconds?: pulumi.Input<number>;
|
|
262
|
+
}
|
|
75
263
|
export interface BatchPredictionJobDefinitionCsvSettings {
|
|
76
264
|
/**
|
|
77
265
|
* Fields are delimited by this character. Use the string tab to denote TSV (TAB separated values). Must be either a one-character string or the string tab.
|
|
@@ -1250,3 +1438,55 @@ export interface VectorDatabaseChunkingParameters {
|
|
|
1250
1438
|
*/
|
|
1251
1439
|
separators?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1252
1440
|
}
|
|
1441
|
+
export interface WorkloadRuntime {
|
|
1442
|
+
/**
|
|
1443
|
+
* Autoscaling configuration. When set, takes precedence over replica_count.
|
|
1444
|
+
*/
|
|
1445
|
+
autoscaling?: pulumi.Input<inputs.WorkloadRuntimeAutoscaling>;
|
|
1446
|
+
/**
|
|
1447
|
+
* Number of replicas to run. Cannot be used together with `autoscaling`. Omitting this field retains the current value. Set to `0` to explicitly clear it (e.g. when switching to autoscaling).
|
|
1448
|
+
*/
|
|
1449
|
+
replicaCount?: pulumi.Input<number>;
|
|
1450
|
+
/**
|
|
1451
|
+
* Resource bundles assigned to the Workload. When empty the server infers an appropriate bundle.
|
|
1452
|
+
*/
|
|
1453
|
+
resources?: pulumi.Input<pulumi.Input<inputs.WorkloadRuntimeResource>[]>;
|
|
1454
|
+
}
|
|
1455
|
+
export interface WorkloadRuntimeAutoscaling {
|
|
1456
|
+
/**
|
|
1457
|
+
* Whether autoscaling is enabled. Defaults to true.
|
|
1458
|
+
*/
|
|
1459
|
+
enabled?: pulumi.Input<boolean>;
|
|
1460
|
+
/**
|
|
1461
|
+
* Scaling policies that define when and how to scale.
|
|
1462
|
+
*/
|
|
1463
|
+
policies: pulumi.Input<pulumi.Input<inputs.WorkloadRuntimeAutoscalingPolicy>[]>;
|
|
1464
|
+
}
|
|
1465
|
+
export interface WorkloadRuntimeAutoscalingPolicy {
|
|
1466
|
+
/**
|
|
1467
|
+
* Maximum number of replicas.
|
|
1468
|
+
*/
|
|
1469
|
+
maxCount: pulumi.Input<number>;
|
|
1470
|
+
/**
|
|
1471
|
+
* Minimum number of replicas.
|
|
1472
|
+
*/
|
|
1473
|
+
minCount: pulumi.Input<number>;
|
|
1474
|
+
/**
|
|
1475
|
+
* Policy priority when multiple policies are defined.
|
|
1476
|
+
*/
|
|
1477
|
+
priority?: pulumi.Input<number>;
|
|
1478
|
+
/**
|
|
1479
|
+
* Metric used for scaling decisions: `cpuAverageUtilization`, `httpRequestsConcurrency`, `gpuCacheUtilization`, or `gpuRequestQueueDepth`.
|
|
1480
|
+
*/
|
|
1481
|
+
scalingMetric: pulumi.Input<string>;
|
|
1482
|
+
/**
|
|
1483
|
+
* Target value for the scaling metric.
|
|
1484
|
+
*/
|
|
1485
|
+
target: pulumi.Input<number>;
|
|
1486
|
+
}
|
|
1487
|
+
export interface WorkloadRuntimeResource {
|
|
1488
|
+
/**
|
|
1489
|
+
* ID of the resource bundle (e.g. `cpu.nano`).
|
|
1490
|
+
*/
|
|
1491
|
+
resourceBundleId: pulumi.Input<string>;
|
|
1492
|
+
}
|
package/types/output.d.ts
CHANGED
|
@@ -71,6 +71,194 @@ export interface ApplicationSourceRuntimeParameterValue {
|
|
|
71
71
|
*/
|
|
72
72
|
value: string;
|
|
73
73
|
}
|
|
74
|
+
export interface ArtifactSpec {
|
|
75
|
+
/**
|
|
76
|
+
* List of container groups.
|
|
77
|
+
*/
|
|
78
|
+
containerGroups: outputs.ArtifactSpecContainerGroup[];
|
|
79
|
+
}
|
|
80
|
+
export interface ArtifactSpecContainerGroup {
|
|
81
|
+
/**
|
|
82
|
+
* List of containers in this group.
|
|
83
|
+
*/
|
|
84
|
+
containers: outputs.ArtifactSpecContainerGroupContainer[];
|
|
85
|
+
}
|
|
86
|
+
export interface ArtifactSpecContainerGroupContainer {
|
|
87
|
+
/**
|
|
88
|
+
* Description of the container.
|
|
89
|
+
*/
|
|
90
|
+
description?: string;
|
|
91
|
+
/**
|
|
92
|
+
* Container entrypoint.
|
|
93
|
+
*/
|
|
94
|
+
entrypoints?: string[];
|
|
95
|
+
/**
|
|
96
|
+
* Environment variables for the container.
|
|
97
|
+
*/
|
|
98
|
+
environmentVars?: outputs.ArtifactSpecContainerGroupContainerEnvironmentVar[];
|
|
99
|
+
/**
|
|
100
|
+
* Docker image URI.
|
|
101
|
+
*/
|
|
102
|
+
imageUri: string;
|
|
103
|
+
/**
|
|
104
|
+
* Container liveness check configuration.
|
|
105
|
+
*/
|
|
106
|
+
livenessProbe?: outputs.ArtifactSpecContainerGroupContainerLivenessProbe;
|
|
107
|
+
/**
|
|
108
|
+
* Name of the container.
|
|
109
|
+
*/
|
|
110
|
+
name: string;
|
|
111
|
+
/**
|
|
112
|
+
* Container access port (1024-65535). Required for primary containers; omit for non-primary.
|
|
113
|
+
*/
|
|
114
|
+
port: number;
|
|
115
|
+
/**
|
|
116
|
+
* Whether this is the primary container.
|
|
117
|
+
*/
|
|
118
|
+
primary: boolean;
|
|
119
|
+
/**
|
|
120
|
+
* Container readiness check configuration.
|
|
121
|
+
*/
|
|
122
|
+
readinessProbe?: outputs.ArtifactSpecContainerGroupContainerReadinessProbe;
|
|
123
|
+
/**
|
|
124
|
+
* Resource requirements for the container.
|
|
125
|
+
*/
|
|
126
|
+
resourceRequest: outputs.ArtifactSpecContainerGroupContainerResourceRequest;
|
|
127
|
+
/**
|
|
128
|
+
* Container startup check configuration.
|
|
129
|
+
*/
|
|
130
|
+
startupProbe?: outputs.ArtifactSpecContainerGroupContainerStartupProbe;
|
|
131
|
+
}
|
|
132
|
+
export interface ArtifactSpecContainerGroupContainerEnvironmentVar {
|
|
133
|
+
/**
|
|
134
|
+
* Name of the environment variable.
|
|
135
|
+
*/
|
|
136
|
+
name: string;
|
|
137
|
+
/**
|
|
138
|
+
* Value of the environment variable.
|
|
139
|
+
*/
|
|
140
|
+
value: string;
|
|
141
|
+
}
|
|
142
|
+
export interface ArtifactSpecContainerGroupContainerLivenessProbe {
|
|
143
|
+
/**
|
|
144
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
145
|
+
*/
|
|
146
|
+
failureThreshold: number;
|
|
147
|
+
/**
|
|
148
|
+
* Host name to connect to, defaults to the pod IP.
|
|
149
|
+
*/
|
|
150
|
+
host: string;
|
|
151
|
+
/**
|
|
152
|
+
* Number of seconds to wait before the first probe is executed.
|
|
153
|
+
*/
|
|
154
|
+
initialDelaySeconds: number;
|
|
155
|
+
/**
|
|
156
|
+
* URL path to query for health check.
|
|
157
|
+
*/
|
|
158
|
+
path: string;
|
|
159
|
+
/**
|
|
160
|
+
* How often (in seconds) to perform the probe.
|
|
161
|
+
*/
|
|
162
|
+
periodSeconds: number;
|
|
163
|
+
/**
|
|
164
|
+
* Port number to access on the container.
|
|
165
|
+
*/
|
|
166
|
+
port: number;
|
|
167
|
+
/**
|
|
168
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
169
|
+
*/
|
|
170
|
+
scheme: string;
|
|
171
|
+
/**
|
|
172
|
+
* Number of seconds after which the probe times out.
|
|
173
|
+
*/
|
|
174
|
+
timeoutSeconds: number;
|
|
175
|
+
}
|
|
176
|
+
export interface ArtifactSpecContainerGroupContainerReadinessProbe {
|
|
177
|
+
/**
|
|
178
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
179
|
+
*/
|
|
180
|
+
failureThreshold: number;
|
|
181
|
+
/**
|
|
182
|
+
* Host name to connect to, defaults to the pod IP.
|
|
183
|
+
*/
|
|
184
|
+
host: string;
|
|
185
|
+
/**
|
|
186
|
+
* Number of seconds to wait before the first probe is executed.
|
|
187
|
+
*/
|
|
188
|
+
initialDelaySeconds: number;
|
|
189
|
+
/**
|
|
190
|
+
* URL path to query for health check.
|
|
191
|
+
*/
|
|
192
|
+
path: string;
|
|
193
|
+
/**
|
|
194
|
+
* How often (in seconds) to perform the probe.
|
|
195
|
+
*/
|
|
196
|
+
periodSeconds: number;
|
|
197
|
+
/**
|
|
198
|
+
* Port number to access on the container.
|
|
199
|
+
*/
|
|
200
|
+
port: number;
|
|
201
|
+
/**
|
|
202
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
203
|
+
*/
|
|
204
|
+
scheme: string;
|
|
205
|
+
/**
|
|
206
|
+
* Number of seconds after which the probe times out.
|
|
207
|
+
*/
|
|
208
|
+
timeoutSeconds: number;
|
|
209
|
+
}
|
|
210
|
+
export interface ArtifactSpecContainerGroupContainerResourceRequest {
|
|
211
|
+
/**
|
|
212
|
+
* Number of CPU cores required.
|
|
213
|
+
*/
|
|
214
|
+
cpu: number;
|
|
215
|
+
/**
|
|
216
|
+
* Number of GPUs required.
|
|
217
|
+
*/
|
|
218
|
+
gpu?: number;
|
|
219
|
+
/**
|
|
220
|
+
* GPU type required (e.g., NVIDIA-A100).
|
|
221
|
+
*/
|
|
222
|
+
gpuType?: string;
|
|
223
|
+
/**
|
|
224
|
+
* Memory required in bytes.
|
|
225
|
+
*/
|
|
226
|
+
memory: number;
|
|
227
|
+
}
|
|
228
|
+
export interface ArtifactSpecContainerGroupContainerStartupProbe {
|
|
229
|
+
/**
|
|
230
|
+
* Minimum consecutive failures for the probe to be considered failed.
|
|
231
|
+
*/
|
|
232
|
+
failureThreshold: number;
|
|
233
|
+
/**
|
|
234
|
+
* Host name to connect to, defaults to the pod IP.
|
|
235
|
+
*/
|
|
236
|
+
host: string;
|
|
237
|
+
/**
|
|
238
|
+
* Number of seconds to wait before the first probe is executed.
|
|
239
|
+
*/
|
|
240
|
+
initialDelaySeconds: number;
|
|
241
|
+
/**
|
|
242
|
+
* URL path to query for health check.
|
|
243
|
+
*/
|
|
244
|
+
path: string;
|
|
245
|
+
/**
|
|
246
|
+
* How often (in seconds) to perform the probe.
|
|
247
|
+
*/
|
|
248
|
+
periodSeconds: number;
|
|
249
|
+
/**
|
|
250
|
+
* Port number to access on the container.
|
|
251
|
+
*/
|
|
252
|
+
port: number;
|
|
253
|
+
/**
|
|
254
|
+
* Scheme to use for connecting to the host (HTTP or HTTPS).
|
|
255
|
+
*/
|
|
256
|
+
scheme: string;
|
|
257
|
+
/**
|
|
258
|
+
* Number of seconds after which the probe times out.
|
|
259
|
+
*/
|
|
260
|
+
timeoutSeconds: number;
|
|
261
|
+
}
|
|
74
262
|
export interface BatchPredictionJobDefinitionCsvSettings {
|
|
75
263
|
/**
|
|
76
264
|
* Fields are delimited by this character. Use the string tab to denote TSV (TAB separated values). Must be either a one-character string or the string tab.
|
|
@@ -1249,3 +1437,55 @@ export interface VectorDatabaseChunkingParameters {
|
|
|
1249
1437
|
*/
|
|
1250
1438
|
separators: string[];
|
|
1251
1439
|
}
|
|
1440
|
+
export interface WorkloadRuntime {
|
|
1441
|
+
/**
|
|
1442
|
+
* Autoscaling configuration. When set, takes precedence over replica_count.
|
|
1443
|
+
*/
|
|
1444
|
+
autoscaling?: outputs.WorkloadRuntimeAutoscaling;
|
|
1445
|
+
/**
|
|
1446
|
+
* Number of replicas to run. Cannot be used together with `autoscaling`. Omitting this field retains the current value. Set to `0` to explicitly clear it (e.g. when switching to autoscaling).
|
|
1447
|
+
*/
|
|
1448
|
+
replicaCount: number;
|
|
1449
|
+
/**
|
|
1450
|
+
* Resource bundles assigned to the Workload. When empty the server infers an appropriate bundle.
|
|
1451
|
+
*/
|
|
1452
|
+
resources?: outputs.WorkloadRuntimeResource[];
|
|
1453
|
+
}
|
|
1454
|
+
export interface WorkloadRuntimeAutoscaling {
|
|
1455
|
+
/**
|
|
1456
|
+
* Whether autoscaling is enabled. Defaults to true.
|
|
1457
|
+
*/
|
|
1458
|
+
enabled: boolean;
|
|
1459
|
+
/**
|
|
1460
|
+
* Scaling policies that define when and how to scale.
|
|
1461
|
+
*/
|
|
1462
|
+
policies: outputs.WorkloadRuntimeAutoscalingPolicy[];
|
|
1463
|
+
}
|
|
1464
|
+
export interface WorkloadRuntimeAutoscalingPolicy {
|
|
1465
|
+
/**
|
|
1466
|
+
* Maximum number of replicas.
|
|
1467
|
+
*/
|
|
1468
|
+
maxCount: number;
|
|
1469
|
+
/**
|
|
1470
|
+
* Minimum number of replicas.
|
|
1471
|
+
*/
|
|
1472
|
+
minCount: number;
|
|
1473
|
+
/**
|
|
1474
|
+
* Policy priority when multiple policies are defined.
|
|
1475
|
+
*/
|
|
1476
|
+
priority: number;
|
|
1477
|
+
/**
|
|
1478
|
+
* Metric used for scaling decisions: `cpuAverageUtilization`, `httpRequestsConcurrency`, `gpuCacheUtilization`, or `gpuRequestQueueDepth`.
|
|
1479
|
+
*/
|
|
1480
|
+
scalingMetric: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* Target value for the scaling metric.
|
|
1483
|
+
*/
|
|
1484
|
+
target: number;
|
|
1485
|
+
}
|
|
1486
|
+
export interface WorkloadRuntimeResource {
|
|
1487
|
+
/**
|
|
1488
|
+
* ID of the resource bundle (e.g. `cpu.nano`).
|
|
1489
|
+
*/
|
|
1490
|
+
resourceBundleId: string;
|
|
1491
|
+
}
|
package/workload.d.ts
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* A Workload runs a containerized artifact in the cluster and exposes an inference endpoint.
|
|
6
|
+
*
|
|
7
|
+
* Several attributes (including `runtime` and `artifactId`) trigger replacement when changed. To avoid downtime during replacements, it is recommended to set `createBeforeDestroy` in the resource lifecycle:
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class Workload extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing Workload resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WorkloadState, opts?: pulumi.CustomResourceOptions): Workload;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of Workload. 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: any): obj is Workload;
|
|
29
|
+
/**
|
|
30
|
+
* ID of the Artifact version to deploy. When using `datarobot.Artifact`, reference `datarobot_artifact.<name>.artifact_id` (not `.id`). Changing this value forces a new Workload to be created.
|
|
31
|
+
*/
|
|
32
|
+
readonly artifactId: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* A human-readable description of the Workload.
|
|
35
|
+
*/
|
|
36
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
37
|
+
/**
|
|
38
|
+
* The inference endpoint URL for the Workload.
|
|
39
|
+
*/
|
|
40
|
+
readonly endpoint: pulumi.Output<string>;
|
|
41
|
+
/**
|
|
42
|
+
* Priority level for the Workload: `critical`, `high`, `moderate`, or `low`. Defaults to `low`.
|
|
43
|
+
*/
|
|
44
|
+
readonly importance: pulumi.Output<string>;
|
|
45
|
+
/**
|
|
46
|
+
* The name of the Workload.
|
|
47
|
+
*/
|
|
48
|
+
readonly name: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Runtime configuration for the Workload.
|
|
51
|
+
*/
|
|
52
|
+
readonly runtime: pulumi.Output<outputs.WorkloadRuntime>;
|
|
53
|
+
/**
|
|
54
|
+
* Current status of the Workload: `unknown`, `submitted`, `initializing`, `running`, `stopping`, `stopped`, or `errored`.
|
|
55
|
+
*/
|
|
56
|
+
readonly status: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Create a Workload resource with the given unique name, arguments, and options.
|
|
59
|
+
*
|
|
60
|
+
* @param name The _unique_ name of the resource.
|
|
61
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
62
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
63
|
+
*/
|
|
64
|
+
constructor(name: string, args: WorkloadArgs, opts?: pulumi.CustomResourceOptions);
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Input properties used for looking up and filtering Workload resources.
|
|
68
|
+
*/
|
|
69
|
+
export interface WorkloadState {
|
|
70
|
+
/**
|
|
71
|
+
* ID of the Artifact version to deploy. When using `datarobot.Artifact`, reference `datarobot_artifact.<name>.artifact_id` (not `.id`). Changing this value forces a new Workload to be created.
|
|
72
|
+
*/
|
|
73
|
+
artifactId?: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* A human-readable description of the Workload.
|
|
76
|
+
*/
|
|
77
|
+
description?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* The inference endpoint URL for the Workload.
|
|
80
|
+
*/
|
|
81
|
+
endpoint?: pulumi.Input<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Priority level for the Workload: `critical`, `high`, `moderate`, or `low`. Defaults to `low`.
|
|
84
|
+
*/
|
|
85
|
+
importance?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The name of the Workload.
|
|
88
|
+
*/
|
|
89
|
+
name?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* Runtime configuration for the Workload.
|
|
92
|
+
*/
|
|
93
|
+
runtime?: pulumi.Input<inputs.WorkloadRuntime>;
|
|
94
|
+
/**
|
|
95
|
+
* Current status of the Workload: `unknown`, `submitted`, `initializing`, `running`, `stopping`, `stopped`, or `errored`.
|
|
96
|
+
*/
|
|
97
|
+
status?: pulumi.Input<string>;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* The set of arguments for constructing a Workload resource.
|
|
101
|
+
*/
|
|
102
|
+
export interface WorkloadArgs {
|
|
103
|
+
/**
|
|
104
|
+
* ID of the Artifact version to deploy. When using `datarobot.Artifact`, reference `datarobot_artifact.<name>.artifact_id` (not `.id`). Changing this value forces a new Workload to be created.
|
|
105
|
+
*/
|
|
106
|
+
artifactId: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* A human-readable description of the Workload.
|
|
109
|
+
*/
|
|
110
|
+
description?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* Priority level for the Workload: `critical`, `high`, `moderate`, or `low`. Defaults to `low`.
|
|
113
|
+
*/
|
|
114
|
+
importance?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The name of the Workload.
|
|
117
|
+
*/
|
|
118
|
+
name?: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* Runtime configuration for the Workload.
|
|
121
|
+
*/
|
|
122
|
+
runtime: pulumi.Input<inputs.WorkloadRuntime>;
|
|
123
|
+
}
|
package/workload.js
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
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.Workload = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A Workload runs a containerized artifact in the cluster and exposes an inference endpoint.
|
|
10
|
+
*
|
|
11
|
+
* Several attributes (including `runtime` and `artifactId`) trigger replacement when changed. To avoid downtime during replacements, it is recommended to set `createBeforeDestroy` in the resource lifecycle:
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class Workload extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing Workload resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new Workload(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of Workload. 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) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === Workload.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["artifactId"] = state ? state.artifactId : undefined;
|
|
46
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
47
|
+
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
48
|
+
resourceInputs["importance"] = state ? state.importance : undefined;
|
|
49
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
50
|
+
resourceInputs["runtime"] = state ? state.runtime : undefined;
|
|
51
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
const args = argsOrState;
|
|
55
|
+
if ((!args || args.artifactId === undefined) && !opts.urn) {
|
|
56
|
+
throw new Error("Missing required property 'artifactId'");
|
|
57
|
+
}
|
|
58
|
+
if ((!args || args.runtime === undefined) && !opts.urn) {
|
|
59
|
+
throw new Error("Missing required property 'runtime'");
|
|
60
|
+
}
|
|
61
|
+
resourceInputs["artifactId"] = args ? args.artifactId : undefined;
|
|
62
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
63
|
+
resourceInputs["importance"] = args ? args.importance : undefined;
|
|
64
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
65
|
+
resourceInputs["runtime"] = args ? args.runtime : undefined;
|
|
66
|
+
resourceInputs["endpoint"] = undefined /*out*/;
|
|
67
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
68
|
+
}
|
|
69
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
70
|
+
super(Workload.__pulumiType, name, resourceInputs, opts);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.Workload = Workload;
|
|
74
|
+
/** @internal */
|
|
75
|
+
Workload.__pulumiType = 'datarobot:index/workload:Workload';
|
|
76
|
+
//# sourceMappingURL=workload.js.map
|
package/workload.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workload.js","sourceRoot":"","sources":["../workload.ts"],"names":[],"mappings":"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"}
|