mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Docs: Add parameter definition to swagger for RBAC debug endpoint (#89097)
add parameter definition to swagger for RBAC debug endpoint
This commit is contained in:
parent
6a125fd59f
commit
eb535e163d
@ -3127,6 +3127,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"CloudMigrationRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"authToken": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CloudMigrationResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -4630,6 +4638,29 @@
|
||||
"$ref": "#/definitions/Frame"
|
||||
}
|
||||
},
|
||||
"GetAccessTokenResponseDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"expiresAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstUsedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastUsedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"GetAnnotationTagsResponse": {
|
||||
"type": "object",
|
||||
"title": "GetAnnotationTagsResponse is a response struct for FindTagsResult.",
|
||||
@ -6610,6 +6641,32 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SearchDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"action": {
|
||||
"type": "string"
|
||||
},
|
||||
"basicRole": {
|
||||
"type": "string"
|
||||
},
|
||||
"onlyRoles": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"roleName": {
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"type": "string"
|
||||
},
|
||||
"teamId": {
|
||||
"type": "string"
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SearchDeviceQueryResult": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -8276,6 +8333,15 @@
|
||||
"$ref": "#/definitions/CreateAccessTokenResponseDTO"
|
||||
}
|
||||
},
|
||||
"cloudMigrationDeleteTokenResponse": {
|
||||
"description": ""
|
||||
},
|
||||
"cloudMigrationGetTokenResponse": {
|
||||
"description": "",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/GetAccessTokenResponseDTO"
|
||||
}
|
||||
},
|
||||
"cloudMigrationListResponse": {
|
||||
"description": "",
|
||||
"schema": {
|
||||
|
@ -19350,6 +19350,32 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SearchDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"action": {
|
||||
"type": "string"
|
||||
},
|
||||
"basicRole": {
|
||||
"type": "string"
|
||||
},
|
||||
"onlyRoles": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"roleName": {
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"type": "string"
|
||||
},
|
||||
"teamId": {
|
||||
"type": "string"
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SearchDeviceQueryResult": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -9729,6 +9729,32 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"SearchDTO": {
|
||||
"properties": {
|
||||
"action": {
|
||||
"type": "string"
|
||||
},
|
||||
"basicRole": {
|
||||
"type": "string"
|
||||
},
|
||||
"onlyRoles": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"roleName": {
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"type": "string"
|
||||
},
|
||||
"teamId": {
|
||||
"type": "string"
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"SearchDeviceQueryResult": {
|
||||
"properties": {
|
||||
"devices": {
|
||||
|
Loading…
Reference in New Issue
Block a user