clearml-server/apiserver/schema/services/_common.conf

79 lines
2.1 KiB
Plaintext
Raw Normal View History

metadata_item {
type: object
properties {
key {
type: string
description: The key uniquely identifying the metadata item inside the given entity
}
type {
type: string
description: The type of the metadata item
}
value {
type: string
description: The value stored in the metadata item
}
}
}
2019-06-10 21:24:35 +00:00
credentials {
type: object
properties {
access_key {
type: string
description: Credentials access key
}
secret_key {
type: string
description: Credentials secret key
}
}
}
2021-05-03 14:52:54 +00:00
batch_operation {
request {
type: object
required: [ids]
properties {
ids {
type: array
items {type: string}
}
}
}
response {
2021-05-03 15:01:29 +00:00
type: object
properties {
2021-05-03 15:03:54 +00:00
succeeded {
type: integer
}
2021-05-03 15:01:29 +00:00
failures {
type: array
items {
2021-05-03 14:52:54 +00:00
type: object
properties {
2021-05-03 15:01:29 +00:00
id: {
description: ID of the failed entity
2021-05-03 14:52:54 +00:00
type: string
}
2021-05-03 15:01:29 +00:00
error: {
description: Error info
2021-05-03 14:52:54 +00:00
type: object
2021-05-03 15:01:29 +00:00
properties {
codes {
type: array
items {type: integer}
}
msg {
type: string
}
data {
type: object
additionalProperties: True
}
}
2021-05-03 14:52:54 +00:00
}
}
}
}
}
}
}