import * as $dara from '@darabonba/typescript'; export declare class DescribePolicyInstancesStatusResponseBodyPolicyInstances extends $dara.Model { /** * @remarks * The policy type. For more information about supported policy types and their descriptions, see [Container security policy rule library](https://help.aliyun.com/document_detail/359819.html). * * @example * compliance */ policyCategory?: string; /** * @remarks * The policy description. * * @example * Restricts use of the cluster-admin role. */ policyDescription?: string; /** * @remarks * The number of deployed policy instances. If this field is empty, no policy instances of this type are deployed. * * @example * 1 */ policyInstancesCount?: number; /** * @remarks * The policy name. * * @example * ACKRestrictRoleBindings */ policyName?: string; /** * @remarks * The governance level of the policy. * * @example * medium */ policySeverity?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePolicyInstancesStatusResponseBody extends $dara.Model { /** * @remarks * The number of policy instances deployed in the cluster at different governance levels. * * @example * { "high": 11, "medium": 1 } */ instancesSeverityCount?: { [key: string]: any; }; /** * @remarks * The list of policy instance counts for different policy types. */ policyInstances?: DescribePolicyInstancesStatusResponseBodyPolicyInstances[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }