import * as $dara from '@darabonba/typescript'; export declare class GetMediaLiveInputSecurityGroupResponseBodySecurityGroup extends $dara.Model { /** * @remarks * The time when the security group was created. It follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2024-06-13T08:31:56Z */ createTime?: string; /** * @remarks * The IDs of the inputs associated with the security group. */ inputIds?: string[]; /** * @remarks * The name of the security group. * * @example * mysg */ name?: string; /** * @remarks * The ID of the security group. * * @example * SEGK5KA6KYKAWQQH */ securityGroupId?: string; /** * @remarks * The security group rules. */ whitelistRules?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetMediaLiveInputSecurityGroupResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * ****63E8B7C7-4812-46AD-0FA56029AC86**** */ requestId?: string; /** * @remarks * The security group information. */ securityGroup?: GetMediaLiveInputSecurityGroupResponseBodySecurityGroup; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }