Skip to content

Commit

Permalink
Addressing feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewc committed Sep 26, 2019
1 parent 3da06e8 commit 8a63900
Showing 1 changed file with 65 additions and 97 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3361,6 +3361,12 @@
},
"404": {
"description": "Function with a name of {functionName} does not exist."
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
}
},
Expand Down Expand Up @@ -3413,6 +3419,12 @@
},
"404": {
"description": "Function with a name of {functionName} does not exist."
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
}
}
Expand Down Expand Up @@ -20274,59 +20286,37 @@
"FunctionStatus": {
"description": "Function status.",
"type": "object",
"allOf": [
{
"$ref": "./CommonDefinitions.json#/definitions/ProxyOnlyResource"
}
],
"properties": {
"properties": {
"description": "FunctionStatus resource specific properties",
"properties": {
"errors": {
"description": "Collection of initialization errors for the function.",
"type": "array",
"items": {
"type": "string"
}
}
},
"x-ms-client-flatten": true
"errors": {
"description": "Collection of initialization errors for the function.",
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"HostKeys": {
"description": "Functions host level keys.",
"type": "object",
"allOf": [
{
"$ref": "./CommonDefinitions.json#/definitions/ProxyOnlyResource"
}
],
"properties": {
"properties": {
"description": "HostKeys resource specific properties",
"properties": {
"masterKey": {
"description": "Secret key.",
"type": "string"
},
"functionKeys": {
"description": "Host level function keys.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"systemKeys": {
"description": "System keys.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"x-ms-client-flatten": true
"masterKey": {
"description": "Secret key.",
"type": "string"
},
"functionKeys": {
"description": "Host level function keys.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"systemKeys": {
"description": "System keys.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
Expand Down Expand Up @@ -20473,40 +20463,29 @@
"HostStatus": {
"description": "Function host status.",
"type": "object",
"allOf": [
{
"$ref": "./CommonDefinitions.json#/definitions/ProxyOnlyResource"
}
],
"properties": {
"properties": {
"description": "HostStatus resource specific properties",
"properties": {
"id": {
"description": "The host id.",
"type": "string"
},
"state": {
"description": "The current host state.",
"type": "string"
},
"version": {
"description": "The Function runtime version.",
"type": "string"
},
"versionDetails": {
"description": "The Function runtime version details.",
"type": "string"
},
"errors": {
"description": "Collection of initialization errors for the host.",
"type": "array",
"items": {
"type": "string"
}
}
},
"x-ms-client-flatten": true
"id": {
"description": "The host id.",
"type": "string"
},
"state": {
"description": "The current host state.",
"type": "string"
},
"version": {
"description": "The Function runtime version.",
"type": "string"
},
"versionDetails": {
"description": "The Function runtime version details.",
"type": "string"
},
"errors": {
"description": "Collection of initialization errors for the host.",
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand All @@ -20527,25 +20506,14 @@
"KeyInfo": {
"description": "Function key info.",
"type": "object",
"allOf": [
{
"$ref": "./CommonDefinitions.json#/definitions/ProxyOnlyResource"
}
],
"properties": {
"properties": {
"description": "KeyInfo resource specific properties",
"properties": {
"name": {
"description": "Key name",
"type": "string"
},
"value": {
"description": "Key value",
"type": "string"
}
},
"x-ms-client-flatten": true
"name": {
"description": "Key name",
"type": "string"
},
"value": {
"description": "Key value",
"type": "string"
}
}
},
Expand Down

0 comments on commit 8a63900

Please sign in to comment.