@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
99 lines (98 loc) • 3.03 kB
TypeScript
/**
* 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 { ServiceDefinitionV2Dot2Contact } from "./ServiceDefinitionV2Dot2Contact";
import { ServiceDefinitionV2Dot2Integrations } from "./ServiceDefinitionV2Dot2Integrations";
import { ServiceDefinitionV2Dot2Link } from "./ServiceDefinitionV2Dot2Link";
import { ServiceDefinitionV2Dot2Version } from "./ServiceDefinitionV2Dot2Version";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Service definition v2.2 for providing service metadata and integrations.
*/
export declare class ServiceDefinitionV2Dot2 {
/**
* Identifier for a group of related services serving a product feature, which the service is a part of.
*/
"application"?: string;
/**
* A set of CI fingerprints.
*/
"ciPipelineFingerprints"?: Array<string>;
/**
* A list of contacts related to the services.
*/
"contacts"?: Array<ServiceDefinitionV2Dot2Contact>;
/**
* 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.2 schema.
*/
"extensions"?: {
[key: string]: any;
};
/**
* Third party integrations that Datadog supports.
*/
"integrations"?: ServiceDefinitionV2Dot2Integrations;
/**
* The service's programming language. Datadog recognizes the following languages: `dotnet`, `go`, `java`, `js`, `php`, `python`, `ruby`, and `c++`.
*/
"languages"?: Array<string>;
/**
* The current life cycle phase of the service.
*/
"lifecycle"?: string;
/**
* A list of links related to the services.
*/
"links"?: Array<ServiceDefinitionV2Dot2Link>;
/**
* Schema version being used.
*/
"schemaVersion": ServiceDefinitionV2Dot2Version;
/**
* 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;
/**
* The type of service.
*/
"type"?: 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();
}