/** * Assisted Migration Agent API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 CreateGroupRequest */ export interface CreateGroupRequest { /** * Group display name * @type {string} * @memberof CreateGroupRequest */ name: string; /** * Optional group description * @type {string} * @memberof CreateGroupRequest */ description?: string; /** * Filter expression (will be validated) * @type {string} * @memberof CreateGroupRequest */ filter: string; /** * Tags to apply to matching VMs (only alphanumeric, underscore, and dot allowed) * @type {Array} * @memberof CreateGroupRequest */ tags?: Array; } /** * Check if a given object implements the CreateGroupRequest interface. */ export declare function instanceOfCreateGroupRequest(value: object): value is CreateGroupRequest; export declare function CreateGroupRequestFromJSON(json: any): CreateGroupRequest; export declare function CreateGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGroupRequest; export declare function CreateGroupRequestToJSON(json: any): CreateGroupRequest; export declare function CreateGroupRequestToJSONTyped(value?: CreateGroupRequest | null, ignoreDiscriminator?: boolean): any;