mirror of
https://github.com/clearml/clearml-server
synced 2025-02-01 03:16:44 +00:00
75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
metadata {
|
|
type: array
|
|
items {
|
|
type: object
|
|
properties {
|
|
key {
|
|
type: string
|
|
description: The key uniquely identifying the metadata item inside the given entity
|
|
}
|
|
tyoe {
|
|
type: string
|
|
description: The type of the metadata item
|
|
}
|
|
value {
|
|
type: string
|
|
description: The value stored in the metadata item
|
|
}
|
|
}
|
|
}
|
|
}
|
|
credentials {
|
|
type: object
|
|
properties {
|
|
access_key {
|
|
type: string
|
|
description: Credentials access key
|
|
}
|
|
secret_key {
|
|
type: string
|
|
description: Credentials secret key
|
|
}
|
|
}
|
|
}
|
|
batch_operation {
|
|
request {
|
|
type: object
|
|
required: [ids]
|
|
properties {
|
|
ids {
|
|
description: Entities to move
|
|
type: array
|
|
items {type: string}
|
|
}
|
|
}
|
|
}
|
|
response {
|
|
failures {
|
|
type: array
|
|
item {
|
|
type: object
|
|
id: {
|
|
description: ID of the failed entity
|
|
type: string
|
|
}
|
|
error: {
|
|
description: Error info
|
|
type: object
|
|
properties {
|
|
codes {
|
|
type: array
|
|
item {type: integer}
|
|
}
|
|
msg {
|
|
type: string
|
|
}
|
|
data {
|
|
type: object
|
|
additionalProperties: True
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |