/** * 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.20.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 AppRoleReadPoliciesResponse */ export interface AppRoleReadPoliciesResponse { /** * Use "token_policies" instead. If this and "token_policies" are both specified, only "token_policies" will be used. * @type {Array} * @memberof AppRoleReadPoliciesResponse * @deprecated */ policies?: Array; /** * Comma-separated list of policies * @type {Array} * @memberof AppRoleReadPoliciesResponse */ tokenPolicies?: Array; } /** * Check if a given object implements the AppRoleReadPoliciesResponse interface. */ export declare function instanceOfAppRoleReadPoliciesResponse(value: object): value is AppRoleReadPoliciesResponse; export declare function AppRoleReadPoliciesResponseFromJSON(json: any): AppRoleReadPoliciesResponse; export declare function AppRoleReadPoliciesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppRoleReadPoliciesResponse; export declare function AppRoleReadPoliciesResponseToJSON(json: any): AppRoleReadPoliciesResponse; export declare function AppRoleReadPoliciesResponseToJSONTyped(value?: AppRoleReadPoliciesResponse | null, ignoreDiscriminator?: boolean): any;