import * as $dara from '@darabonba/typescript'; export declare class UntagResourcesRequestTags extends $dara.Model { /** * @remarks * The key of the tag. * * @example * TestKey */ key?: string; /** * @remarks * The value of the tag. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UntagResourcesRequest extends $dara.Model { /** * @remarks * Specifies whether to delete all tags. This parameter takes effect only when the TagKey.N parameter is not specified. Valid values: * * * true * * false * * Default value: false. * * @example * False */ all?: boolean; /** * @remarks * The resource IDs. You can specify a maximum of 50 resource IDs. * * This parameter is required. */ resourceId?: string[]; /** * @remarks * The type of the ARMS resources for which you want to modify tags. Valid values: * * * WEB: Browser Monitoring * * APPLICATION: Application Monitoring * * PROMETHEUS: Managed Service for Prometheus * * SYNTHETICTASK: Synthetic Monitoring * * ALERTRULE: Application Monitoring alert rule * * PROMETHEUSALERTRULE: Managed Service for Prometheus alert rule * * XTRACEAPP: Managed Service for OpenTelemetry * * This parameter is required. * * @example * PROMETHEUS */ resourceType?: string; /** * @remarks * The tag keys. You can specify a maximum of 20 tag keys. */ tagKey?: string[]; /** * @remarks * The list of tags. */ tags?: UntagResourcesRequestTags[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }