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

33 lines
1.2 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 LdapWriteGroupRequest
*/
export interface LdapWriteGroupRequest {
/**
* Comma-separated list of policies associated to the group.
* @type {Array<string>}
* @memberof LdapWriteGroupRequest
*/
policies?: Array<string>;
}
/**
* Check if a given object implements the LdapWriteGroupRequest interface.
*/
export declare function instanceOfLdapWriteGroupRequest(value: object): value is LdapWriteGroupRequest;
export declare function LdapWriteGroupRequestFromJSON(json: any): LdapWriteGroupRequest;
export declare function LdapWriteGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LdapWriteGroupRequest;
export declare function LdapWriteGroupRequestToJSON(json: any): LdapWriteGroupRequest;
export declare function LdapWriteGroupRequestToJSONTyped(value?: LdapWriteGroupRequest | null, ignoreDiscriminator?: boolean): any;