@gpuai/sdk 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @gpuai/sdk@0.3.
|
|
1
|
+
# @gpuai/sdk@0.3.10
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the api.gpu.ai API.
|
|
4
4
|
|
|
@@ -204,7 +204,7 @@ and is automatically generated by the
|
|
|
204
204
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
205
205
|
|
|
206
206
|
- API version: `1.0.0`
|
|
207
|
-
- Package version: `0.3.
|
|
207
|
+
- Package version: `0.3.10`
|
|
208
208
|
- Generator version: `7.24.0`
|
|
209
209
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
210
210
|
|
|
@@ -115,13 +115,13 @@ export interface CreateInstanceRequest {
|
|
|
115
115
|
*/
|
|
116
116
|
registryCredentialId?: string;
|
|
117
117
|
/**
|
|
118
|
-
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own. At most 32 arguments / 4KB. Requires `image`.
|
|
118
|
+
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own; an explicit empty array clears it while keeping the image CMD (docker `--entrypoint ""` semantics). Empty strings inside a non-empty argv are rejected (422). At most 32 arguments / 4KB. Requires `image`.
|
|
119
119
|
* @type {Array<string>}
|
|
120
120
|
* @memberof CreateInstanceRequest
|
|
121
121
|
*/
|
|
122
122
|
entrypoint?: Array<string>;
|
|
123
123
|
/**
|
|
124
|
-
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden). Requires `image`.
|
|
124
|
+
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden with a non-empty argv; an empty-array entrypoint clear keeps the image CMD). An explicit empty array clears the CMD. Empty strings inside a non-empty argv are rejected (422). Requires `image`.
|
|
125
125
|
* @type {Array<string>}
|
|
126
126
|
* @memberof CreateInstanceRequest
|
|
127
127
|
*/
|
|
@@ -115,13 +115,13 @@ export interface CreateInstanceRequest {
|
|
|
115
115
|
*/
|
|
116
116
|
registryCredentialId?: string;
|
|
117
117
|
/**
|
|
118
|
-
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own. At most 32 arguments / 4KB. Requires `image`.
|
|
118
|
+
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own; an explicit empty array clears it while keeping the image CMD (docker `--entrypoint ""` semantics). Empty strings inside a non-empty argv are rejected (422). At most 32 arguments / 4KB. Requires `image`.
|
|
119
119
|
* @type {Array<string>}
|
|
120
120
|
* @memberof CreateInstanceRequest
|
|
121
121
|
*/
|
|
122
122
|
entrypoint?: Array<string>;
|
|
123
123
|
/**
|
|
124
|
-
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden). Requires `image`.
|
|
124
|
+
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden with a non-empty argv; an empty-array entrypoint clear keeps the image CMD). An explicit empty array clears the CMD. Empty strings inside a non-empty argv are rejected (422). Requires `image`.
|
|
125
125
|
* @type {Array<string>}
|
|
126
126
|
* @memberof CreateInstanceRequest
|
|
127
127
|
*/
|
package/package.json
CHANGED
|
@@ -124,13 +124,13 @@ export interface CreateInstanceRequest {
|
|
|
124
124
|
*/
|
|
125
125
|
registryCredentialId?: string;
|
|
126
126
|
/**
|
|
127
|
-
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own. At most 32 arguments / 4KB. Requires `image`.
|
|
127
|
+
* Override the image's ENTRYPOINT (docker semantics — also drops the image CMD unless `cmd` is given). Omit to use the image's own; an explicit empty array clears it while keeping the image CMD (docker `--entrypoint ""` semantics). Empty strings inside a non-empty argv are rejected (422). At most 32 arguments / 4KB. Requires `image`.
|
|
128
128
|
* @type {Array<string>}
|
|
129
129
|
* @memberof CreateInstanceRequest
|
|
130
130
|
*/
|
|
131
131
|
entrypoint?: Array<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden). Requires `image`.
|
|
133
|
+
* Override the image's CMD. Omit to use the image's own (or none, when `entrypoint` is overridden with a non-empty argv; an empty-array entrypoint clear keeps the image CMD). An explicit empty array clears the CMD. Empty strings inside a non-empty argv are rejected (422). Requires `image`.
|
|
134
134
|
* @type {Array<string>}
|
|
135
135
|
* @memberof CreateInstanceRequest
|
|
136
136
|
*/
|