import * as $dara from '@darabonba/typescript'; export declare class ModifyDeploymentSetAttributeRequest extends $dara.Model { /** * @remarks * The ID of the deployment set. * * This parameter is required. * * @example * ds-bp1frxuzdg87zh4p**** */ deploymentSetId?: string; /** * @remarks * The new name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-). * * @example * DeploymentSetTestName */ deploymentSetName?: string; /** * @remarks * The new description of the deployment set. The description must be 2 to 256 characters in length and cannot start with http:// or https://. * * @example * TestDescription */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the deployment set. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }