mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-07 10:17:51 +00:00
Add vendor folder to git
This commit is contained in:
parent
66cf5eaafb
commit
183585f56f
6916 changed files with 2629581 additions and 1 deletions
30
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json
generated
vendored
Normal file
30
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json
generated
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"description": "Returns a pet based on ID",
|
||||
"summary": "Find pet by ID",
|
||||
"operationId": "getPetsById",
|
||||
"tags": [ "foo", "bar"],
|
||||
"produces": [
|
||||
"application/json",
|
||||
"text/html"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"name": "petId",
|
||||
"in": "path",
|
||||
"description": "ID of pet that needs to be fetched",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "a pet to be returned",
|
||||
"schema": {"$ref": "Pet"}
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"schema": {"$ref": "ErrorModel"}
|
||||
}
|
||||
}
|
||||
}
|
||||
36
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json
generated
vendored
Normal file
36
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json
generated
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"description": "Returns a pet based on ID",
|
||||
"summary": "Find pet by ID",
|
||||
"operationId": "getPetsById",
|
||||
"produces": [
|
||||
"application/json",
|
||||
"text/html"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"name": "petId",
|
||||
"in": "path",
|
||||
"description": "ID of pet that needs to be fetched",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
{
|
||||
"name": "includeDetails",
|
||||
"in": "query",
|
||||
"description": "include details in response",
|
||||
"required": true,
|
||||
"type": "boolean"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "a pet to be returned",
|
||||
"schema": {"$ref": "Pet"}
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"schema": {"$ref": "ErrorModel"}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json
generated
vendored
Normal file
33
vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"description": "Returns a pet based on ID",
|
||||
"summary": "Find pet by ID",
|
||||
"operationId": "getPetsById",
|
||||
"produces": [
|
||||
"application/json",
|
||||
"text/html"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"name": "petId",
|
||||
"in": "path",
|
||||
"description": "ID of pet that needs to be fetched",
|
||||
"required": true,
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "fun",
|
||||
"schema": {"$ref": "Pet"}
|
||||
},
|
||||
"400": {
|
||||
"description": "Invalid ID supplied <= this is purely for documentation",
|
||||
"schema": {"$ref": "ErrorModel"}
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"schema": {"$ref": "ErrorModel"}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue