mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
/**
|
|
* 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 AppRoleReadPoliciesResponse
|
|
*/
|
|
export interface AppRoleReadPoliciesResponse {
|
|
/**
|
|
* Use "token_policies" instead. If this and "token_policies" are both specified, only "token_policies" will be used.
|
|
* @type {Array<string>}
|
|
* @memberof AppRoleReadPoliciesResponse
|
|
* @deprecated
|
|
*/
|
|
policies?: Array<string>;
|
|
/**
|
|
* Comma-separated list of policies
|
|
* @type {Array<string>}
|
|
* @memberof AppRoleReadPoliciesResponse
|
|
*/
|
|
tokenPolicies?: Array<string>;
|
|
}
|
|
/**
|
|
* 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;
|