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