action microcks_get_secrets { label: "Get Secrets" provider: microcks method: GET path: "/secrets" encoding: json input: { type: "object" properties: { page: { type: "integer" } size: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { 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: ["name", "description"] 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" } } } } }