Skip to content

Commit

Permalink
Upstream API specs
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Sep 4, 2015
1 parent 586b6fc commit 3f44f84
Show file tree
Hide file tree
Showing 5 changed files with 154 additions and 3 deletions.
2 changes: 1 addition & 1 deletion googleapis.com/bigquery/v2/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@
}
],
"post": {
"description": "Requests that a job be cancelled. This call will return immediately, and the client will need to poll for the job status to see if the cancel completed successfully.",
"description": "Requests that a job be cancelled. This call will return immediately, and the client will need to poll for the job status to see if the cancel completed successfully. Cancelled jobs may still incur costs.",
"operationId": "bigquery.jobs.cancel",
"parameters": [
{
Expand Down
23 changes: 23 additions & 0 deletions googleapis.com/dataflow/v1b3/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,21 @@
},
"type": "object"
},
"ConcatPosition": {
"description": "A position that encapsulates an inner position and an index for the inner position. A ConcatPosition can be used by a reader of a source that encapsulates a set of other sources.",
"properties": {
"index": {
"description": "Index of the inner source.",
"format": "int32",
"type": "integer"
},
"position": {
"$ref": "#/definitions/Position",
"description": "Position within the inner source."
}
},
"type": "object"
},
"CustomSourceLocation": {
"description": "Identifies the location of a custom souce.",
"properties": {
Expand Down Expand Up @@ -268,6 +283,10 @@
"name": {
"description": "The user-provided name of this output.",
"type": "string"
},
"systemName": {
"description": "System-defined name of this output. Unique across the workflow.",
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -785,6 +804,10 @@
"format": "int64",
"type": "string"
},
"concatPosition": {
"$ref": "#/definitions/ConcatPosition",
"description": "CloudPosition is a concat position."
},
"end": {
"description": "Position is past all other positions. Also useful for the end position of an unbounded range.",
"type": "boolean"
Expand Down
13 changes: 13 additions & 0 deletions googleapis.com/identitytoolkit/v3/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,19 @@
"description": "The RP local ID if it's already been mapped to the IdP account identified by the federated ID.",
"type": "string"
},
"oauthAccessToken": {
"description": "The OAuth2 access token.",
"type": "string"
},
"oauthAuthorizationCode": {
"description": "The OAuth2 authorization code.",
"type": "string"
},
"oauthExpireIn": {
"description": "The lifetime in seconds of the OAuth2 access token.",
"format": "int32",
"type": "integer"
},
"photoUrl": {
"description": "The URI of the user's photo at IdP",
"type": "string"
Expand Down
117 changes: 116 additions & 1 deletion googleapis.com/replicapoolupdater/v1beta1/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
},
"kind": {
"default": "replicapoolupdater#operation",
"description": "[Output Only] Type of the resource. Always kind#operation for Operation resources.",
"description": "[Output Only] Type of the resource. Always replicapoolupdater#operation for Operation resources.",
"type": "string"
},
"name": {
Expand Down Expand Up @@ -212,6 +212,36 @@
},
"type": "object"
},
"OperationList": {
"description": "Contains a list of Operation resources.",
"properties": {
"id": {
"description": "[Output Only] Unique identifier for the resource; defined by the server.",
"type": "string"
},
"items": {
"description": "[Output Only] The Operation resources.",
"items": {
"$ref": "#/definitions/Operation"
},
"type": "array"
},
"kind": {
"default": "replicapoolupdater#operationList",
"description": "[Output Only] Type of resource. Always replicapoolupdater#operations for Operations resource.",
"type": "string"
},
"nextPageToken": {
"description": "[Output Only] A token used to continue a truncate.",
"type": "string"
},
"selfLink": {
"description": "[Output Only] Server-defined URL for this resource.",
"type": "string"
}
},
"type": "object"
},
"RollingUpdate": {
"description": "The following represents a resource describing a single update (rollout) of a group of instances to the given template.",
"properties": {
Expand Down Expand Up @@ -433,6 +463,91 @@
}
},
"paths": {
"/{project}/zones/{zone}/operations": {
"get": {
"description": "Retrieves the list of Operation resources contained within the specified zone.",
"operationId": "replicapoolupdater.zoneOperations.list",
"parameters": [
{
"description": "Name of the project scoping this request.",
"in": "path",
"name": "project",
"required": true,
"type": "string"
},
{
"description": "Name of the zone scoping this request.",
"in": "path",
"name": "zone",
"required": true,
"type": "string"
},
{
"description": "Optional. Filter expression for filtering listed resources.",
"in": "query",
"name": "filter",
"type": "string"
},
{
"default": 500,
"description": "Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.",
"in": "query",
"maximum": 500,
"minimum": 0,
"name": "maxResults",
"type": "integer"
},
{
"description": "Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.",
"in": "query",
"name": "pageToken",
"type": "string"
}
],
"responses": {
"200": {
"description": "Successful response",
"schema": {
"$ref": "#/definitions/OperationList"
}
}
},
"security": [
{
"Oauth2": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/replicapool"
]
}
],
"tags": [
"zoneOperations"
]
},
"parameters": [
{
"$ref": "#/parameters/alt"
},
{
"$ref": "#/parameters/fields"
},
{
"$ref": "#/parameters/key"
},
{
"$ref": "#/parameters/oauth_token"
},
{
"$ref": "#/parameters/prettyPrint"
},
{
"$ref": "#/parameters/quotaUser"
},
{
"$ref": "#/parameters/userIp"
}
]
},
"/{project}/zones/{zone}/operations/{operation}": {
"get": {
"description": "Retrieves the specified zone-specific operation resource.",
Expand Down
2 changes: 1 addition & 1 deletion prd-prsn.com/1.0.0/swagger.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"basePath": "/",
"basePath": "/api",
"definitions": {
"DeliveryBean": {
"properties": {
Expand Down

0 comments on commit 3f44f84

Please sign in to comment.