vault/ui/api-client/dist/esm/models/QueryTokenSelfCapabilitiesRequest.d.ts

52 lines
1.9 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 QueryTokenSelfCapabilitiesRequest
*/
export interface QueryTokenSelfCapabilitiesRequest {
/**
* Namespace for which capabilities are being queried.
* @type {string}
* @memberof QueryTokenSelfCapabilitiesRequest
*/
namespace?: string;
/**
* Use 'paths' instead.
* @type {Array<string>}
* @memberof QueryTokenSelfCapabilitiesRequest
* @deprecated
*/
path?: Array<string>;
/**
* Paths on which capabilities are being queried.
* @type {Array<string>}
* @memberof QueryTokenSelfCapabilitiesRequest
*/
paths?: Array<string>;
/**
* Token for which capabilities are being queried.
* @type {string}
* @memberof QueryTokenSelfCapabilitiesRequest
*/
token?: string;
}
/**
* Check if a given object implements the QueryTokenSelfCapabilitiesRequest interface.
*/
export declare function instanceOfQueryTokenSelfCapabilitiesRequest(value: object): value is QueryTokenSelfCapabilitiesRequest;
export declare function QueryTokenSelfCapabilitiesRequestFromJSON(json: any): QueryTokenSelfCapabilitiesRequest;
export declare function QueryTokenSelfCapabilitiesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryTokenSelfCapabilitiesRequest;
export declare function QueryTokenSelfCapabilitiesRequestToJSON(json: any): QueryTokenSelfCapabilitiesRequest;
export declare function QueryTokenSelfCapabilitiesRequestToJSONTyped(value?: QueryTokenSelfCapabilitiesRequest | null, ignoreDiscriminator?: boolean): any;