Rm swagger.json from reposerver (#318)

This commit is contained in:
Andrew Merenbach 2018-06-25 13:54:09 -07:00 committed by GitHub
parent ab00aef75e
commit 63348fa903
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,136 +0,0 @@
{
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"schemes": [
"http",
"https"
],
"swagger": "2.0",
"info": {
"description": "Description of all APIs",
"title": "Consolidate Services",
"version": "version not set"
},
"paths": {},
"definitions": {
"repositoryFileList": {
"type": "object",
"title": "FileList returns the contents of the repo of a ListDir request",
"properties": {
"items": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"repositoryGetFileResponse": {
"type": "object",
"title": "GetFileResponse returns the contents of the file of a GetFile request",
"properties": {
"data": {
"type": "string",
"format": "byte"
}
}
},
"repositoryManifestResponse": {
"type": "object",
"properties": {
"manifests": {
"type": "array",
"items": {
"type": "string"
}
},
"namespace": {
"type": "string"
},
"params": {
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1ComponentParameter"
}
},
"revision": {
"type": "string"
},
"server": {
"type": "string"
}
}
},
"v1Time": {
"description": "Time is a wrapper around time.Time which supports correct\nmarshaling to YAML and JSON. Wrappers are provided for many\nof the factory methods that the time package offers.\n\n+protobuf.options.marshal=false\n+protobuf.as=Timestamp\n+protobuf.options.(gogoproto.goproto_stringer)=false",
"type": "object",
"properties": {
"nanos": {
"description": "Non-negative fractions of a second at nanosecond resolution. Negative\nsecond values with fractions must still have non-negative nanos values\nthat count forward in time. Must be from 0 to 999,999,999\ninclusive. This field may be limited in precision depending on context.",
"type": "integer",
"format": "int32"
},
"seconds": {
"description": "Represents seconds of UTC time since Unix epoch\n1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n9999-12-31T23:59:59Z inclusive.",
"type": "string",
"format": "int64"
}
}
},
"v1alpha1ComponentParameter": {
"type": "object",
"title": "ComponentParameter contains information about component parameter value",
"properties": {
"component": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"v1alpha1ConnectionState": {
"type": "object",
"title": "ConnectionState contains information about remote resource connection state",
"properties": {
"attemptedAt": {
"$ref": "#/definitions/v1Time"
},
"message": {
"type": "string"
},
"status": {
"type": "string"
}
}
},
"v1alpha1Repository": {
"type": "object",
"title": "Repository is a Git repository holding application configurations",
"properties": {
"connectionState": {
"$ref": "#/definitions/v1alpha1ConnectionState"
},
"password": {
"type": "string"
},
"repo": {
"type": "string"
},
"sshPrivateKey": {
"type": "string"
},
"username": {
"type": "string"
}
}
}
}
}