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

45 lines
1.7 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 SystemWritePoliciesEgpNameRequest
*/
export interface SystemWritePoliciesEgpNameRequest {
/**
* The enforcement level to apply to the policy.
* @type {string}
* @memberof SystemWritePoliciesEgpNameRequest
*/
enforcementLevel?: string;
/**
* The paths on which the policy should be applied.
* @type {Array<string>}
* @memberof SystemWritePoliciesEgpNameRequest
*/
paths?: Array<string>;
/**
* The rules of the policy.
* @type {string}
* @memberof SystemWritePoliciesEgpNameRequest
*/
policy?: string;
}
/**
* Check if a given object implements the SystemWritePoliciesEgpNameRequest interface.
*/
export declare function instanceOfSystemWritePoliciesEgpNameRequest(value: object): value is SystemWritePoliciesEgpNameRequest;
export declare function SystemWritePoliciesEgpNameRequestFromJSON(json: any): SystemWritePoliciesEgpNameRequest;
export declare function SystemWritePoliciesEgpNameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWritePoliciesEgpNameRequest;
export declare function SystemWritePoliciesEgpNameRequestToJSON(json: any): SystemWritePoliciesEgpNameRequest;
export declare function SystemWritePoliciesEgpNameRequestToJSONTyped(value?: SystemWritePoliciesEgpNameRequest | null, ignoreDiscriminator?: boolean): any;