@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
30 lines • 838 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomAttributeTypeData = void 0;
/**
* Type-specific configuration for the custom attribute. For SELECT-type attributes, this contains the list of allowed options.
*/
class CustomAttributeTypeData {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return CustomAttributeTypeData.attributeTypeMap;
}
}
exports.CustomAttributeTypeData = CustomAttributeTypeData;
/**
* @ignore
*/
CustomAttributeTypeData.attributeTypeMap = {
options: {
baseName: "options",
type: "Array<CustomAttributeSelectOption>",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=CustomAttributeTypeData.js.map