/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { CloudWorkloadSecurityAgentRuleAction } from "./CloudWorkloadSecurityAgentRuleAction"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Update an existing Cloud Workload Security Agent rule */ export declare class CloudWorkloadSecurityAgentRuleUpdateAttributes { /** * The array of actions the rule can perform if triggered */ "actions"?: Array; /** * Constrain the rule to specific versions of the Datadog Agent */ "agentVersion"?: string; /** * The blocking policies that the rule belongs to */ "blocking"?: Array; /** * The description of the Agent rule */ "description"?: string; /** * The disabled policies that the rule belongs to */ "disabled"?: Array; /** * Whether the Agent rule is enabled */ "enabled"?: boolean; /** * The SECL expression of the Agent rule */ "expression"?: string; /** * The monitoring policies that the rule belongs to */ "monitoring"?: Array; /** * The ID of the policy where the Agent rule is saved */ "policyId"?: string; /** * The list of product tags associated with the rule */ "productTags"?: Array; /** * Whether the rule is silent. */ "silent"?: boolean; /** * A container for additional, undeclared properties. * This is a holder for any undeclared properties as specified with * the 'additionalProperties' keyword in the OAS document. */ "additionalProperties"?: { [key: string]: any; }; /** * @ignore */ "_unparsed"?: boolean; /** * @ignore */ static readonly attributeTypeMap: AttributeTypeMap; /** * @ignore */ static getAttributeTypeMap(): AttributeTypeMap; constructor(); }