@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
43 lines • 1.14 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RUMApplicationCreateAttributes = void 0;
/**
* RUM application creation attributes.
*/
class RUMApplicationCreateAttributes {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return RUMApplicationCreateAttributes.attributeTypeMap;
}
}
exports.RUMApplicationCreateAttributes = RUMApplicationCreateAttributes;
/**
* @ignore
*/
RUMApplicationCreateAttributes.attributeTypeMap = {
name: {
baseName: "name",
type: "string",
required: true,
},
productAnalyticsRetentionState: {
baseName: "product_analytics_retention_state",
type: "RUMProductAnalyticsRetentionState",
},
rumEventProcessingState: {
baseName: "rum_event_processing_state",
type: "RUMEventProcessingState",
},
type: {
baseName: "type",
type: "string",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=RUMApplicationCreateAttributes.js.map
;