@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
|
@@ -25,57 +25,64 @@ export declare const DockerRegistryApiAxiosParamCreator: (configuration?: Config
|
|
|
25
25
|
*
|
|
26
26
|
* @summary Create registry
|
|
27
27
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
28
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
28
29
|
* @param {*} [options] Override http request option.
|
|
29
30
|
* @throws {RequiredError}
|
|
30
31
|
*/
|
|
31
|
-
createRegistry: (createDockerRegistry: CreateDockerRegistry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
|
+
createRegistry: (createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
33
|
/**
|
|
33
34
|
*
|
|
34
35
|
* @summary Delete registry
|
|
35
|
-
* @param {string} id
|
|
36
|
+
* @param {string} id ID of the docker registry
|
|
37
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
36
38
|
* @param {*} [options] Override http request option.
|
|
37
39
|
* @throws {RequiredError}
|
|
38
40
|
*/
|
|
39
|
-
deleteRegistry: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
deleteRegistry: (id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
42
|
/**
|
|
41
43
|
*
|
|
42
44
|
* @summary Get registry
|
|
43
|
-
* @param {string} id
|
|
45
|
+
* @param {string} id ID of the docker registry
|
|
46
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
44
47
|
* @param {*} [options] Override http request option.
|
|
45
48
|
* @throws {RequiredError}
|
|
46
49
|
*/
|
|
47
|
-
getRegistry: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
|
+
getRegistry: (id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
51
|
/**
|
|
49
52
|
*
|
|
50
53
|
* @summary Get temporary registry access for pushing images
|
|
54
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
51
55
|
* @param {*} [options] Override http request option.
|
|
52
56
|
* @throws {RequiredError}
|
|
53
57
|
*/
|
|
54
|
-
getTransientPushAccess: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
|
+
getTransientPushAccess: (xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
59
|
/**
|
|
56
60
|
*
|
|
57
61
|
* @summary List registries
|
|
62
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
58
63
|
* @param {*} [options] Override http request option.
|
|
59
64
|
* @throws {RequiredError}
|
|
60
65
|
*/
|
|
61
|
-
listRegistries: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
+
listRegistries: (xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
67
|
/**
|
|
63
68
|
*
|
|
64
69
|
* @summary Set default registry
|
|
65
|
-
* @param {string} id
|
|
70
|
+
* @param {string} id ID of the docker registry
|
|
71
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
66
72
|
* @param {*} [options] Override http request option.
|
|
67
73
|
* @throws {RequiredError}
|
|
68
74
|
*/
|
|
69
|
-
setDefaultRegistry: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
|
+
setDefaultRegistry: (id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
76
|
/**
|
|
71
77
|
*
|
|
72
78
|
* @summary Update registry
|
|
73
|
-
* @param {string} id
|
|
79
|
+
* @param {string} id ID of the docker registry
|
|
74
80
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
81
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
75
82
|
* @param {*} [options] Override http request option.
|
|
76
83
|
* @throws {RequiredError}
|
|
77
84
|
*/
|
|
78
|
-
updateRegistry: (id: string, updateDockerRegistry: UpdateDockerRegistry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
|
+
updateRegistry: (id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79
86
|
};
|
|
80
87
|
/**
|
|
81
88
|
* DockerRegistryApi - functional programming interface
|
|
@@ -86,57 +93,64 @@ export declare const DockerRegistryApiFp: (configuration?: Configuration) => {
|
|
|
86
93
|
*
|
|
87
94
|
* @summary Create registry
|
|
88
95
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
96
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
89
97
|
* @param {*} [options] Override http request option.
|
|
90
98
|
* @throws {RequiredError}
|
|
91
99
|
*/
|
|
92
|
-
createRegistry(createDockerRegistry: CreateDockerRegistry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
100
|
+
createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
93
101
|
/**
|
|
94
102
|
*
|
|
95
103
|
* @summary Delete registry
|
|
96
|
-
* @param {string} id
|
|
104
|
+
* @param {string} id ID of the docker registry
|
|
105
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
97
106
|
* @param {*} [options] Override http request option.
|
|
98
107
|
* @throws {RequiredError}
|
|
99
108
|
*/
|
|
100
|
-
deleteRegistry(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
109
|
+
deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
101
110
|
/**
|
|
102
111
|
*
|
|
103
112
|
* @summary Get registry
|
|
104
|
-
* @param {string} id
|
|
113
|
+
* @param {string} id ID of the docker registry
|
|
114
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
105
115
|
* @param {*} [options] Override http request option.
|
|
106
116
|
* @throws {RequiredError}
|
|
107
117
|
*/
|
|
108
|
-
getRegistry(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
118
|
+
getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
109
119
|
/**
|
|
110
120
|
*
|
|
111
121
|
* @summary Get temporary registry access for pushing images
|
|
122
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
112
123
|
* @param {*} [options] Override http request option.
|
|
113
124
|
* @throws {RequiredError}
|
|
114
125
|
*/
|
|
115
|
-
getTransientPushAccess(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryPushAccessDto>>;
|
|
126
|
+
getTransientPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryPushAccessDto>>;
|
|
116
127
|
/**
|
|
117
128
|
*
|
|
118
129
|
* @summary List registries
|
|
130
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
119
131
|
* @param {*} [options] Override http request option.
|
|
120
132
|
* @throws {RequiredError}
|
|
121
133
|
*/
|
|
122
|
-
listRegistries(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DockerRegistry>>>;
|
|
134
|
+
listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DockerRegistry>>>;
|
|
123
135
|
/**
|
|
124
136
|
*
|
|
125
137
|
* @summary Set default registry
|
|
126
|
-
* @param {string} id
|
|
138
|
+
* @param {string} id ID of the docker registry
|
|
139
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
127
140
|
* @param {*} [options] Override http request option.
|
|
128
141
|
* @throws {RequiredError}
|
|
129
142
|
*/
|
|
130
|
-
setDefaultRegistry(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
143
|
+
setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
131
144
|
/**
|
|
132
145
|
*
|
|
133
146
|
* @summary Update registry
|
|
134
|
-
* @param {string} id
|
|
147
|
+
* @param {string} id ID of the docker registry
|
|
135
148
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
149
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
136
150
|
* @param {*} [options] Override http request option.
|
|
137
151
|
* @throws {RequiredError}
|
|
138
152
|
*/
|
|
139
|
-
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
153
|
+
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DockerRegistry>>;
|
|
140
154
|
};
|
|
141
155
|
/**
|
|
142
156
|
* DockerRegistryApi - factory interface
|
|
@@ -147,57 +161,64 @@ export declare const DockerRegistryApiFactory: (configuration?: Configuration, b
|
|
|
147
161
|
*
|
|
148
162
|
* @summary Create registry
|
|
149
163
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
164
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
150
165
|
* @param {*} [options] Override http request option.
|
|
151
166
|
* @throws {RequiredError}
|
|
152
167
|
*/
|
|
153
|
-
createRegistry(createDockerRegistry: CreateDockerRegistry, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
168
|
+
createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
154
169
|
/**
|
|
155
170
|
*
|
|
156
171
|
* @summary Delete registry
|
|
157
|
-
* @param {string} id
|
|
172
|
+
* @param {string} id ID of the docker registry
|
|
173
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
158
174
|
* @param {*} [options] Override http request option.
|
|
159
175
|
* @throws {RequiredError}
|
|
160
176
|
*/
|
|
161
|
-
deleteRegistry(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
177
|
+
deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
162
178
|
/**
|
|
163
179
|
*
|
|
164
180
|
* @summary Get registry
|
|
165
|
-
* @param {string} id
|
|
181
|
+
* @param {string} id ID of the docker registry
|
|
182
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
166
183
|
* @param {*} [options] Override http request option.
|
|
167
184
|
* @throws {RequiredError}
|
|
168
185
|
*/
|
|
169
|
-
getRegistry(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
186
|
+
getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
170
187
|
/**
|
|
171
188
|
*
|
|
172
189
|
* @summary Get temporary registry access for pushing images
|
|
190
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
173
191
|
* @param {*} [options] Override http request option.
|
|
174
192
|
* @throws {RequiredError}
|
|
175
193
|
*/
|
|
176
|
-
getTransientPushAccess(options?: RawAxiosRequestConfig): AxiosPromise<RegistryPushAccessDto>;
|
|
194
|
+
getTransientPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryPushAccessDto>;
|
|
177
195
|
/**
|
|
178
196
|
*
|
|
179
197
|
* @summary List registries
|
|
198
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
180
199
|
* @param {*} [options] Override http request option.
|
|
181
200
|
* @throws {RequiredError}
|
|
182
201
|
*/
|
|
183
|
-
listRegistries(options?: RawAxiosRequestConfig): AxiosPromise<Array<DockerRegistry>>;
|
|
202
|
+
listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<DockerRegistry>>;
|
|
184
203
|
/**
|
|
185
204
|
*
|
|
186
205
|
* @summary Set default registry
|
|
187
|
-
* @param {string} id
|
|
206
|
+
* @param {string} id ID of the docker registry
|
|
207
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
188
208
|
* @param {*} [options] Override http request option.
|
|
189
209
|
* @throws {RequiredError}
|
|
190
210
|
*/
|
|
191
|
-
setDefaultRegistry(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
211
|
+
setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
192
212
|
/**
|
|
193
213
|
*
|
|
194
214
|
* @summary Update registry
|
|
195
|
-
* @param {string} id
|
|
215
|
+
* @param {string} id ID of the docker registry
|
|
196
216
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
217
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
197
218
|
* @param {*} [options] Override http request option.
|
|
198
219
|
* @throws {RequiredError}
|
|
199
220
|
*/
|
|
200
|
-
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
221
|
+
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<DockerRegistry>;
|
|
201
222
|
};
|
|
202
223
|
/**
|
|
203
224
|
* DockerRegistryApi - object-oriented interface
|
|
@@ -210,62 +231,69 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
210
231
|
*
|
|
211
232
|
* @summary Create registry
|
|
212
233
|
* @param {CreateDockerRegistry} createDockerRegistry
|
|
234
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
213
235
|
* @param {*} [options] Override http request option.
|
|
214
236
|
* @throws {RequiredError}
|
|
215
237
|
* @memberof DockerRegistryApi
|
|
216
238
|
*/
|
|
217
|
-
createRegistry(createDockerRegistry: CreateDockerRegistry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
239
|
+
createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
218
240
|
/**
|
|
219
241
|
*
|
|
220
242
|
* @summary Delete registry
|
|
221
|
-
* @param {string} id
|
|
243
|
+
* @param {string} id ID of the docker registry
|
|
244
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
222
245
|
* @param {*} [options] Override http request option.
|
|
223
246
|
* @throws {RequiredError}
|
|
224
247
|
* @memberof DockerRegistryApi
|
|
225
248
|
*/
|
|
226
|
-
deleteRegistry(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
249
|
+
deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
227
250
|
/**
|
|
228
251
|
*
|
|
229
252
|
* @summary Get registry
|
|
230
|
-
* @param {string} id
|
|
253
|
+
* @param {string} id ID of the docker registry
|
|
254
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
231
255
|
* @param {*} [options] Override http request option.
|
|
232
256
|
* @throws {RequiredError}
|
|
233
257
|
* @memberof DockerRegistryApi
|
|
234
258
|
*/
|
|
235
|
-
getRegistry(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
259
|
+
getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
236
260
|
/**
|
|
237
261
|
*
|
|
238
262
|
* @summary Get temporary registry access for pushing images
|
|
263
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
239
264
|
* @param {*} [options] Override http request option.
|
|
240
265
|
* @throws {RequiredError}
|
|
241
266
|
* @memberof DockerRegistryApi
|
|
242
267
|
*/
|
|
243
|
-
getTransientPushAccess(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any>>;
|
|
268
|
+
getTransientPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any>>;
|
|
244
269
|
/**
|
|
245
270
|
*
|
|
246
271
|
* @summary List registries
|
|
272
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
247
273
|
* @param {*} [options] Override http request option.
|
|
248
274
|
* @throws {RequiredError}
|
|
249
275
|
* @memberof DockerRegistryApi
|
|
250
276
|
*/
|
|
251
|
-
listRegistries(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any>>;
|
|
277
|
+
listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any>>;
|
|
252
278
|
/**
|
|
253
279
|
*
|
|
254
280
|
* @summary Set default registry
|
|
255
|
-
* @param {string} id
|
|
281
|
+
* @param {string} id ID of the docker registry
|
|
282
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
256
283
|
* @param {*} [options] Override http request option.
|
|
257
284
|
* @throws {RequiredError}
|
|
258
285
|
* @memberof DockerRegistryApi
|
|
259
286
|
*/
|
|
260
|
-
setDefaultRegistry(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
287
|
+
setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
261
288
|
/**
|
|
262
289
|
*
|
|
263
290
|
* @summary Update registry
|
|
264
|
-
* @param {string} id
|
|
291
|
+
* @param {string} id ID of the docker registry
|
|
265
292
|
* @param {UpdateDockerRegistry} updateDockerRegistry
|
|
293
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
266
294
|
* @param {*} [options] Override http request option.
|
|
267
295
|
* @throws {RequiredError}
|
|
268
296
|
* @memberof DockerRegistryApi
|
|
269
297
|
*/
|
|
270
|
-
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
298
|
+
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
271
299
|
}
|