UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

73 lines (72 loc) 2.36 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 { DeploymentRuleResponseDataAttributesCreatedBy } from "./DeploymentRuleResponseDataAttributesCreatedBy"; import { DeploymentRuleResponseDataAttributesType } from "./DeploymentRuleResponseDataAttributesType"; import { DeploymentRuleResponseDataAttributesUpdatedBy } from "./DeploymentRuleResponseDataAttributesUpdatedBy"; import { DeploymentRulesOptions } from "./DeploymentRulesOptions"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Basic information about a deployment rule. */ export declare class DeploymentRuleResponseDataAttributes { /** * The timestamp when the deployment rule was created. */ "createdAt": Date; /** * Information about the user who created the deployment rule. */ "createdBy": DeploymentRuleResponseDataAttributesCreatedBy; /** * Whether this rule is run in dry-run mode. */ "dryRun": boolean; /** * The ID of the deployment gate. */ "gateId": string; /** * The name of the deployment rule. */ "name": string; /** * Options for deployment rule response representing either faulty deployment detection or monitor options. */ "options": DeploymentRulesOptions; /** * The type of the deployment rule. */ "type": DeploymentRuleResponseDataAttributesType; /** * The timestamp when the deployment rule was last updated. */ "updatedAt"?: Date; /** * Information about the user who updated the deployment rule. */ "updatedBy"?: DeploymentRuleResponseDataAttributesUpdatedBy; /** * 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(); }