import * as $dara from '@darabonba/typescript'; export declare class ModifyInstanceClockOptionsRequest extends $dara.Model { /** * @remarks * The client token that is used to ensure the idempotence of the request. * * @example * 123e4567-e89b-12d3-a456-426655440000 */ clientToken?: string; /** * @remarks * Specifies whether to perform only a dry run. Valid values: * * * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values. Otherwise, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned. * * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed. * * Default value: false. * * @example * false */ dryRun?: boolean; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * i-bp67acfmxazb4ph**** */ instanceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * PTP status value. Valid values: * * * enabled * * disabled * * Default value: disabled. * * @example * enabled */ ptpStatus?: string; /** * @remarks * The region ID of the instance. 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; }); }