import * as $dara from '@darabonba/typescript'; export declare class ModifyPolicyInstanceRequest extends $dara.Model { /** * @remarks * The governance action of the rule. Valid values: * * - `deny`: Blocks non-compliant deployments. * - `warn`: Generates an alert. * * @example * deny */ action?: string; /** * @remarks * The instance ID of the policy rule. * * @example * allowed-repos-cbhhb */ instanceName?: string; /** * @remarks * The namespaces to which the policy applies. If this parameter is empty, the policy applies to all namespaces. */ namespaces?: string[]; /** * @remarks * The configuration parameters of the current rule instance. For more information about parameter settings rules, see [Container security policy rules](https://help.aliyun.com/document_detail/359819.html). * * @example * "restrictedNamespaces": [ "test" ] */ parameters?: { [key: string]: any; }; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }