Skip to content

Commit

Permalink
Add required parameters (#22244)
Browse files Browse the repository at this point in the history
  • Loading branch information
senatol authored Jan 19, 2023
1 parent b0bf06c commit 48616ba
Showing 1 changed file with 25 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1470,6 +1470,10 @@
"PrivateEndpointConnections"
],
"operationId": "PrivateEndpointConnections_CreateOrUpdate",
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
},
"x-ms-examples": {
"Approve or reject a private endpoint connection with a given name": {
"$ref": "./examples/PrivateEndpointConnectionCreateOrUpdate.json"
Expand Down Expand Up @@ -2018,7 +2022,7 @@
"nodeCount": {
"type": "integer",
"format": "int64",
"description": "Worker node count of the cluster. When node count is 0, it represents a coordinator with the ability to create distributed tables on that node. Node count value can not be 1."
"description": "Worker node count of the cluster. When node count is 0, it represents a coordinator with the ability to create distributed tables on that node. Node count value can not be 1. Required for creation."
},
"nodeStorageQuotaInMb": {
"type": "integer",
Expand Down Expand Up @@ -2400,9 +2404,15 @@
"type": "string"
}
},
"required": [
"value"
],
"x-ms-client-flatten": true
}
}
},
"required": [
"properties"
]
},
"ServerConfiguration": {
"description": "Represents a configuration.",
Expand Down Expand Up @@ -2523,7 +2533,10 @@
"x-ms-client-flatten": true,
"description": "The properties of a role."
}
}
},
"required": [
"properties"
]
},
"RoleListResult": {
"properties": {
Expand Down Expand Up @@ -2602,7 +2615,7 @@
"type": "object"
},
"readOnly": true,
"x-ms-client-flatten": false,
"x-ms-client-flatten": true,
"description": "Additional descriptions for the operation."
}
}
Expand Down Expand Up @@ -2727,7 +2740,10 @@
"x-ms-client-flatten": true,
"description": "Properties of the private endpoint connection."
}
}
},
"required": [
"properties"
]
},
"PrivateEndpointConnectionListResult": {
"type": "object",
Expand Down Expand Up @@ -2813,7 +2829,10 @@
"$ref": "#/definitions/PrivateLinkServiceConnectionState",
"description": "Connection state of the private endpoint connection."
}
}
},
"required": [
"privateLinkServiceConnectionState"
]
},
"PrivateEndpointConnectionProperties": {
"description": "The properties in private endpoint connection",
Expand Down

0 comments on commit 48616ba

Please sign in to comment.