/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.21.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SystemWriteConfigControlGroupRequest */ export interface SystemWriteConfigControlGroupRequest { /** * The max TTL for a control group token. * @type {string} * @memberof SystemWriteConfigControlGroupRequest */ maxTtl?: string; } /** * Check if a given object implements the SystemWriteConfigControlGroupRequest interface. */ export declare function instanceOfSystemWriteConfigControlGroupRequest(value: object): value is SystemWriteConfigControlGroupRequest; export declare function SystemWriteConfigControlGroupRequestFromJSON(json: any): SystemWriteConfigControlGroupRequest; export declare function SystemWriteConfigControlGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteConfigControlGroupRequest; export declare function SystemWriteConfigControlGroupRequestToJSON(json: any): SystemWriteConfigControlGroupRequest; export declare function SystemWriteConfigControlGroupRequestToJSONTyped(value?: SystemWriteConfigControlGroupRequest | null, ignoreDiscriminator?: boolean): any;