action microcks_get_secret { label: "Get Secret" description: "Retrieve a Secret" provider: microcks method: GET path: "/secrets/{id}" encoding: json output: { description: "A Secret allows grouping informations on how to access a restricted resource such as a repsoitory URL. Secrets are typically used by ImpoortJobs." required: ["description", "name"] properties: { caCertPem: { type: "string" } description: { type: "string" description: "Description of this Secret" } id: { type: "string" description: "Unique identifier of Secret" } name: { type: "string" description: "Unique distinct name of Secret" } password: { type: "string" } token: { type: "string" } tokenHeader: { type: "string" } username: { type: "string" } } } }