jack-kafka-management-sdk
Version:
RHOAS Kafka Management SDK
31 lines (30 loc) • 787 B
TypeScript
/**
* Kafka Management API
* Kafka Management API is a REST API to manage Kafka instances
*
* The version of the OpenAPI document: 1.15.0
* Contact: rhosak-support@redhat.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Schema for the request to create a service account
* @export
* @interface ServiceAccountRequest
*/
export interface ServiceAccountRequest {
/**
* The name of the service account
* @type {string}
* @memberof ServiceAccountRequest
*/
'name': string;
/**
* A description for the service account
* @type {string}
* @memberof ServiceAccountRequest
*/
'description'?: string;
}