@@ -41,13 +41,13 @@ export type TagStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked'
4141
4242/** Image. */
4343export interface Image {
44- /** The UUID of the image. */
44+ /** UUID of the image. */
4545 id : string
46- /** The name of the image, it must be unique within the namespace. */
46+ /** Name of the image, it must be unique within the namespace. */
4747 name : string
48- /** The UUID of the namespace the image belongs to. */
48+ /** UUID of the namespace the image belongs to. */
4949 namespaceId : string
50- /** The status of the image. */
50+ /** Status of the image. */
5151 status : ImageStatus
5252 /** Details of the image status. */
5353 statusMessage ?: string
@@ -98,9 +98,9 @@ export interface ListTagsResponse {
9898
9999/** Namespace. */
100100export interface Namespace {
101- /** The UUID of the namespace. */
101+ /** UUID of the namespace. */
102102 id : string
103- /** The name of the namespace, unique in a region accross all organizations. */
103+ /** Name of the namespace, unique in a region accross all organizations. */
104104 name : string
105105 /** Description of the namespace. */
106106 description : string
@@ -114,7 +114,7 @@ export interface Namespace {
114114 statusMessage : string
115115 /** Endpoint reachable by docker. */
116116 endpoint : string
117- /** Whether or not namespace is public. */
117+ /** Defines whether or not namespace is public. */
118118 isPublic : boolean
119119 /**
120120 * Total size of the namespace, calculated as the sum of the size of all
@@ -133,7 +133,7 @@ export interface Namespace {
133133
134134/** Tag. */
135135export interface Tag {
136- /** The UUID of the tag. */
136+ /** UUID of the tag. */
137137 id : string
138138 /** Tag name, unique to an image. */
139139 name : string
@@ -185,7 +185,7 @@ export type GetNamespaceRequest = {
185185 * config.
186186 */
187187 region ?: Region
188- /** The UUID of the namespace. */
188+ /** UUID of the namespace. */
189189 namespaceId : string
190190}
191191
@@ -213,7 +213,7 @@ export type CreateNamespaceRequest = {
213213 * could be set.
214214 */
215215 projectId ?: string
216- /** Whether or not namespace is public. */
216+ /** Defines whether or not namespace is public. */
217217 isPublic : boolean
218218}
219219
@@ -227,7 +227,7 @@ export type UpdateNamespaceRequest = {
227227 namespaceId : string
228228 /** Namespace description. */
229229 description ?: string
230- /** Whether or not the namespace is public. */
230+ /** Defines whether or not the namespace is public. */
231231 isPublic ?: boolean
232232}
233233
@@ -237,7 +237,7 @@ export type DeleteNamespaceRequest = {
237237 * config.
238238 */
239239 region ?: Region
240- /** The UUID of the namespace. */
240+ /** UUID of the namespace. */
241241 namespaceId : string
242242}
243243
@@ -276,7 +276,7 @@ export type GetImageRequest = {
276276 * config.
277277 */
278278 region ?: Region
279- /** The UUID of the image. */
279+ /** UUID of the image. */
280280 imageId : string
281281}
282282
@@ -302,7 +302,7 @@ export type DeleteImageRequest = {
302302 * config.
303303 */
304304 region ?: Region
305- /** The UUID of the image. */
305+ /** UUID of the image. */
306306 imageId : string
307307}
308308
@@ -312,7 +312,7 @@ export type ListTagsRequest = {
312312 * config.
313313 */
314314 region ?: Region
315- /** The UUID of the image. */
315+ /** UUID of the image. */
316316 imageId : string
317317 /** A positive integer to choose the page to display. */
318318 page ?: number
@@ -337,7 +337,7 @@ export type GetTagRequest = {
337337 * config.
338338 */
339339 region ?: Region
340- /** The UUID of the tag. */
340+ /** UUID of the tag. */
341341 tagId : string
342342}
343343
@@ -347,7 +347,7 @@ export type DeleteTagRequest = {
347347 * config.
348348 */
349349 region ?: Region
350- /** The UUID of the tag. */
350+ /** UUID of the tag. */
351351 tagId : string
352352 /**
353353 * If two tags share the same digest the deletion will fail unless this
0 commit comments