@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
36 lines • 871 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreateEnvironmentData = void 0;
/**
* Data for creating a new environment.
*/
class CreateEnvironmentData {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return CreateEnvironmentData.attributeTypeMap;
}
}
exports.CreateEnvironmentData = CreateEnvironmentData;
/**
* @ignore
*/
CreateEnvironmentData.attributeTypeMap = {
attributes: {
baseName: "attributes",
type: "CreateEnvironmentAttributes",
required: true,
},
type: {
baseName: "type",
type: "CreateEnvironmentDataType",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=CreateEnvironmentData.js.map