/** * 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 RabbitMqWriteRoleRequest */ export interface RabbitMqWriteRoleRequest { /** * Comma-separated list of tags for this role. * @type {string} * @memberof RabbitMqWriteRoleRequest */ tags?: string; /** * A nested map of virtual hosts and exchanges to topic permissions. * @type {string} * @memberof RabbitMqWriteRoleRequest */ vhostTopics?: string; /** * A map of virtual hosts to permissions. * @type {string} * @memberof RabbitMqWriteRoleRequest */ vhosts?: string; } /** * Check if a given object implements the RabbitMqWriteRoleRequest interface. */ export declare function instanceOfRabbitMqWriteRoleRequest(value: object): value is RabbitMqWriteRoleRequest; export declare function RabbitMqWriteRoleRequestFromJSON(json: any): RabbitMqWriteRoleRequest; export declare function RabbitMqWriteRoleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RabbitMqWriteRoleRequest; export declare function RabbitMqWriteRoleRequestToJSON(json: any): RabbitMqWriteRoleRequest; export declare function RabbitMqWriteRoleRequestToJSONTyped(value?: RabbitMqWriteRoleRequest | null, ignoreDiscriminator?: boolean): any;