action windows_certificate_get { label: "Certificate_Get" description: "Gets information about the specified certificate." provider: windows method: GET path: "/certificates(thumbprintAlgorithm={thumbprintAlgorithm},thumbprint={thumbprint})" encoding: json input: { type: "object" properties: { "$select": { type: "string" } "api-version": { type: "string" } "client-request-id": { type: "string" } "ocp-date": { type: "string" } "return-client-request-id": { type: "string" } thumbprint: { type: "string" } thumbprintAlgorithm: { type: "string" } timeout: { type: "string" } } required: ["api-version", "thumbprint", "thumbprintAlgorithm"] additionalProperties: false } output: { type: "object" additionalProperties: true } }