import * as $dara from '@darabonba/typescript'; export declare class UpdateMediaLiveInputShrinkRequest extends $dara.Model { /** * @remarks * The ID of the input. * * This parameter is required. * * @example * SEGK5KA6KYKAWQQH */ inputId?: string; /** * @remarks * The input settings. An input can have up to two sources: primary and backup sources. * * This parameter is required. */ inputSettingsShrink?: string; /** * @remarks * The name of the input. Letters, digits, hyphens (-), and underscores (_) are supported. It can be up to 64 characters in length. * * This parameter is required. * * @example * myinput */ name?: string; /** * @remarks * The IDs of the security groups to be associated with the input. This parameter is required for PUSH inputs. * * @example * ["G6G4X5T4SZYPSTT5"] */ securityGroupIdsShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }