Skip to content

Commit

Permalink
openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
smklein committed Jul 26, 2024
1 parent 178e20e commit cf3f35c
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 16 deletions.
93 changes: 85 additions & 8 deletions openapi/nexus-internal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2592,14 +2592,91 @@
},
"DatasetKind": {
"description": "Describes the purpose of the dataset.",
"type": "string",
"enum": [
"crucible",
"cockroach",
"clickhouse",
"clickhouse_keeper",
"external_dns",
"internal_dns"
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"cockroach_db"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"crucible"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"clickhouse"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"clickhouse_keeper"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"external_dns"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"internal_dns"
]
}
},
"required": [
"type"
]
}
]
},
"DatasetPutRequest": {
Expand Down
93 changes: 85 additions & 8 deletions openapi/sled-agent.json
Original file line number Diff line number Diff line change
Expand Up @@ -2204,14 +2204,91 @@
},
"DatasetKind": {
"description": "Describes the purpose of the dataset.",
"type": "string",
"enum": [
"crucible",
"cockroach",
"clickhouse",
"clickhouse_keeper",
"external_dns",
"internal_dns"
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"cockroach_db"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"crucible"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"clickhouse"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"clickhouse_keeper"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"external_dns"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"internal_dns"
]
}
},
"required": [
"type"
]
}
]
},
"DatasetManagementStatus": {
Expand Down

0 comments on commit cf3f35c

Please sign in to comment.