Skip to content

Commit

Permalink
accessToken->secrets secret
Browse files Browse the repository at this point in the history
  • Loading branch information
forteddyt committed Sep 22, 2021
1 parent 148fc83 commit dfceddd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"200": {
"headers": {},
"body": {
"accessToken": "string",
"secrets": {
"accessToken": "string"
},
"tokenType": "string",
"expiryTimeUtc": 1,
"refreshAfterTimeUtc": 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7164,11 +7164,6 @@
"description": "Service Token",
"type": "object",
"properties": {
"accessToken": {
"description": "Access token for endpoint authentication.",
"type": "string",
"x-nullable": true
},
"expiryTimeUtc": {
"format": "int64",
"description": "Access token expiry time (UTC).",
Expand All @@ -7181,6 +7176,12 @@
"default": 0,
"type": "integer"
},
"secrets": {
"description": "Endpoint authentication secrets.",
"$ref": "#/definitions/EndpointAuthTokenSecrets",
"x-ms-secret": true,
"x-nullable": true
},
"tokenType": {
"description": "Access token type.",
"type": "string",
Expand All @@ -7189,6 +7190,17 @@
},
"additionalProperties": false
},
"EndpointAuthTokenSecrets": {
"type": "object",
"properties": {
"accessToken": {
"description": "Access token for endpoint authentication.",
"type": "string",
"x-nullable": true
}
},
"additionalProperties": false
},
"EndpointComputeType": {
"description": "Enum to determine endpoint compute type.",
"enum": [
Expand Down

0 comments on commit dfceddd

Please sign in to comment.