action microcks_create_secret { label: "Create a new Secret" provider: microcks method: POST path: "/secrets" encoding: json input: { 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" } } } 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" } } } }