/** * 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 UpdateGroupRequest */ export interface UpdateGroupRequest { /** * Group display name * @type {string} * @memberof UpdateGroupRequest */ name?: string; /** * Optional group description * @type {string} * @memberof UpdateGroupRequest */ description?: string; /** * Filter expression (will be validated) * @type {string} * @memberof UpdateGroupRequest */ filter?: string; /** * Tags to apply to matching VMs (only alphanumeric, underscore, and dot allowed) * @type {Array} * @memberof UpdateGroupRequest */ tags?: Array; } /** * Check if a given object implements the UpdateGroupRequest interface. */ export declare function instanceOfUpdateGroupRequest(value: object): value is UpdateGroupRequest; export declare function UpdateGroupRequestFromJSON(json: any): UpdateGroupRequest; export declare function UpdateGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateGroupRequest; export declare function UpdateGroupRequestToJSON(json: any): UpdateGroupRequest; export declare function UpdateGroupRequestToJSONTyped(value?: UpdateGroupRequest | null, ignoreDiscriminator?: boolean): any;