import * as $dara from '@darabonba/typescript'; export declare class DescribeNetworkInterfaceAttributeRequestTag extends $dara.Model { /** * @remarks * > This parameter is not publicly available. * * @example * TestKey */ key?: string; /** * @remarks * > This parameter is not publicly available. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeNetworkInterfaceAttributeRequest extends $dara.Model { /** * @remarks * The attribute to query. Valid values: * * `attachment`: The attachment details for member network interfaces associated with a trunk network interface. This is an invitation-only parameter. * * `connectionTrackingConfiguration`: The connection tracking configuration. * * @example * attachment */ attribute?: string; /** * @remarks * The ID of the elastic network interface. * * This parameter is required. * * @example * eni-bp67acfmxazb4p**** */ networkInterfaceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region where the elastic network interface resides. Call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to get the latest list of Alibaba Cloud regions. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * > This parameter is not publicly available. */ tag?: DescribeNetworkInterfaceAttributeRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }