@daytonaio/api-client 0.14.0 → 0.15.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/.openapi-generator/FILES +16 -1
- package/README.md +2 -2
- package/api/api-keys-api.ts +60 -28
- package/api/docker-registry-api.ts +121 -65
- package/api/images-api.ts +60 -28
- package/api/organizations-api.ts +1858 -0
- package/api/toolbox-api.ts +548 -252
- package/api/users-api.ts +14 -98
- package/api/workspace-api.ts +268 -168
- package/api.ts +1 -0
- package/dist/api/api-keys-api.d.ts +32 -16
- package/dist/api/api-keys-api.js +56 -28
- package/dist/api/docker-registry-api.d.ts +72 -44
- package/dist/api/docker-registry-api.js +114 -65
- package/dist/api/images-api.d.ts +32 -16
- package/dist/api/images-api.js +56 -28
- package/dist/api/organizations-api.d.ts +856 -0
- package/dist/api/organizations-api.js +1741 -0
- package/dist/api/toolbox-api.d.ts +292 -144
- package/dist/api/toolbox-api.js +511 -252
- package/dist/api/users-api.d.ts +9 -47
- package/dist/api/users-api.js +13 -90
- package/dist/api/workspace-api.d.ts +153 -101
- package/dist/api/workspace-api.js +257 -169
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/esm/api/api-keys-api.d.ts +32 -16
- package/dist/esm/api/api-keys-api.js +56 -28
- package/dist/esm/api/docker-registry-api.d.ts +72 -44
- package/dist/esm/api/docker-registry-api.js +114 -65
- package/dist/esm/api/images-api.d.ts +32 -16
- package/dist/esm/api/images-api.js +56 -28
- package/dist/esm/api/organizations-api.d.ts +856 -0
- package/dist/esm/api/organizations-api.js +1734 -0
- package/dist/esm/api/toolbox-api.d.ts +292 -144
- package/dist/esm/api/toolbox-api.js +511 -252
- package/dist/esm/api/users-api.d.ts +9 -47
- package/dist/esm/api/users-api.js +13 -90
- package/dist/esm/api/workspace-api.d.ts +153 -101
- package/dist/esm/api/workspace-api.js +257 -169
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -0
- package/dist/esm/models/api-key-list.d.ts +15 -0
- package/dist/esm/models/api-key-list.js +8 -1
- package/dist/esm/models/api-key-response.d.ts +15 -0
- package/dist/esm/models/api-key-response.js +8 -1
- package/dist/esm/models/create-api-key.d.ts +15 -0
- package/dist/esm/models/create-api-key.js +8 -1
- package/dist/esm/models/create-docker-registry.d.ts +1 -1
- package/dist/esm/models/create-docker-registry.js +1 -1
- package/dist/esm/models/create-organization-invitation.d.ts +47 -0
- package/dist/esm/models/create-organization-invitation.js +17 -0
- package/dist/esm/models/create-organization-quota.d.ts +84 -0
- package/dist/esm/models/create-organization-role.d.ts +45 -0
- package/dist/esm/models/create-organization-role.js +21 -0
- package/dist/esm/models/create-organization.d.ts +90 -0
- package/dist/esm/models/create-organization.js +14 -0
- package/dist/esm/models/create-user.d.ts +5 -58
- package/dist/esm/models/docker-registry.d.ts +1 -1
- package/dist/esm/models/docker-registry.js +1 -1
- package/dist/esm/models/image-dto.d.ts +1 -1
- package/dist/esm/models/index.d.ts +15 -1
- package/dist/esm/models/index.js +15 -1
- package/dist/esm/models/organization-invitation.d.ts +91 -0
- package/dist/esm/models/organization-invitation.js +23 -0
- package/dist/esm/models/organization-role.d.ts +69 -0
- package/dist/esm/models/organization-role.js +21 -0
- package/dist/esm/models/organization-user.d.ts +72 -0
- package/dist/esm/models/organization-user.js +17 -0
- package/dist/esm/models/organization.d.ts +54 -0
- package/dist/esm/models/organization.js +14 -0
- package/dist/esm/models/update-assigned-organization-roles.d.ts +24 -0
- package/dist/esm/models/update-assigned-organization-roles.js +14 -0
- package/dist/esm/models/update-organization-invitation.d.ts +41 -0
- package/dist/esm/models/update-organization-invitation.js +17 -0
- package/dist/esm/models/update-organization-member-role.d.ts +29 -0
- package/dist/esm/models/update-organization-member-role.js +17 -0
- package/dist/esm/models/{update-user-quota-dto.d.ts → update-organization-quota.d.ts} +13 -13
- package/dist/esm/models/update-organization-quota.js +14 -0
- package/dist/esm/models/update-organization-role.d.ts +45 -0
- package/dist/esm/models/update-organization-role.js +21 -0
- package/dist/esm/models/user-public-key.d.ts +30 -0
- package/dist/esm/models/user-public-key.js +14 -0
- package/dist/esm/models/user.d.ts +43 -0
- package/dist/esm/models/user.js +14 -0
- package/dist/models/api-key-list.d.ts +15 -0
- package/dist/models/api-key-list.js +9 -0
- package/dist/models/api-key-response.d.ts +15 -0
- package/dist/models/api-key-response.js +9 -0
- package/dist/models/create-api-key.d.ts +15 -0
- package/dist/models/create-api-key.js +9 -0
- package/dist/models/create-docker-registry.d.ts +1 -1
- package/dist/models/create-docker-registry.js +1 -1
- package/dist/models/create-organization-invitation.d.ts +47 -0
- package/dist/models/create-organization-invitation.js +20 -0
- package/dist/models/create-organization-quota.d.ts +84 -0
- package/dist/models/create-organization-role.d.ts +45 -0
- package/dist/models/create-organization-role.js +24 -0
- package/dist/models/create-organization.d.ts +90 -0
- package/dist/models/create-organization.js +15 -0
- package/dist/models/create-user.d.ts +5 -58
- package/dist/models/docker-registry.d.ts +1 -1
- package/dist/models/docker-registry.js +1 -1
- package/dist/models/image-dto.d.ts +1 -1
- package/dist/models/index.d.ts +15 -1
- package/dist/models/index.js +15 -1
- package/dist/models/organization-invitation.d.ts +91 -0
- package/dist/models/organization-invitation.js +26 -0
- package/dist/models/organization-role.d.ts +69 -0
- package/dist/models/organization-role.js +24 -0
- package/dist/models/organization-user.d.ts +72 -0
- package/dist/models/organization-user.js +20 -0
- package/dist/models/organization.d.ts +54 -0
- package/dist/models/organization.js +15 -0
- package/dist/models/update-assigned-organization-roles.d.ts +24 -0
- package/dist/models/update-assigned-organization-roles.js +15 -0
- package/dist/models/update-organization-invitation.d.ts +41 -0
- package/dist/models/update-organization-invitation.js +20 -0
- package/dist/models/update-organization-member-role.d.ts +29 -0
- package/dist/models/update-organization-member-role.js +20 -0
- package/dist/models/{update-user-quota-dto.d.ts → update-organization-quota.d.ts} +13 -13
- package/dist/models/update-organization-quota.js +15 -0
- package/dist/models/update-organization-role.d.ts +45 -0
- package/dist/models/update-organization-role.js +24 -0
- package/dist/models/user-public-key.d.ts +30 -0
- package/dist/models/user-public-key.js +15 -0
- package/dist/models/user.d.ts +43 -0
- package/dist/models/user.js +15 -0
- package/models/api-key-list.ts +18 -0
- package/models/api-key-response.ts +18 -0
- package/models/create-api-key.ts +18 -0
- package/models/create-docker-registry.ts +1 -1
- package/models/create-organization-invitation.ts +56 -0
- package/models/create-organization-quota.ts +90 -0
- package/models/create-organization-role.ts +54 -0
- package/models/create-organization.ts +96 -0
- package/models/create-user.ts +7 -58
- package/models/docker-registry.ts +1 -1
- package/models/image-dto.ts +1 -1
- package/models/index.ts +15 -1
- package/models/organization-invitation.ts +103 -0
- package/models/organization-role.ts +78 -0
- package/models/organization-user.ts +83 -0
- package/models/organization.ts +60 -0
- package/models/update-assigned-organization-roles.ts +30 -0
- package/models/update-organization-invitation.ts +50 -0
- package/models/update-organization-member-role.ts +38 -0
- package/models/{update-user-quota-dto.ts → update-organization-quota.ts} +13 -13
- package/models/update-organization-role.ts +54 -0
- package/models/user-public-key.ts +36 -0
- package/models/user.ts +51 -0
- package/package.json +1 -1
- /package/dist/esm/models/{update-user-quota-dto.js → create-organization-quota.js} +0 -0
- /package/dist/models/{update-user-quota-dto.js → create-organization-quota.js} +0 -0
|
@@ -36,10 +36,11 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
36
36
|
*
|
|
37
37
|
* @summary Create registry
|
|
38
38
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
39
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
39
40
|
* @param {*} [options] Override http request option.
|
|
40
41
|
* @throws {RequiredError}
|
|
41
42
|
*/
|
|
42
|
-
createRegistry: (createDockerRegistry_1, ...args_1) => __awaiter(this, [createDockerRegistry_1, ...args_1], void 0, function* (createDockerRegistry, options = {}) {
|
|
43
|
+
createRegistry: (createDockerRegistry_1, xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [createDockerRegistry_1, xDaytonaOrganizationID_1, ...args_1], void 0, function* (createDockerRegistry, xDaytonaOrganizationID, options = {}) {
|
|
43
44
|
// verify required parameter 'createDockerRegistry' is not null or undefined
|
|
44
45
|
assertParamExists('createRegistry', 'createDockerRegistry', createDockerRegistry);
|
|
45
46
|
const localVarPath = `/docker-registry`;
|
|
@@ -55,6 +56,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
55
56
|
// authentication oauth2 required
|
|
56
57
|
// oauth required
|
|
57
58
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
59
|
+
if (xDaytonaOrganizationID != null) {
|
|
60
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
61
|
+
}
|
|
58
62
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59
63
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60
64
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -68,11 +72,12 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
68
72
|
/**
|
|
69
73
|
*
|
|
70
74
|
* @summary Delete registry
|
|
71
|
-
* @param {string} id
|
|
75
|
+
* @param {string} id ID of the docker registry
|
|
76
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
72
77
|
* @param {*} [options] Override http request option.
|
|
73
78
|
* @throws {RequiredError}
|
|
74
79
|
*/
|
|
75
|
-
deleteRegistry: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
80
|
+
deleteRegistry: (id_1, xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [id_1, xDaytonaOrganizationID_1, ...args_1], void 0, function* (id, xDaytonaOrganizationID, options = {}) {
|
|
76
81
|
// verify required parameter 'id' is not null or undefined
|
|
77
82
|
assertParamExists('deleteRegistry', 'id', id);
|
|
78
83
|
const localVarPath = `/docker-registry/{id}`
|
|
@@ -89,6 +94,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
89
94
|
// authentication oauth2 required
|
|
90
95
|
// oauth required
|
|
91
96
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
97
|
+
if (xDaytonaOrganizationID != null) {
|
|
98
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
99
|
+
}
|
|
92
100
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
93
101
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
94
102
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -100,11 +108,12 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
100
108
|
/**
|
|
101
109
|
*
|
|
102
110
|
* @summary Get registry
|
|
103
|
-
* @param {string} id
|
|
111
|
+
* @param {string} id ID of the docker registry
|
|
112
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
104
113
|
* @param {*} [options] Override http request option.
|
|
105
114
|
* @throws {RequiredError}
|
|
106
115
|
*/
|
|
107
|
-
getRegistry: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
116
|
+
getRegistry: (id_1, xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [id_1, xDaytonaOrganizationID_1, ...args_1], void 0, function* (id, xDaytonaOrganizationID, options = {}) {
|
|
108
117
|
// verify required parameter 'id' is not null or undefined
|
|
109
118
|
assertParamExists('getRegistry', 'id', id);
|
|
110
119
|
const localVarPath = `/docker-registry/{id}`
|
|
@@ -121,6 +130,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
121
130
|
// authentication oauth2 required
|
|
122
131
|
// oauth required
|
|
123
132
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
133
|
+
if (xDaytonaOrganizationID != null) {
|
|
134
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
135
|
+
}
|
|
124
136
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
125
137
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
126
138
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -132,10 +144,11 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
132
144
|
/**
|
|
133
145
|
*
|
|
134
146
|
* @summary Get temporary registry access for pushing images
|
|
147
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
135
148
|
* @param {*} [options] Override http request option.
|
|
136
149
|
* @throws {RequiredError}
|
|
137
150
|
*/
|
|
138
|
-
getTransientPushAccess: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
151
|
+
getTransientPushAccess: (xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [xDaytonaOrganizationID_1, ...args_1], void 0, function* (xDaytonaOrganizationID, options = {}) {
|
|
139
152
|
const localVarPath = `/docker-registry/registry-push-access`;
|
|
140
153
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
141
154
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -149,6 +162,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
149
162
|
// authentication oauth2 required
|
|
150
163
|
// oauth required
|
|
151
164
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
165
|
+
if (xDaytonaOrganizationID != null) {
|
|
166
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
167
|
+
}
|
|
152
168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
153
169
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
154
170
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -160,10 +176,11 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
160
176
|
/**
|
|
161
177
|
*
|
|
162
178
|
* @summary List registries
|
|
179
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
163
180
|
* @param {*} [options] Override http request option.
|
|
164
181
|
* @throws {RequiredError}
|
|
165
182
|
*/
|
|
166
|
-
listRegistries: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
183
|
+
listRegistries: (xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [xDaytonaOrganizationID_1, ...args_1], void 0, function* (xDaytonaOrganizationID, options = {}) {
|
|
167
184
|
const localVarPath = `/docker-registry`;
|
|
168
185
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
169
186
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -177,6 +194,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
177
194
|
// authentication oauth2 required
|
|
178
195
|
// oauth required
|
|
179
196
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
197
|
+
if (xDaytonaOrganizationID != null) {
|
|
198
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
199
|
+
}
|
|
180
200
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
181
201
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
182
202
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -188,11 +208,12 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
188
208
|
/**
|
|
189
209
|
*
|
|
190
210
|
* @summary Set default registry
|
|
191
|
-
* @param {string} id
|
|
211
|
+
* @param {string} id ID of the docker registry
|
|
212
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
192
213
|
* @param {*} [options] Override http request option.
|
|
193
214
|
* @throws {RequiredError}
|
|
194
215
|
*/
|
|
195
|
-
setDefaultRegistry: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
216
|
+
setDefaultRegistry: (id_1, xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [id_1, xDaytonaOrganizationID_1, ...args_1], void 0, function* (id, xDaytonaOrganizationID, options = {}) {
|
|
196
217
|
// verify required parameter 'id' is not null or undefined
|
|
197
218
|
assertParamExists('setDefaultRegistry', 'id', id);
|
|
198
219
|
const localVarPath = `/docker-registry/{id}/set-default`
|
|
@@ -209,6 +230,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
209
230
|
// authentication oauth2 required
|
|
210
231
|
// oauth required
|
|
211
232
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
233
|
+
if (xDaytonaOrganizationID != null) {
|
|
234
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
235
|
+
}
|
|
212
236
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
213
237
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
214
238
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -220,12 +244,13 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
220
244
|
/**
|
|
221
245
|
*
|
|
222
246
|
* @summary Update registry
|
|
223
|
-
* @param {string} id
|
|
247
|
+
* @param {string} id ID of the docker registry
|
|
224
248
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
249
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
225
250
|
* @param {*} [options] Override http request option.
|
|
226
251
|
* @throws {RequiredError}
|
|
227
252
|
*/
|
|
228
|
-
updateRegistry: (id_1, updateDockerRegistry_1, ...args_1) => __awaiter(this, [id_1, updateDockerRegistry_1, ...args_1], void 0, function* (id, updateDockerRegistry, options = {}) {
|
|
253
|
+
updateRegistry: (id_1, updateDockerRegistry_1, xDaytonaOrganizationID_1, ...args_1) => __awaiter(this, [id_1, updateDockerRegistry_1, xDaytonaOrganizationID_1, ...args_1], void 0, function* (id, updateDockerRegistry, xDaytonaOrganizationID, options = {}) {
|
|
229
254
|
// verify required parameter 'id' is not null or undefined
|
|
230
255
|
assertParamExists('updateRegistry', 'id', id);
|
|
231
256
|
// verify required parameter 'updateDockerRegistry' is not null or undefined
|
|
@@ -244,6 +269,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
244
269
|
// authentication oauth2 required
|
|
245
270
|
// oauth required
|
|
246
271
|
yield setOAuthToObject(localVarHeaderParameter, "oauth2", ["openid", "profile", "email"], configuration);
|
|
272
|
+
if (xDaytonaOrganizationID != null) {
|
|
273
|
+
localVarHeaderParameter['X-Daytona-Organization-ID'] = String(xDaytonaOrganizationID);
|
|
274
|
+
}
|
|
247
275
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
248
276
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
249
277
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -267,13 +295,14 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
267
295
|
*
|
|
268
296
|
* @summary Create registry
|
|
269
297
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
298
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
270
299
|
* @param {*} [options] Override http request option.
|
|
271
300
|
* @throws {RequiredError}
|
|
272
301
|
*/
|
|
273
|
-
createRegistry(createDockerRegistry, options) {
|
|
302
|
+
createRegistry(createDockerRegistry, xDaytonaOrganizationID, options) {
|
|
274
303
|
return __awaiter(this, void 0, void 0, function* () {
|
|
275
304
|
var _a, _b, _c;
|
|
276
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.createRegistry(createDockerRegistry, options);
|
|
305
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createRegistry(createDockerRegistry, xDaytonaOrganizationID, options);
|
|
277
306
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
278
307
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.createRegistry']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
279
308
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -282,14 +311,15 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
282
311
|
/**
|
|
283
312
|
*
|
|
284
313
|
* @summary Delete registry
|
|
285
|
-
* @param {string} id
|
|
314
|
+
* @param {string} id ID of the docker registry
|
|
315
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
286
316
|
* @param {*} [options] Override http request option.
|
|
287
317
|
* @throws {RequiredError}
|
|
288
318
|
*/
|
|
289
|
-
deleteRegistry(id, options) {
|
|
319
|
+
deleteRegistry(id, xDaytonaOrganizationID, options) {
|
|
290
320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
291
321
|
var _a, _b, _c;
|
|
292
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteRegistry(id, options);
|
|
322
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteRegistry(id, xDaytonaOrganizationID, options);
|
|
293
323
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
294
324
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.deleteRegistry']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
295
325
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -298,14 +328,15 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
298
328
|
/**
|
|
299
329
|
*
|
|
300
330
|
* @summary Get registry
|
|
301
|
-
* @param {string} id
|
|
331
|
+
* @param {string} id ID of the docker registry
|
|
332
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
302
333
|
* @param {*} [options] Override http request option.
|
|
303
334
|
* @throws {RequiredError}
|
|
304
335
|
*/
|
|
305
|
-
getRegistry(id, options) {
|
|
336
|
+
getRegistry(id, xDaytonaOrganizationID, options) {
|
|
306
337
|
return __awaiter(this, void 0, void 0, function* () {
|
|
307
338
|
var _a, _b, _c;
|
|
308
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRegistry(id, options);
|
|
339
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRegistry(id, xDaytonaOrganizationID, options);
|
|
309
340
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
310
341
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.getRegistry']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
311
342
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -314,13 +345,14 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
314
345
|
/**
|
|
315
346
|
*
|
|
316
347
|
* @summary Get temporary registry access for pushing images
|
|
348
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
317
349
|
* @param {*} [options] Override http request option.
|
|
318
350
|
* @throws {RequiredError}
|
|
319
351
|
*/
|
|
320
|
-
getTransientPushAccess(options) {
|
|
352
|
+
getTransientPushAccess(xDaytonaOrganizationID, options) {
|
|
321
353
|
return __awaiter(this, void 0, void 0, function* () {
|
|
322
354
|
var _a, _b, _c;
|
|
323
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTransientPushAccess(options);
|
|
355
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTransientPushAccess(xDaytonaOrganizationID, options);
|
|
324
356
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
325
357
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.getTransientPushAccess']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
326
358
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -329,13 +361,14 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
329
361
|
/**
|
|
330
362
|
*
|
|
331
363
|
* @summary List registries
|
|
364
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
332
365
|
* @param {*} [options] Override http request option.
|
|
333
366
|
* @throws {RequiredError}
|
|
334
367
|
*/
|
|
335
|
-
listRegistries(options) {
|
|
368
|
+
listRegistries(xDaytonaOrganizationID, options) {
|
|
336
369
|
return __awaiter(this, void 0, void 0, function* () {
|
|
337
370
|
var _a, _b, _c;
|
|
338
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listRegistries(options);
|
|
371
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listRegistries(xDaytonaOrganizationID, options);
|
|
339
372
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
340
373
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.listRegistries']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
341
374
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -344,14 +377,15 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
344
377
|
/**
|
|
345
378
|
*
|
|
346
379
|
* @summary Set default registry
|
|
347
|
-
* @param {string} id
|
|
380
|
+
* @param {string} id ID of the docker registry
|
|
381
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
348
382
|
* @param {*} [options] Override http request option.
|
|
349
383
|
* @throws {RequiredError}
|
|
350
384
|
*/
|
|
351
|
-
setDefaultRegistry(id, options) {
|
|
385
|
+
setDefaultRegistry(id, xDaytonaOrganizationID, options) {
|
|
352
386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
353
387
|
var _a, _b, _c;
|
|
354
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.setDefaultRegistry(id, options);
|
|
388
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.setDefaultRegistry(id, xDaytonaOrganizationID, options);
|
|
355
389
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
356
390
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.setDefaultRegistry']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
357
391
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -360,15 +394,16 @@ export const DockerRegistryApiFp = function (configuration) {
|
|
|
360
394
|
/**
|
|
361
395
|
*
|
|
362
396
|
* @summary Update registry
|
|
363
|
-
* @param {string} id
|
|
397
|
+
* @param {string} id ID of the docker registry
|
|
364
398
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
399
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
365
400
|
* @param {*} [options] Override http request option.
|
|
366
401
|
* @throws {RequiredError}
|
|
367
402
|
*/
|
|
368
|
-
updateRegistry(id, updateDockerRegistry, options) {
|
|
403
|
+
updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options) {
|
|
369
404
|
return __awaiter(this, void 0, void 0, function* () {
|
|
370
405
|
var _a, _b, _c;
|
|
371
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateRegistry(id, updateDockerRegistry, options);
|
|
406
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options);
|
|
372
407
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
373
408
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DockerRegistryApi.updateRegistry']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
374
409
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -387,70 +422,77 @@ export const DockerRegistryApiFactory = function (configuration, basePath, axios
|
|
|
387
422
|
*
|
|
388
423
|
* @summary Create registry
|
|
389
424
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
425
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
390
426
|
* @param {*} [options] Override http request option.
|
|
391
427
|
* @throws {RequiredError}
|
|
392
428
|
*/
|
|
393
|
-
createRegistry(createDockerRegistry, options) {
|
|
394
|
-
return localVarFp.createRegistry(createDockerRegistry, options).then((request) => request(axios, basePath));
|
|
429
|
+
createRegistry(createDockerRegistry, xDaytonaOrganizationID, options) {
|
|
430
|
+
return localVarFp.createRegistry(createDockerRegistry, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
395
431
|
},
|
|
396
432
|
/**
|
|
397
433
|
*
|
|
398
434
|
* @summary Delete registry
|
|
399
|
-
* @param {string} id
|
|
435
|
+
* @param {string} id ID of the docker registry
|
|
436
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
400
437
|
* @param {*} [options] Override http request option.
|
|
401
438
|
* @throws {RequiredError}
|
|
402
439
|
*/
|
|
403
|
-
deleteRegistry(id, options) {
|
|
404
|
-
return localVarFp.deleteRegistry(id, options).then((request) => request(axios, basePath));
|
|
440
|
+
deleteRegistry(id, xDaytonaOrganizationID, options) {
|
|
441
|
+
return localVarFp.deleteRegistry(id, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
405
442
|
},
|
|
406
443
|
/**
|
|
407
444
|
*
|
|
408
445
|
* @summary Get registry
|
|
409
|
-
* @param {string} id
|
|
446
|
+
* @param {string} id ID of the docker registry
|
|
447
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
410
448
|
* @param {*} [options] Override http request option.
|
|
411
449
|
* @throws {RequiredError}
|
|
412
450
|
*/
|
|
413
|
-
getRegistry(id, options) {
|
|
414
|
-
return localVarFp.getRegistry(id, options).then((request) => request(axios, basePath));
|
|
451
|
+
getRegistry(id, xDaytonaOrganizationID, options) {
|
|
452
|
+
return localVarFp.getRegistry(id, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
415
453
|
},
|
|
416
454
|
/**
|
|
417
455
|
*
|
|
418
456
|
* @summary Get temporary registry access for pushing images
|
|
457
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
419
458
|
* @param {*} [options] Override http request option.
|
|
420
459
|
* @throws {RequiredError}
|
|
421
460
|
*/
|
|
422
|
-
getTransientPushAccess(options) {
|
|
423
|
-
return localVarFp.getTransientPushAccess(options).then((request) => request(axios, basePath));
|
|
461
|
+
getTransientPushAccess(xDaytonaOrganizationID, options) {
|
|
462
|
+
return localVarFp.getTransientPushAccess(xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
424
463
|
},
|
|
425
464
|
/**
|
|
426
465
|
*
|
|
427
466
|
* @summary List registries
|
|
467
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
428
468
|
* @param {*} [options] Override http request option.
|
|
429
469
|
* @throws {RequiredError}
|
|
430
470
|
*/
|
|
431
|
-
listRegistries(options) {
|
|
432
|
-
return localVarFp.listRegistries(options).then((request) => request(axios, basePath));
|
|
471
|
+
listRegistries(xDaytonaOrganizationID, options) {
|
|
472
|
+
return localVarFp.listRegistries(xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
433
473
|
},
|
|
434
474
|
/**
|
|
435
475
|
*
|
|
436
476
|
* @summary Set default registry
|
|
437
|
-
* @param {string} id
|
|
477
|
+
* @param {string} id ID of the docker registry
|
|
478
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
438
479
|
* @param {*} [options] Override http request option.
|
|
439
480
|
* @throws {RequiredError}
|
|
440
481
|
*/
|
|
441
|
-
setDefaultRegistry(id, options) {
|
|
442
|
-
return localVarFp.setDefaultRegistry(id, options).then((request) => request(axios, basePath));
|
|
482
|
+
setDefaultRegistry(id, xDaytonaOrganizationID, options) {
|
|
483
|
+
return localVarFp.setDefaultRegistry(id, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
443
484
|
},
|
|
444
485
|
/**
|
|
445
486
|
*
|
|
446
487
|
* @summary Update registry
|
|
447
|
-
* @param {string} id
|
|
488
|
+
* @param {string} id ID of the docker registry
|
|
448
489
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
490
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
449
491
|
* @param {*} [options] Override http request option.
|
|
450
492
|
* @throws {RequiredError}
|
|
451
493
|
*/
|
|
452
|
-
updateRegistry(id, updateDockerRegistry, options) {
|
|
453
|
-
return localVarFp.updateRegistry(id, updateDockerRegistry, options).then((request) => request(axios, basePath));
|
|
494
|
+
updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options) {
|
|
495
|
+
return localVarFp.updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options).then((request) => request(axios, basePath));
|
|
454
496
|
},
|
|
455
497
|
};
|
|
456
498
|
};
|
|
@@ -465,76 +507,83 @@ export class DockerRegistryApi extends BaseAPI {
|
|
|
465
507
|
*
|
|
466
508
|
* @summary Create registry
|
|
467
509
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
510
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
468
511
|
* @param {*} [options] Override http request option.
|
|
469
512
|
* @throws {RequiredError}
|
|
470
513
|
* @memberof DockerRegistryApi
|
|
471
514
|
*/
|
|
472
|
-
createRegistry(createDockerRegistry, options) {
|
|
473
|
-
return DockerRegistryApiFp(this.configuration).createRegistry(createDockerRegistry, options).then((request) => request(this.axios, this.basePath));
|
|
515
|
+
createRegistry(createDockerRegistry, xDaytonaOrganizationID, options) {
|
|
516
|
+
return DockerRegistryApiFp(this.configuration).createRegistry(createDockerRegistry, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
474
517
|
}
|
|
475
518
|
/**
|
|
476
519
|
*
|
|
477
520
|
* @summary Delete registry
|
|
478
|
-
* @param {string} id
|
|
521
|
+
* @param {string} id ID of the docker registry
|
|
522
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
479
523
|
* @param {*} [options] Override http request option.
|
|
480
524
|
* @throws {RequiredError}
|
|
481
525
|
* @memberof DockerRegistryApi
|
|
482
526
|
*/
|
|
483
|
-
deleteRegistry(id, options) {
|
|
484
|
-
return DockerRegistryApiFp(this.configuration).deleteRegistry(id, options).then((request) => request(this.axios, this.basePath));
|
|
527
|
+
deleteRegistry(id, xDaytonaOrganizationID, options) {
|
|
528
|
+
return DockerRegistryApiFp(this.configuration).deleteRegistry(id, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
485
529
|
}
|
|
486
530
|
/**
|
|
487
531
|
*
|
|
488
532
|
* @summary Get registry
|
|
489
|
-
* @param {string} id
|
|
533
|
+
* @param {string} id ID of the docker registry
|
|
534
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
490
535
|
* @param {*} [options] Override http request option.
|
|
491
536
|
* @throws {RequiredError}
|
|
492
537
|
* @memberof DockerRegistryApi
|
|
493
538
|
*/
|
|
494
|
-
getRegistry(id, options) {
|
|
495
|
-
return DockerRegistryApiFp(this.configuration).getRegistry(id, options).then((request) => request(this.axios, this.basePath));
|
|
539
|
+
getRegistry(id, xDaytonaOrganizationID, options) {
|
|
540
|
+
return DockerRegistryApiFp(this.configuration).getRegistry(id, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
496
541
|
}
|
|
497
542
|
/**
|
|
498
543
|
*
|
|
499
544
|
* @summary Get temporary registry access for pushing images
|
|
545
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
500
546
|
* @param {*} [options] Override http request option.
|
|
501
547
|
* @throws {RequiredError}
|
|
502
548
|
* @memberof DockerRegistryApi
|
|
503
549
|
*/
|
|
504
|
-
getTransientPushAccess(options) {
|
|
505
|
-
return DockerRegistryApiFp(this.configuration).getTransientPushAccess(options).then((request) => request(this.axios, this.basePath));
|
|
550
|
+
getTransientPushAccess(xDaytonaOrganizationID, options) {
|
|
551
|
+
return DockerRegistryApiFp(this.configuration).getTransientPushAccess(xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
506
552
|
}
|
|
507
553
|
/**
|
|
508
554
|
*
|
|
509
555
|
* @summary List registries
|
|
556
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
510
557
|
* @param {*} [options] Override http request option.
|
|
511
558
|
* @throws {RequiredError}
|
|
512
559
|
* @memberof DockerRegistryApi
|
|
513
560
|
*/
|
|
514
|
-
listRegistries(options) {
|
|
515
|
-
return DockerRegistryApiFp(this.configuration).listRegistries(options).then((request) => request(this.axios, this.basePath));
|
|
561
|
+
listRegistries(xDaytonaOrganizationID, options) {
|
|
562
|
+
return DockerRegistryApiFp(this.configuration).listRegistries(xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
516
563
|
}
|
|
517
564
|
/**
|
|
518
565
|
*
|
|
519
566
|
* @summary Set default registry
|
|
520
|
-
* @param {string} id
|
|
567
|
+
* @param {string} id ID of the docker registry
|
|
568
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
521
569
|
* @param {*} [options] Override http request option.
|
|
522
570
|
* @throws {RequiredError}
|
|
523
571
|
* @memberof DockerRegistryApi
|
|
524
572
|
*/
|
|
525
|
-
setDefaultRegistry(id, options) {
|
|
526
|
-
return DockerRegistryApiFp(this.configuration).setDefaultRegistry(id, options).then((request) => request(this.axios, this.basePath));
|
|
573
|
+
setDefaultRegistry(id, xDaytonaOrganizationID, options) {
|
|
574
|
+
return DockerRegistryApiFp(this.configuration).setDefaultRegistry(id, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
527
575
|
}
|
|
528
576
|
/**
|
|
529
577
|
*
|
|
530
578
|
* @summary Update registry
|
|
531
|
-
* @param {string} id
|
|
579
|
+
* @param {string} id ID of the docker registry
|
|
532
580
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
581
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
533
582
|
* @param {*} [options] Override http request option.
|
|
534
583
|
* @throws {RequiredError}
|
|
535
584
|
* @memberof DockerRegistryApi
|
|
536
585
|
*/
|
|
537
|
-
updateRegistry(id, updateDockerRegistry, options) {
|
|
538
|
-
return DockerRegistryApiFp(this.configuration).updateRegistry(id, updateDockerRegistry, options).then((request) => request(this.axios, this.basePath));
|
|
586
|
+
updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options) {
|
|
587
|
+
return DockerRegistryApiFp(this.configuration).updateRegistry(id, updateDockerRegistry, xDaytonaOrganizationID, options).then((request) => request(this.axios, this.basePath));
|
|
539
588
|
}
|
|
540
589
|
}
|