UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

70 lines (69 loc) 1.98 kB
/** * 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<CloudWorkloadSecurityAgentRuleAction>; /** * The blocking policies that the rule belongs to */ "blocking"?: Array<string>; /** * The description of the Agent rule */ "description"?: string; /** * The disabled policies that the rule belongs to */ "disabled"?: Array<string>; /** * 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<string>; /** * The ID of the policy where the Agent rule is saved */ "policyId"?: string; /** * The list of product tags associated with the rule */ "productTags"?: Array<string>; /** * 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(); }