Skip to content

Commit

Permalink
Fix Invalid_Type error
Browse files Browse the repository at this point in the history
  • Loading branch information
sparatala committed Oct 14, 2022
1 parent 7a03b75 commit 3216774
Showing 1 changed file with 37 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -915,10 +915,7 @@
"responses": {
"200": {
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/TrustedServiceByPassConfiguration"
}
"$ref": "#/definitions/TrustedServiceByPassConfigurationList"
},
"description": "OK"
},
Expand Down Expand Up @@ -975,10 +972,7 @@
"responses": {
"200": {
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/CheckDefaultStorageAccountStatus"
}
"$ref": "#/definitions/CheckDefaultStorageAccountStatusList"
},
"description": "OK"
},
Expand Down Expand Up @@ -1713,6 +1707,24 @@
],
"description": "The response to a list restorable dropped Sql pools request"
},
"TrustedServiceByPassConfigurationList": {
"type": "object",
"title": "Trusted Service By Pass Configuration properties",
"description": "List of Trusted Service By Pass Configuration",
"properties": {
"nextLink": {
"description": "Link to the next page of results",
"type": "string"
},
"value": {
"description": "Properties of the Check Default Storage Account Status.",
"type": "array",
"items": {
"$ref": "#/definitions/TrustedServiceByPassConfiguration"
}
}
}
},
"TrustedServiceByPassConfiguration": {
"type": "object",
"title": "Trusted Service By Pass Configuration properties",
Expand Down Expand Up @@ -1759,6 +1771,23 @@
}
}
},
"CheckDefaultStorageAccountStatusList": {
"description": "List of Workspace Check Default Storage Account Status.",
"type": "object",
"properties": {
"nextLink": {
"description": "Link to the next page of results",
"type": "string"
},
"value": {
"description": "Workspace Check Default Storage Account Status.",
"type": "array",
"items": {
"$ref": "#/definitions/CheckDefaultStorageAccountStatus"
}
}
}
},
"CheckDefaultStorageAccountStatus": {
"description": "Workspace Check Default Storage Account Status.",
"type": "object",
Expand Down

0 comments on commit 3216774

Please sign in to comment.