Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,73 +268,6 @@
"type": "string",
"description": "This is a mandatory field, and is the logical name of the certificate that the provisioning service will access by."
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why were these query parameters added to delete? They are not present on the PUT. Were these somehow supported on the service side?

{
"name": "certificate.name",
"in": "query",
"required": false,
"type": "string",
"description": "This is optional, and it is the Common Name of the certificate."
},
{
"name": "certificate.rawBytes",
"in": "query",
"required": false,
"type": "string",
"format": "byte",
"description": "Raw data within the certificate."
},
{
"name": "certificate.isVerified",
"in": "query",
"required": false,
"type": "boolean",
"description": "Indicates if certificate has been verified by owner of the private key."
},
{
"name": "certificate.purpose",
"in": "query",
"required": false,
"type": "string",
"description": "A description that mentions the purpose of the certificate.",
"enum": [
"clientAuthentication",
"serverAuthentication"
],
"x-ms-enum": {
"name": "CertificatePurpose",
"modelAsString": true
}
},
{
"name": "certificate.created",
"in": "query",
"description": "Time the certificate is created.",
"required": false,
"type": "string",
"format": "date-time"
},
{
"name": "certificate.lastUpdated",
"in": "query",
"required": false,
"type": "string",
"description": "Time the certificate is last updated.",
"format": "date-time"
},
{
"name": "certificate.hasPrivateKey",
"in": "query",
"required": false,
"type": "boolean",
"description": "Indicates if the certificate contains a private key."
},
{
"name": "certificate.nonce",
"in": "query",
"required": false,
"type": "string",
"description": "Random number generated to indicate Proof of Possession."
},
{
"$ref": "#/parameters/api-version"
}
Expand Down