Skip to content

Commit

Permalink
use aws beta env
Browse files Browse the repository at this point in the history
we want to retire public-tomcat on dashi/dashi2


Former-commit-id: be659cb51dc1096f185a0938593ce1870eda21ea
  • Loading branch information
inodb committed May 8, 2019
1 parent d2541f4 commit fc711a4
Show file tree
Hide file tree
Showing 6 changed files with 512 additions and 10 deletions.
2 changes: 1 addition & 1 deletion env/beta.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export CBIOPORTAL_URL="http://test.cbioportal.org/beta"
export CBIOPORTAL_URL="https://beta.cbioportal.org"
export GENOME_NEXUS_URL="https://www.genomenexus.org"
2 changes: 1 addition & 1 deletion env/release-3.0.0.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export CBIOPORTAL_URL="http://test.cbioportal.org/beta"
export CBIOPORTAL_URL="https://beta.cbioportal.org"
export GENOME_NEXUS_URL="https://www.genomenexus.org"
145 changes: 145 additions & 0 deletions src/shared/api/generated/CBioPortalAPIInternal-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"name": "Cosmic Counts",
"description": " "
},
{
"name": "Data Access Tokens",
"description": " "
},
{
"name": "Expression Enrichments",
"description": " "
Expand Down Expand Up @@ -458,6 +462,127 @@
}
}
},
"/data-access-tokens": {
"get": {
"tags": [
"Data Access Tokens"
],
"summary": "getAllDataAccessTokens",
"operationId": "getAllDataAccessTokensUsingGET",
"produces": [
"*/*"
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/DataAccessToken"
}
}
}
}
},
"post": {
"tags": [
"Data Access Tokens"
],
"summary": "createDataAccessToken",
"operationId": "createDataAccessTokenUsingPOST",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "allowRevocationOfOtherTokens",
"in": "query",
"description": "allowRevocationOfOtherTokens",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/DataAccessToken"
}
}
}
},
"delete": {
"tags": [
"Data Access Tokens"
],
"summary": "revokeAllDataAccessTokens",
"operationId": "revokeAllDataAccessTokensUsingDELETE",
"produces": [
"*/*"
],
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/data-access-tokens/{token}": {
"get": {
"tags": [
"Data Access Tokens"
],
"summary": "getDataAccessToken",
"operationId": "getDataAccessTokenUsingGET",
"produces": [
"*/*"
],
"parameters": [
{
"name": "token",
"in": "path",
"description": "token",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/DataAccessToken"
}
}
}
},
"delete": {
"tags": [
"Data Access Tokens"
],
"summary": "revokeDataAccessToken",
"operationId": "revokeDataAccessTokenUsingDELETE",
"produces": [
"*/*"
],
"parameters": [
{
"name": "token",
"in": "path",
"description": "token",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/filtered-samples/fetch": {
"post": {
"tags": [
Expand Down Expand Up @@ -1880,6 +2005,26 @@
},
"title": "CountSummary"
},
"DataAccessToken": {
"type": "object",
"properties": {
"creation": {
"type": "string",
"format": "date-time"
},
"expiration": {
"type": "string",
"format": "date-time"
},
"token": {
"type": "string"
},
"username": {
"type": "string"
}
},
"title": "DataAccessToken"
},
"DataBin": {
"type": "object",
"properties": {
Expand Down
Loading

0 comments on commit fc711a4

Please sign in to comment.