import * as $dara from '@darabonba/typescript'; export declare class DescribeInstanceMonitorDataRequest extends $dara.Model { /** * @remarks * The end of the time range to query. Specify the time in the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If the value of seconds (`ss`) is not `00`, the time is rounded up to the next minute. * * This parameter is required. * * @example * 2014-10-30T08:00:00Z */ endTime?: string; /** * @remarks * The instance ID. * * This parameter is required. * * @example * i-bp1a36962lrhj4ab**** */ instanceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The interval at which to retrieve monitoring data. Unit: seconds. Valid values: * * * 60 * * 600 * * 3600 * * Default value: 60. * * @example * 60 */ period?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The beginning of the time range to query. Specify the time in the [ISO 8601](https://help.aliyun.com/document_detail/25696.html) standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If the value of seconds (`ss`) is not `00`, the time is rounded up to the next minute. * * This parameter is required. * * @example * 2014-10-29T23:00:00Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }