@daytonaio/api-client 0.191.0 → 0.192.0
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/package.json +1 -1
- package/src/api/admin-api.d.ts +55 -12
- package/src/api/admin-api.js +105 -15
- package/src/api/admin-api.js.map +1 -1
- package/src/api/audit-api.d.ts +55 -12
- package/src/api/audit-api.js +105 -15
- package/src/api/audit-api.js.map +1 -1
- package/src/api/sandbox-api.d.ts +37 -0
- package/src/api/sandbox-api.js +74 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/secret-api.d.ts +217 -0
- package/src/api/secret-api.js +426 -0
- package/src/api/secret-api.js.map +1 -0
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/api-key-list.d.ts +2 -0
- package/src/models/api-key-list.js +2 -0
- package/src/models/api-key-list.js.map +1 -1
- package/src/models/api-key-response.d.ts +2 -0
- package/src/models/api-key-response.js +2 -0
- package/src/models/api-key-response.js.map +1 -1
- package/src/models/create-api-key.d.ts +2 -0
- package/src/models/create-api-key.js +2 -0
- package/src/models/create-api-key.js.map +1 -1
- package/src/models/create-organization-role.d.ts +2 -0
- package/src/models/create-organization-role.js +2 -0
- package/src/models/create-organization-role.js.map +1 -1
- package/src/models/create-sandbox.d.ts +6 -0
- package/src/models/create-secret.d.ts +29 -0
- package/src/models/create-secret.js +16 -0
- package/src/models/create-secret.js.map +1 -0
- package/src/models/date-filter.d.ts +29 -0
- package/src/models/date-filter.js +16 -0
- package/src/models/date-filter.js.map +1 -0
- package/src/models/index.d.ts +7 -0
- package/src/models/index.js +7 -0
- package/src/models/index.js.map +1 -1
- package/src/models/int-filter.d.ts +45 -0
- package/src/models/int-filter.js +16 -0
- package/src/models/int-filter.js.map +1 -0
- package/src/models/organization-role.d.ts +2 -0
- package/src/models/organization-role.js +2 -0
- package/src/models/organization-role.js.map +1 -1
- package/src/models/resolve-sandbox-secrets200-response-inner.d.ts +17 -0
- package/src/models/resolve-sandbox-secrets200-response-inner.js +16 -0
- package/src/models/resolve-sandbox-secrets200-response-inner.js.map +1 -0
- package/src/models/secret.d.ts +41 -0
- package/src/models/secret.js +16 -0
- package/src/models/secret.js.map +1 -0
- package/src/models/string-filter.d.ts +29 -0
- package/src/models/string-filter.js +16 -0
- package/src/models/string-filter.js.map +1 -0
- package/src/models/update-organization-role.d.ts +2 -0
- package/src/models/update-organization-role.js +2 -0
- package/src/models/update-organization-role.js.map +1 -1
- package/src/models/update-secret.d.ts +25 -0
- package/src/models/update-secret.js +16 -0
- package/src/models/update-secret.js.map +1 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { CreateSecret } from '../models';
|
|
16
|
+
import type { Secret } from '../models';
|
|
17
|
+
import type { UpdateSecret } from '../models';
|
|
18
|
+
/**
|
|
19
|
+
* SecretApi - axios parameter creator
|
|
20
|
+
*/
|
|
21
|
+
export declare const SecretApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary Create secret
|
|
25
|
+
* @param {CreateSecret} createSecret
|
|
26
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
27
|
+
* @param {*} [options] Override http request option.
|
|
28
|
+
* @throws {RequiredError}
|
|
29
|
+
*/
|
|
30
|
+
createSecret: (createSecret: CreateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary Delete secret
|
|
34
|
+
* @param {string} secretId ID of the secret
|
|
35
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
36
|
+
* @param {*} [options] Override http request option.
|
|
37
|
+
* @throws {RequiredError}
|
|
38
|
+
*/
|
|
39
|
+
deleteSecret: (secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @summary Get secret
|
|
43
|
+
* @param {string} secretId ID of the secret
|
|
44
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
getSecret: (secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @summary List secrets
|
|
52
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
53
|
+
* @param {*} [options] Override http request option.
|
|
54
|
+
* @throws {RequiredError}
|
|
55
|
+
*/
|
|
56
|
+
listSecrets: (xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @summary Update secret
|
|
60
|
+
* @param {string} secretId ID of the secret
|
|
61
|
+
* @param {UpdateSecret} updateSecret
|
|
62
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
63
|
+
* @param {*} [options] Override http request option.
|
|
64
|
+
* @throws {RequiredError}
|
|
65
|
+
*/
|
|
66
|
+
updateSecret: (secretId: string, updateSecret: UpdateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* SecretApi - functional programming interface
|
|
70
|
+
*/
|
|
71
|
+
export declare const SecretApiFp: (configuration?: Configuration) => {
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @summary Create secret
|
|
75
|
+
* @param {CreateSecret} createSecret
|
|
76
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
77
|
+
* @param {*} [options] Override http request option.
|
|
78
|
+
* @throws {RequiredError}
|
|
79
|
+
*/
|
|
80
|
+
createSecret(createSecret: CreateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
81
|
+
/**
|
|
82
|
+
*
|
|
83
|
+
* @summary Delete secret
|
|
84
|
+
* @param {string} secretId ID of the secret
|
|
85
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
86
|
+
* @param {*} [options] Override http request option.
|
|
87
|
+
* @throws {RequiredError}
|
|
88
|
+
*/
|
|
89
|
+
deleteSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @summary Get secret
|
|
93
|
+
* @param {string} secretId ID of the secret
|
|
94
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
95
|
+
* @param {*} [options] Override http request option.
|
|
96
|
+
* @throws {RequiredError}
|
|
97
|
+
*/
|
|
98
|
+
getSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @summary List secrets
|
|
102
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
103
|
+
* @param {*} [options] Override http request option.
|
|
104
|
+
* @throws {RequiredError}
|
|
105
|
+
*/
|
|
106
|
+
listSecrets(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Secret>>>;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @summary Update secret
|
|
110
|
+
* @param {string} secretId ID of the secret
|
|
111
|
+
* @param {UpdateSecret} updateSecret
|
|
112
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
113
|
+
* @param {*} [options] Override http request option.
|
|
114
|
+
* @throws {RequiredError}
|
|
115
|
+
*/
|
|
116
|
+
updateSecret(secretId: string, updateSecret: UpdateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* SecretApi - factory interface
|
|
120
|
+
*/
|
|
121
|
+
export declare const SecretApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @summary Create secret
|
|
125
|
+
* @param {CreateSecret} createSecret
|
|
126
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
127
|
+
* @param {*} [options] Override http request option.
|
|
128
|
+
* @throws {RequiredError}
|
|
129
|
+
*/
|
|
130
|
+
createSecret(createSecret: CreateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Secret>;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @summary Delete secret
|
|
134
|
+
* @param {string} secretId ID of the secret
|
|
135
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
136
|
+
* @param {*} [options] Override http request option.
|
|
137
|
+
* @throws {RequiredError}
|
|
138
|
+
*/
|
|
139
|
+
deleteSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @summary Get secret
|
|
143
|
+
* @param {string} secretId ID of the secret
|
|
144
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
*/
|
|
148
|
+
getSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Secret>;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @summary List secrets
|
|
152
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
listSecrets(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Secret>>;
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @summary Update secret
|
|
160
|
+
* @param {string} secretId ID of the secret
|
|
161
|
+
* @param {UpdateSecret} updateSecret
|
|
162
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
163
|
+
* @param {*} [options] Override http request option.
|
|
164
|
+
* @throws {RequiredError}
|
|
165
|
+
*/
|
|
166
|
+
updateSecret(secretId: string, updateSecret: UpdateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Secret>;
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* SecretApi - object-oriented interface
|
|
170
|
+
*/
|
|
171
|
+
export declare class SecretApi extends BaseAPI {
|
|
172
|
+
/**
|
|
173
|
+
*
|
|
174
|
+
* @summary Create secret
|
|
175
|
+
* @param {CreateSecret} createSecret
|
|
176
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
177
|
+
* @param {*} [options] Override http request option.
|
|
178
|
+
* @throws {RequiredError}
|
|
179
|
+
*/
|
|
180
|
+
createSecret(createSecret: CreateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Secret, any, {}>>;
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @summary Delete secret
|
|
184
|
+
* @param {string} secretId ID of the secret
|
|
185
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
186
|
+
* @param {*} [options] Override http request option.
|
|
187
|
+
* @throws {RequiredError}
|
|
188
|
+
*/
|
|
189
|
+
deleteSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @summary Get secret
|
|
193
|
+
* @param {string} secretId ID of the secret
|
|
194
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @throws {RequiredError}
|
|
197
|
+
*/
|
|
198
|
+
getSecret(secretId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Secret, any, {}>>;
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @summary List secrets
|
|
202
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
203
|
+
* @param {*} [options] Override http request option.
|
|
204
|
+
* @throws {RequiredError}
|
|
205
|
+
*/
|
|
206
|
+
listSecrets(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Secret[], any, {}>>;
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @summary Update secret
|
|
210
|
+
* @param {string} secretId ID of the secret
|
|
211
|
+
* @param {UpdateSecret} updateSecret
|
|
212
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
213
|
+
* @param {*} [options] Override http request option.
|
|
214
|
+
* @throws {RequiredError}
|
|
215
|
+
*/
|
|
216
|
+
updateSecret(secretId: string, updateSecret: UpdateSecret, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Secret, any, {}>>;
|
|
217
|
+
}
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona
|
|
6
|
+
* Daytona AI platform API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: support@daytona.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SecretApi = exports.SecretApiFactory = exports.SecretApiFp = exports.SecretApiAxiosParamCreator = void 0;
|
|
17
|
+
const axios_1 = require("axios");
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
const common_1 = require("../common");
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
const base_1 = require("../base");
|
|
23
|
+
/**
|
|
24
|
+
* SecretApi - axios parameter creator
|
|
25
|
+
*/
|
|
26
|
+
const SecretApiAxiosParamCreator = function (configuration) {
|
|
27
|
+
return {
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @summary Create secret
|
|
31
|
+
* @param {CreateSecret} createSecret
|
|
32
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
createSecret: async (createSecret, xDaytonaOrganizationID, options = {}) => {
|
|
37
|
+
// verify required parameter 'createSecret' is not null or undefined
|
|
38
|
+
(0, common_1.assertParamExists)('createSecret', 'createSecret', createSecret);
|
|
39
|
+
const localVarPath = `/secret`;
|
|
40
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
42
|
+
let baseOptions;
|
|
43
|
+
if (configuration) {
|
|
44
|
+
baseOptions = configuration.baseOptions;
|
|
45
|
+
}
|
|
46
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
47
|
+
const localVarHeaderParameter = {};
|
|
48
|
+
const localVarQueryParameter = {};
|
|
49
|
+
// authentication bearer required
|
|
50
|
+
// http bearer authentication required
|
|
51
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
52
|
+
// authentication oauth2 required
|
|
53
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
54
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
55
|
+
if (xDaytonaOrganizationID != null) {
|
|
56
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
57
|
+
}
|
|
58
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
59
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
60
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
61
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createSecret, localVarRequestOptions, configuration);
|
|
62
|
+
return {
|
|
63
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
64
|
+
options: localVarRequestOptions,
|
|
65
|
+
};
|
|
66
|
+
},
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @summary Delete secret
|
|
70
|
+
* @param {string} secretId ID of the secret
|
|
71
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
72
|
+
* @param {*} [options] Override http request option.
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
*/
|
|
75
|
+
deleteSecret: async (secretId, xDaytonaOrganizationID, options = {}) => {
|
|
76
|
+
// verify required parameter 'secretId' is not null or undefined
|
|
77
|
+
(0, common_1.assertParamExists)('deleteSecret', 'secretId', secretId);
|
|
78
|
+
const localVarPath = `/secret/{secretId}`
|
|
79
|
+
.replace(`{${"secretId"}}`, encodeURIComponent(String(secretId)));
|
|
80
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
81
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
82
|
+
let baseOptions;
|
|
83
|
+
if (configuration) {
|
|
84
|
+
baseOptions = configuration.baseOptions;
|
|
85
|
+
}
|
|
86
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
87
|
+
const localVarHeaderParameter = {};
|
|
88
|
+
const localVarQueryParameter = {};
|
|
89
|
+
// authentication bearer required
|
|
90
|
+
// http bearer authentication required
|
|
91
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
92
|
+
// authentication oauth2 required
|
|
93
|
+
if (xDaytonaOrganizationID != null) {
|
|
94
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
95
|
+
}
|
|
96
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
97
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
99
|
+
return {
|
|
100
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
101
|
+
options: localVarRequestOptions,
|
|
102
|
+
};
|
|
103
|
+
},
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary Get secret
|
|
107
|
+
* @param {string} secretId ID of the secret
|
|
108
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
getSecret: async (secretId, xDaytonaOrganizationID, options = {}) => {
|
|
113
|
+
// verify required parameter 'secretId' is not null or undefined
|
|
114
|
+
(0, common_1.assertParamExists)('getSecret', 'secretId', secretId);
|
|
115
|
+
const localVarPath = `/secret/{secretId}`
|
|
116
|
+
.replace(`{${"secretId"}}`, encodeURIComponent(String(secretId)));
|
|
117
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
118
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
+
let baseOptions;
|
|
120
|
+
if (configuration) {
|
|
121
|
+
baseOptions = configuration.baseOptions;
|
|
122
|
+
}
|
|
123
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
124
|
+
const localVarHeaderParameter = {};
|
|
125
|
+
const localVarQueryParameter = {};
|
|
126
|
+
// authentication bearer required
|
|
127
|
+
// http bearer authentication required
|
|
128
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
129
|
+
// authentication oauth2 required
|
|
130
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
131
|
+
if (xDaytonaOrganizationID != null) {
|
|
132
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
133
|
+
}
|
|
134
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
135
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
136
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
137
|
+
return {
|
|
138
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
139
|
+
options: localVarRequestOptions,
|
|
140
|
+
};
|
|
141
|
+
},
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @summary List secrets
|
|
145
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
146
|
+
* @param {*} [options] Override http request option.
|
|
147
|
+
* @throws {RequiredError}
|
|
148
|
+
*/
|
|
149
|
+
listSecrets: async (xDaytonaOrganizationID, options = {}) => {
|
|
150
|
+
const localVarPath = `/secret`;
|
|
151
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
152
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
153
|
+
let baseOptions;
|
|
154
|
+
if (configuration) {
|
|
155
|
+
baseOptions = configuration.baseOptions;
|
|
156
|
+
}
|
|
157
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
158
|
+
const localVarHeaderParameter = {};
|
|
159
|
+
const localVarQueryParameter = {};
|
|
160
|
+
// authentication bearer required
|
|
161
|
+
// http bearer authentication required
|
|
162
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
163
|
+
// authentication oauth2 required
|
|
164
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
165
|
+
if (xDaytonaOrganizationID != null) {
|
|
166
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
167
|
+
}
|
|
168
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
169
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
170
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
171
|
+
return {
|
|
172
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
173
|
+
options: localVarRequestOptions,
|
|
174
|
+
};
|
|
175
|
+
},
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @summary Update secret
|
|
179
|
+
* @param {string} secretId ID of the secret
|
|
180
|
+
* @param {UpdateSecret} updateSecret
|
|
181
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
182
|
+
* @param {*} [options] Override http request option.
|
|
183
|
+
* @throws {RequiredError}
|
|
184
|
+
*/
|
|
185
|
+
updateSecret: async (secretId, updateSecret, xDaytonaOrganizationID, options = {}) => {
|
|
186
|
+
// verify required parameter 'secretId' is not null or undefined
|
|
187
|
+
(0, common_1.assertParamExists)('updateSecret', 'secretId', secretId);
|
|
188
|
+
// verify required parameter 'updateSecret' is not null or undefined
|
|
189
|
+
(0, common_1.assertParamExists)('updateSecret', 'updateSecret', updateSecret);
|
|
190
|
+
const localVarPath = `/secret/{secretId}`
|
|
191
|
+
.replace(`{${"secretId"}}`, encodeURIComponent(String(secretId)));
|
|
192
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
193
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
194
|
+
let baseOptions;
|
|
195
|
+
if (configuration) {
|
|
196
|
+
baseOptions = configuration.baseOptions;
|
|
197
|
+
}
|
|
198
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
199
|
+
const localVarHeaderParameter = {};
|
|
200
|
+
const localVarQueryParameter = {};
|
|
201
|
+
// authentication bearer required
|
|
202
|
+
// http bearer authentication required
|
|
203
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
204
|
+
// authentication oauth2 required
|
|
205
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
206
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
207
|
+
if (xDaytonaOrganizationID != null) {
|
|
208
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
209
|
+
}
|
|
210
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
211
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
212
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
213
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateSecret, localVarRequestOptions, configuration);
|
|
214
|
+
return {
|
|
215
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
216
|
+
options: localVarRequestOptions,
|
|
217
|
+
};
|
|
218
|
+
},
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
exports.SecretApiAxiosParamCreator = SecretApiAxiosParamCreator;
|
|
222
|
+
/**
|
|
223
|
+
* SecretApi - functional programming interface
|
|
224
|
+
*/
|
|
225
|
+
const SecretApiFp = function (configuration) {
|
|
226
|
+
const localVarAxiosParamCreator = (0, exports.SecretApiAxiosParamCreator)(configuration);
|
|
227
|
+
return {
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @summary Create secret
|
|
231
|
+
* @param {CreateSecret} createSecret
|
|
232
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
async createSecret(createSecret, xDaytonaOrganizationID, options) {
|
|
237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSecret(createSecret, xDaytonaOrganizationID, options);
|
|
238
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
239
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SecretApi.createSecret']?.[localVarOperationServerIndex]?.url;
|
|
240
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
241
|
+
},
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @summary Delete secret
|
|
245
|
+
* @param {string} secretId ID of the secret
|
|
246
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @throws {RequiredError}
|
|
249
|
+
*/
|
|
250
|
+
async deleteSecret(secretId, xDaytonaOrganizationID, options) {
|
|
251
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSecret(secretId, xDaytonaOrganizationID, options);
|
|
252
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
253
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SecretApi.deleteSecret']?.[localVarOperationServerIndex]?.url;
|
|
254
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
255
|
+
},
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @summary Get secret
|
|
259
|
+
* @param {string} secretId ID of the secret
|
|
260
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
261
|
+
* @param {*} [options] Override http request option.
|
|
262
|
+
* @throws {RequiredError}
|
|
263
|
+
*/
|
|
264
|
+
async getSecret(secretId, xDaytonaOrganizationID, options) {
|
|
265
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSecret(secretId, xDaytonaOrganizationID, options);
|
|
266
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
267
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SecretApi.getSecret']?.[localVarOperationServerIndex]?.url;
|
|
268
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
269
|
+
},
|
|
270
|
+
/**
|
|
271
|
+
*
|
|
272
|
+
* @summary List secrets
|
|
273
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
274
|
+
* @param {*} [options] Override http request option.
|
|
275
|
+
* @throws {RequiredError}
|
|
276
|
+
*/
|
|
277
|
+
async listSecrets(xDaytonaOrganizationID, options) {
|
|
278
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSecrets(xDaytonaOrganizationID, options);
|
|
279
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
280
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SecretApi.listSecrets']?.[localVarOperationServerIndex]?.url;
|
|
281
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
282
|
+
},
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* @summary Update secret
|
|
286
|
+
* @param {string} secretId ID of the secret
|
|
287
|
+
* @param {UpdateSecret} updateSecret
|
|
288
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
289
|
+
* @param {*} [options] Override http request option.
|
|
290
|
+
* @throws {RequiredError}
|
|
291
|
+
*/
|
|
292
|
+
async updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options) {
|
|
293
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options);
|
|
294
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
295
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SecretApi.updateSecret']?.[localVarOperationServerIndex]?.url;
|
|
296
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
297
|
+
},
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
exports.SecretApiFp = SecretApiFp;
|
|
301
|
+
/**
|
|
302
|
+
* SecretApi - factory interface
|
|
303
|
+
*/
|
|
304
|
+
const SecretApiFactory = function (configuration, basePath, axios) {
|
|
305
|
+
const localVarFp = (0, exports.SecretApiFp)(configuration);
|
|
306
|
+
return {
|
|
307
|
+
/**
|
|
308
|
+
*
|
|
309
|
+
* @summary Create secret
|
|
310
|
+
* @param {CreateSecret} createSecret
|
|
311
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @throws {RequiredError}
|
|
314
|
+
*/
|
|
315
|
+
createSecret(createSecret, xDaytonaOrganizationID, options) {
|
|
316
|
+
return localVarFp.createSecret(createSecret, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
317
|
+
},
|
|
318
|
+
/**
|
|
319
|
+
*
|
|
320
|
+
* @summary Delete secret
|
|
321
|
+
* @param {string} secretId ID of the secret
|
|
322
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
323
|
+
* @param {*} [options] Override http request option.
|
|
324
|
+
* @throws {RequiredError}
|
|
325
|
+
*/
|
|
326
|
+
deleteSecret(secretId, xDaytonaOrganizationID, options) {
|
|
327
|
+
return localVarFp.deleteSecret(secretId, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
328
|
+
},
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @summary Get secret
|
|
332
|
+
* @param {string} secretId ID of the secret
|
|
333
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
334
|
+
* @param {*} [options] Override http request option.
|
|
335
|
+
* @throws {RequiredError}
|
|
336
|
+
*/
|
|
337
|
+
getSecret(secretId, xDaytonaOrganizationID, options) {
|
|
338
|
+
return localVarFp.getSecret(secretId, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
339
|
+
},
|
|
340
|
+
/**
|
|
341
|
+
*
|
|
342
|
+
* @summary List secrets
|
|
343
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
344
|
+
* @param {*} [options] Override http request option.
|
|
345
|
+
* @throws {RequiredError}
|
|
346
|
+
*/
|
|
347
|
+
listSecrets(xDaytonaOrganizationID, options) {
|
|
348
|
+
return localVarFp.listSecrets(xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
349
|
+
},
|
|
350
|
+
/**
|
|
351
|
+
*
|
|
352
|
+
* @summary Update secret
|
|
353
|
+
* @param {string} secretId ID of the secret
|
|
354
|
+
* @param {UpdateSecret} updateSecret
|
|
355
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
356
|
+
* @param {*} [options] Override http request option.
|
|
357
|
+
* @throws {RequiredError}
|
|
358
|
+
*/
|
|
359
|
+
updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options) {
|
|
360
|
+
return localVarFp.updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
361
|
+
},
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
exports.SecretApiFactory = SecretApiFactory;
|
|
365
|
+
/**
|
|
366
|
+
* SecretApi - object-oriented interface
|
|
367
|
+
*/
|
|
368
|
+
class SecretApi extends base_1.BaseAPI {
|
|
369
|
+
/**
|
|
370
|
+
*
|
|
371
|
+
* @summary Create secret
|
|
372
|
+
* @param {CreateSecret} createSecret
|
|
373
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
374
|
+
* @param {*} [options] Override http request option.
|
|
375
|
+
* @throws {RequiredError}
|
|
376
|
+
*/
|
|
377
|
+
createSecret(createSecret, xDaytonaOrganizationID, options) {
|
|
378
|
+
return (0, exports.SecretApiFp)(this.configuration).createSecret(createSecret, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @summary Delete secret
|
|
383
|
+
* @param {string} secretId ID of the secret
|
|
384
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
385
|
+
* @param {*} [options] Override http request option.
|
|
386
|
+
* @throws {RequiredError}
|
|
387
|
+
*/
|
|
388
|
+
deleteSecret(secretId, xDaytonaOrganizationID, options) {
|
|
389
|
+
return (0, exports.SecretApiFp)(this.configuration).deleteSecret(secretId, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
* @summary Get secret
|
|
394
|
+
* @param {string} secretId ID of the secret
|
|
395
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
396
|
+
* @param {*} [options] Override http request option.
|
|
397
|
+
* @throws {RequiredError}
|
|
398
|
+
*/
|
|
399
|
+
getSecret(secretId, xDaytonaOrganizationID, options) {
|
|
400
|
+
return (0, exports.SecretApiFp)(this.configuration).getSecret(secretId, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
*
|
|
404
|
+
* @summary List secrets
|
|
405
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
406
|
+
* @param {*} [options] Override http request option.
|
|
407
|
+
* @throws {RequiredError}
|
|
408
|
+
*/
|
|
409
|
+
listSecrets(xDaytonaOrganizationID, options) {
|
|
410
|
+
return (0, exports.SecretApiFp)(this.configuration).listSecrets(xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @summary Update secret
|
|
415
|
+
* @param {string} secretId ID of the secret
|
|
416
|
+
* @param {UpdateSecret} updateSecret
|
|
417
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
418
|
+
* @param {*} [options] Override http request option.
|
|
419
|
+
* @throws {RequiredError}
|
|
420
|
+
*/
|
|
421
|
+
updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options) {
|
|
422
|
+
return (0, exports.SecretApiFp)(this.configuration).updateSecret(secretId, updateSecret, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
exports.SecretApi = SecretApi;
|
|
426
|
+
//# sourceMappingURL=secret-api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"secret-api.js","sourceRoot":"","sources":["../../../../api-client/src/api/secret-api.ts"],"names":[],"mappings":"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"}
|