action adobe_get_truststore_info { label: "getTruststoreInfo" provider: adobe method: GET path: "/libs/granite/security/truststore.json" encoding: json output: { type: "object" properties: { aliases: { type: "array" items: { type: "object" properties: { alias: { type: "string" description: "Truststore alias name" } entryType: { type: "string" } issuer: { type: "string" description: "e.g. \"CN=Admin\"" } notAfter: { type: "string" description: "e.g. \"Sun Jun 30 23:59:50 AEST 2019\"" } notBefore: { type: "string" description: "e.g. \"Sun Jul 01 12:00:00 AEST 2018\"" } serialNumber: { type: "integer" description: "18165099476682912368" } subject: { type: "string" description: "e.g. \"CN=localhost\"" } } } } exists: { type: "boolean" description: "False if truststore don't exist" } } } }