UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

87 lines (86 loc) 2.66 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 { ServiceDefinitionV2Dot1Contact } from "./ServiceDefinitionV2Dot1Contact"; import { ServiceDefinitionV2Dot1Integrations } from "./ServiceDefinitionV2Dot1Integrations"; import { ServiceDefinitionV2Dot1Link } from "./ServiceDefinitionV2Dot1Link"; import { ServiceDefinitionV2Dot1Version } from "./ServiceDefinitionV2Dot1Version"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Service definition v2.1 for providing service metadata and integrations. */ export declare class ServiceDefinitionV2Dot1 { /** * Identifier for a group of related services serving a product feature, which the service is a part of. */ "application"?: string; /** * A list of contacts related to the services. */ "contacts"?: Array<ServiceDefinitionV2Dot1Contact>; /** * Unique identifier of the service. Must be unique across all services and is used to match with a service in Datadog. */ "ddService": string; /** * A short description of the service. */ "description"?: string; /** * Extensions to v2.1 schema. */ "extensions"?: { [key: string]: any; }; /** * Third party integrations that Datadog supports. */ "integrations"?: ServiceDefinitionV2Dot1Integrations; /** * The current life cycle phase of the service. */ "lifecycle"?: string; /** * A list of links related to the services. */ "links"?: Array<ServiceDefinitionV2Dot1Link>; /** * Schema version being used. */ "schemaVersion": ServiceDefinitionV2Dot1Version; /** * A set of custom tags. */ "tags"?: Array<string>; /** * Team that owns the service. It is used to locate a team defined in Datadog Teams if it exists. */ "team"?: string; /** * Importance of the service. */ "tier"?: 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(); }