action conjur_enable_authenticator_instance { label: "Enables or disables authenticator service instances." description: "Allows you to either enable or disable a given authenticator\nservice instance.\n\nWhen you enable or disable an authenticator service instance via this\nendpoint, the status of the authenticator service instance is stored\nin the Conjur database. The enablement status of the authenticator\nservice instance may be overridden by setting the `CONJUR_AUTHENTICATORS`\nenvironment variable on the Conjur server; in the case where this\nenvironment variable is set, the database record of whether the\nauthenticator service instance is enabled will be ignored.\n\n**This endpoint is part of an early implementation of support for enabling Conjur\nauthenticators via the API, and is currently available at the Community\n(or early alpha) level. This endpoint is still subject to breaking\nchanges in the future.**\n" provider: conjur method: PATCH path: "/{authenticator}/{service_id}/{account}" encoding: form input: { type: "object" properties: { account: { type: "string" } authenticator: { type: "object" additionalProperties: true } } required: ["account", "authenticator"] additionalProperties: false } output: { type: "object" additionalProperties: true } }