@datadog/datadog-api-client 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/packages/datadog-api-client-common/configuration.js +3 -0
- package/dist/packages/datadog-api-client-common/configuration.js.map +1 -1
- package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.d.ts +34 -7
- package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.js +34 -7
- package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.js.map +1 -1
- package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.d.ts +15 -5
- package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.js +9 -1
- package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/apis/EventsApi.d.ts +97 -0
- package/dist/packages/datadog-api-client-v2/apis/EventsApi.js +493 -0
- package/dist/packages/datadog-api-client-v2/apis/EventsApi.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/apis/MetricsApi.d.ts +2 -0
- package/dist/packages/datadog-api-client-v2/apis/MetricsApi.js +2 -0
- package/dist/packages/datadog-api-client-v2/apis/MetricsApi.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.d.ts +76 -8
- package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.js +170 -20
- package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/index.d.ts +26 -1
- package/dist/packages/datadog-api-client-v2/index.js +51 -8
- package/dist/packages/datadog-api-client-v2/index.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/models/Event.d.ts +40 -0
- package/dist/packages/datadog-api-client-v2/models/Event.js +45 -0
- package/dist/packages/datadog-api-client-v2/models/Event.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventAttributes.d.ts +110 -0
- package/dist/packages/datadog-api-client-v2/models/EventAttributes.js +103 -0
- package/dist/packages/datadog-api-client-v2/models/EventAttributes.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventPriority.d.ts +8 -0
- package/dist/packages/datadog-api-client-v2/models/EventPriority.js +11 -0
- package/dist/packages/datadog-api-client-v2/models/EventPriority.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponse.d.ts +38 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponse.js +36 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponse.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.d.ts +37 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.js +37 -0
- package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventStatusType.d.ts +14 -0
- package/dist/packages/datadog-api-client-v2/models/EventStatusType.js +17 -0
- package/dist/packages/datadog-api-client-v2/models/EventStatusType.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventType.d.ts +7 -0
- package/dist/packages/datadog-api-client-v2/models/EventType.js +10 -0
- package/dist/packages/datadog-api-client-v2/models/EventType.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListRequest.d.ts +45 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListRequest.js +40 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListRequest.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponse.d.ts +39 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponse.js +36 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponse.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.d.ts +29 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.js +33 -0
- package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.d.ts +36 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.js +41 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.d.ts +33 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.js +39 -0
- package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.d.ts +32 -0
- package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.js +38 -0
- package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.d.ts +43 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.js +41 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.d.ts +29 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.js +33 -0
- package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsSort.d.ts +8 -0
- package/dist/packages/datadog-api-client-v2/models/EventsSort.js +11 -0
- package/dist/packages/datadog-api-client-v2/models/EventsSort.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/EventsWarning.d.ts +36 -0
- package/dist/packages/datadog-api-client-v2/models/EventsWarning.js +41 -0
- package/dist/packages/datadog-api-client-v2/models/EventsWarning.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsage.d.ts +38 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsage.js +36 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsage.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.d.ts +49 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.js +49 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.d.ts +32 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.js +38 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.d.ts +29 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.js +28 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.d.ts +28 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.js +33 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.d.ts +34 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.js +32 -0
- package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/MetricResource.d.ts +2 -2
- package/dist/packages/datadog-api-client-v2/models/MonitorType.d.ts +68 -0
- package/dist/packages/datadog-api-client-v2/models/MonitorType.js +73 -0
- package/dist/packages/datadog-api-client-v2/models/MonitorType.js.map +1 -0
- package/dist/packages/datadog-api-client-v2/models/ObjectSerializer.js +53 -0
- package/dist/packages/datadog-api-client-v2/models/ObjectSerializer.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.d.ts +4 -0
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.js +4 -0
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.js.map +1 -1
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.d.ts +4 -0
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.js +4 -0
- package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { EventsResponseMetadataPage } from "./EventsResponseMetadataPage";
|
|
7
|
+
import { EventsWarning } from "./EventsWarning";
|
|
8
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
9
|
+
/**
|
|
10
|
+
* The metadata associated with a request.
|
|
11
|
+
*/
|
|
12
|
+
export declare class EventsResponseMetadata {
|
|
13
|
+
/**
|
|
14
|
+
* The time elapsed in milliseconds.
|
|
15
|
+
*/
|
|
16
|
+
"elapsed"?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Pagination attributes.
|
|
19
|
+
*/
|
|
20
|
+
"page"?: EventsResponseMetadataPage;
|
|
21
|
+
/**
|
|
22
|
+
* The identifier of the request.
|
|
23
|
+
*/
|
|
24
|
+
"requestId"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* A list of warnings (non-fatal errors) encountered. Partial results might be returned if
|
|
27
|
+
* warnings are present in the response.
|
|
28
|
+
*/
|
|
29
|
+
"warnings"?: Array<EventsWarning>;
|
|
30
|
+
/**
|
|
31
|
+
* @ignore
|
|
32
|
+
*/
|
|
33
|
+
"unparsedObject"?: any;
|
|
34
|
+
/**
|
|
35
|
+
* @ignore
|
|
36
|
+
*/
|
|
37
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
38
|
+
/**
|
|
39
|
+
* @ignore
|
|
40
|
+
*/
|
|
41
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
42
|
+
constructor();
|
|
43
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventsResponseMetadata = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* The metadata associated with a request.
|
|
6
|
+
*/
|
|
7
|
+
var EventsResponseMetadata = /** @class */ (function () {
|
|
8
|
+
function EventsResponseMetadata() {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
EventsResponseMetadata.getAttributeTypeMap = function () {
|
|
14
|
+
return EventsResponseMetadata.attributeTypeMap;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
EventsResponseMetadata.attributeTypeMap = {
|
|
20
|
+
elapsed: {
|
|
21
|
+
baseName: "elapsed",
|
|
22
|
+
type: "number",
|
|
23
|
+
format: "int64",
|
|
24
|
+
},
|
|
25
|
+
page: {
|
|
26
|
+
baseName: "page",
|
|
27
|
+
type: "EventsResponseMetadataPage",
|
|
28
|
+
},
|
|
29
|
+
requestId: {
|
|
30
|
+
baseName: "request_id",
|
|
31
|
+
type: "string",
|
|
32
|
+
},
|
|
33
|
+
warnings: {
|
|
34
|
+
baseName: "warnings",
|
|
35
|
+
type: "Array<EventsWarning>",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
return EventsResponseMetadata;
|
|
39
|
+
}());
|
|
40
|
+
exports.EventsResponseMetadata = EventsResponseMetadata;
|
|
41
|
+
//# sourceMappingURL=EventsResponseMetadata.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventsResponseMetadata.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/EventsResponseMetadata.ts"],"names":[],"mappings":";;;AAUA;;GAEG;AACH;IAsDE;IAAsB,CAAC;IAPvB;;OAEG;IACI,0CAAmB,GAA1B;QACE,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACjD,CAAC;IA5BD;;OAEG;IACa,uCAAgB,GAAqB;QACnD,OAAO,EAAE;YACP,QAAQ,EAAE,SAAS;YACnB,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,OAAO;SAChB;QACD,IAAI,EAAE;YACJ,QAAQ,EAAE,MAAM;YAChB,IAAI,EAAE,4BAA4B;SACnC;QACD,SAAS,EAAE;YACT,QAAQ,EAAE,YAAY;YACtB,IAAI,EAAE,QAAQ;SACf;QACD,QAAQ,EAAE;YACR,QAAQ,EAAE,UAAU;YACpB,IAAI,EAAE,sBAAsB;SAC7B;KACF,CAAC;IAUJ,6BAAC;CAAA,AAvDD,IAuDC;AAvDY,wDAAsB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
7
|
+
/**
|
|
8
|
+
* Pagination attributes.
|
|
9
|
+
*/
|
|
10
|
+
export declare class EventsResponseMetadataPage {
|
|
11
|
+
/**
|
|
12
|
+
* The cursor to use to get the next results, if any. To make the next request, use the same
|
|
13
|
+
* parameters with the addition of the `page[cursor]`.
|
|
14
|
+
*/
|
|
15
|
+
"after"?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
"unparsedObject"?: any;
|
|
20
|
+
/**
|
|
21
|
+
* @ignore
|
|
22
|
+
*/
|
|
23
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
24
|
+
/**
|
|
25
|
+
* @ignore
|
|
26
|
+
*/
|
|
27
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
28
|
+
constructor();
|
|
29
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
4
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
5
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.EventsResponseMetadataPage = void 0;
|
|
9
|
+
/**
|
|
10
|
+
* Pagination attributes.
|
|
11
|
+
*/
|
|
12
|
+
var EventsResponseMetadataPage = /** @class */ (function () {
|
|
13
|
+
function EventsResponseMetadataPage() {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @ignore
|
|
17
|
+
*/
|
|
18
|
+
EventsResponseMetadataPage.getAttributeTypeMap = function () {
|
|
19
|
+
return EventsResponseMetadataPage.attributeTypeMap;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
EventsResponseMetadataPage.attributeTypeMap = {
|
|
25
|
+
after: {
|
|
26
|
+
baseName: "after",
|
|
27
|
+
type: "string",
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
return EventsResponseMetadataPage;
|
|
31
|
+
}());
|
|
32
|
+
exports.EventsResponseMetadataPage = EventsResponseMetadataPage;
|
|
33
|
+
//# sourceMappingURL=EventsResponseMetadataPage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventsResponseMetadataPage.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/EventsResponseMetadataPage.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAIH;;GAEG;AACH;IA6BE;IAAsB,CAAC;IAPvB;;OAEG;IACI,8CAAmB,GAA1B;QACE,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACrD,CAAC;IAfD;;OAEG;IACa,2CAAgB,GAAqB;QACnD,KAAK,EAAE;YACL,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,QAAQ;SACf;KACF,CAAC;IAUJ,iCAAC;CAAA,AA9BD,IA8BC;AA9BY,gEAA0B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
export declare type EventsSort = typeof TIMESTAMP_ASCENDING | typeof TIMESTAMP_DESCENDING;
|
|
7
|
+
export declare const TIMESTAMP_ASCENDING = "timestamp";
|
|
8
|
+
export declare const TIMESTAMP_DESCENDING = "-timestamp";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
4
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
5
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.TIMESTAMP_DESCENDING = exports.TIMESTAMP_ASCENDING = void 0;
|
|
9
|
+
exports.TIMESTAMP_ASCENDING = "timestamp";
|
|
10
|
+
exports.TIMESTAMP_DESCENDING = "-timestamp";
|
|
11
|
+
//# sourceMappingURL=EventsSort.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventsSort.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/EventsSort.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAKU,QAAA,mBAAmB,GAAG,WAAW,CAAC;AAClC,QAAA,oBAAoB,GAAG,YAAY,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
7
|
+
/**
|
|
8
|
+
* A warning message indicating something is wrong with the query.
|
|
9
|
+
*/
|
|
10
|
+
export declare class EventsWarning {
|
|
11
|
+
/**
|
|
12
|
+
* A unique code for this type of warning.
|
|
13
|
+
*/
|
|
14
|
+
"code"?: string;
|
|
15
|
+
/**
|
|
16
|
+
* A detailed explanation of this specific warning.
|
|
17
|
+
*/
|
|
18
|
+
"detail"?: string;
|
|
19
|
+
/**
|
|
20
|
+
* A short human-readable summary of the warning.
|
|
21
|
+
*/
|
|
22
|
+
"title"?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @ignore
|
|
25
|
+
*/
|
|
26
|
+
"unparsedObject"?: any;
|
|
27
|
+
/**
|
|
28
|
+
* @ignore
|
|
29
|
+
*/
|
|
30
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
31
|
+
/**
|
|
32
|
+
* @ignore
|
|
33
|
+
*/
|
|
34
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
35
|
+
constructor();
|
|
36
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
4
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
5
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.EventsWarning = void 0;
|
|
9
|
+
/**
|
|
10
|
+
* A warning message indicating something is wrong with the query.
|
|
11
|
+
*/
|
|
12
|
+
var EventsWarning = /** @class */ (function () {
|
|
13
|
+
function EventsWarning() {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @ignore
|
|
17
|
+
*/
|
|
18
|
+
EventsWarning.getAttributeTypeMap = function () {
|
|
19
|
+
return EventsWarning.attributeTypeMap;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
EventsWarning.attributeTypeMap = {
|
|
25
|
+
code: {
|
|
26
|
+
baseName: "code",
|
|
27
|
+
type: "string",
|
|
28
|
+
},
|
|
29
|
+
detail: {
|
|
30
|
+
baseName: "detail",
|
|
31
|
+
type: "string",
|
|
32
|
+
},
|
|
33
|
+
title: {
|
|
34
|
+
baseName: "title",
|
|
35
|
+
type: "string",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
return EventsWarning;
|
|
39
|
+
}());
|
|
40
|
+
exports.EventsWarning = EventsWarning;
|
|
41
|
+
//# sourceMappingURL=EventsWarning.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventsWarning.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/EventsWarning.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAIH;;GAEG;AACH;IA4CE;IAAsB,CAAC;IAPvB;;OAEG;IACI,iCAAmB,GAA1B;QACE,OAAO,aAAa,CAAC,gBAAgB,CAAC;IACxC,CAAC;IAvBD;;OAEG;IACa,8BAAgB,GAAqB;QACnD,IAAI,EAAE;YACJ,QAAQ,EAAE,MAAM;YAChB,IAAI,EAAE,QAAQ;SACf;QACD,MAAM,EAAE;YACN,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,QAAQ;SACf;QACD,KAAK,EAAE;YACL,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,QAAQ;SACf;KACF,CAAC;IAUJ,oBAAC;CAAA,AA7CD,IA6CC;AA7CY,sCAAa"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { HourlyUsageAttributes } from "./HourlyUsageAttributes";
|
|
7
|
+
import { UsageTimeSeriesType } from "./UsageTimeSeriesType";
|
|
8
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
9
|
+
/**
|
|
10
|
+
* Hourly usage for a product family for an org.
|
|
11
|
+
*/
|
|
12
|
+
export declare class HourlyUsage {
|
|
13
|
+
/**
|
|
14
|
+
* Attributes of hourly usage for a product family for an org for a time period.
|
|
15
|
+
*/
|
|
16
|
+
"attributes"?: HourlyUsageAttributes;
|
|
17
|
+
/**
|
|
18
|
+
* Unique ID of the response.
|
|
19
|
+
*/
|
|
20
|
+
"id"?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Type of usage data.
|
|
23
|
+
*/
|
|
24
|
+
"type"?: UsageTimeSeriesType;
|
|
25
|
+
/**
|
|
26
|
+
* @ignore
|
|
27
|
+
*/
|
|
28
|
+
"unparsedObject"?: any;
|
|
29
|
+
/**
|
|
30
|
+
* @ignore
|
|
31
|
+
*/
|
|
32
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
33
|
+
/**
|
|
34
|
+
* @ignore
|
|
35
|
+
*/
|
|
36
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
37
|
+
constructor();
|
|
38
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HourlyUsage = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Hourly usage for a product family for an org.
|
|
6
|
+
*/
|
|
7
|
+
var HourlyUsage = /** @class */ (function () {
|
|
8
|
+
function HourlyUsage() {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
HourlyUsage.getAttributeTypeMap = function () {
|
|
14
|
+
return HourlyUsage.attributeTypeMap;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
HourlyUsage.attributeTypeMap = {
|
|
20
|
+
attributes: {
|
|
21
|
+
baseName: "attributes",
|
|
22
|
+
type: "HourlyUsageAttributes",
|
|
23
|
+
},
|
|
24
|
+
id: {
|
|
25
|
+
baseName: "id",
|
|
26
|
+
type: "string",
|
|
27
|
+
},
|
|
28
|
+
type: {
|
|
29
|
+
baseName: "type",
|
|
30
|
+
type: "UsageTimeSeriesType",
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
return HourlyUsage;
|
|
34
|
+
}());
|
|
35
|
+
exports.HourlyUsage = HourlyUsage;
|
|
36
|
+
//# sourceMappingURL=HourlyUsage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyUsage.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/HourlyUsage.ts"],"names":[],"mappings":";;;AAUA;;GAEG;AACH;IA4CE;IAAsB,CAAC;IAPvB;;OAEG;IACI,+BAAmB,GAA1B;QACE,OAAO,WAAW,CAAC,gBAAgB,CAAC;IACtC,CAAC;IAvBD;;OAEG;IACa,4BAAgB,GAAqB;QACnD,UAAU,EAAE;YACV,QAAQ,EAAE,YAAY;YACtB,IAAI,EAAE,uBAAuB;SAC9B;QACD,EAAE,EAAE;YACF,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,QAAQ;SACf;QACD,IAAI,EAAE;YACJ,QAAQ,EAAE,MAAM;YAChB,IAAI,EAAE,qBAAqB;SAC5B;KACF,CAAC;IAUJ,kBAAC;CAAA,AA7CD,IA6CC;AA7CY,kCAAW"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { HourlyUsageMeasurement } from "./HourlyUsageMeasurement";
|
|
7
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
8
|
+
/**
|
|
9
|
+
* Attributes of hourly usage for a product family for an org for a time period.
|
|
10
|
+
*/
|
|
11
|
+
export declare class HourlyUsageAttributes {
|
|
12
|
+
/**
|
|
13
|
+
* List of the measured usage values for the product family for the org for the time period.
|
|
14
|
+
*/
|
|
15
|
+
"measurements"?: Array<HourlyUsageMeasurement>;
|
|
16
|
+
/**
|
|
17
|
+
* The organization name.
|
|
18
|
+
*/
|
|
19
|
+
"orgName"?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The product for which usage is being reported.
|
|
22
|
+
*/
|
|
23
|
+
"productFamily"?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The organization public ID.
|
|
26
|
+
*/
|
|
27
|
+
"publicId"?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The region of the Datadog instance that the organization belongs to.
|
|
30
|
+
*/
|
|
31
|
+
"region"?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Datetime in ISO-8601 format, UTC. The hour for the usage.
|
|
34
|
+
*/
|
|
35
|
+
"timestamp"?: Date;
|
|
36
|
+
/**
|
|
37
|
+
* @ignore
|
|
38
|
+
*/
|
|
39
|
+
"unparsedObject"?: any;
|
|
40
|
+
/**
|
|
41
|
+
* @ignore
|
|
42
|
+
*/
|
|
43
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
44
|
+
/**
|
|
45
|
+
* @ignore
|
|
46
|
+
*/
|
|
47
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
48
|
+
constructor();
|
|
49
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HourlyUsageAttributes = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Attributes of hourly usage for a product family for an org for a time period.
|
|
6
|
+
*/
|
|
7
|
+
var HourlyUsageAttributes = /** @class */ (function () {
|
|
8
|
+
function HourlyUsageAttributes() {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
HourlyUsageAttributes.getAttributeTypeMap = function () {
|
|
14
|
+
return HourlyUsageAttributes.attributeTypeMap;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
HourlyUsageAttributes.attributeTypeMap = {
|
|
20
|
+
measurements: {
|
|
21
|
+
baseName: "measurements",
|
|
22
|
+
type: "Array<HourlyUsageMeasurement>",
|
|
23
|
+
},
|
|
24
|
+
orgName: {
|
|
25
|
+
baseName: "org_name",
|
|
26
|
+
type: "string",
|
|
27
|
+
},
|
|
28
|
+
productFamily: {
|
|
29
|
+
baseName: "product_family",
|
|
30
|
+
type: "string",
|
|
31
|
+
},
|
|
32
|
+
publicId: {
|
|
33
|
+
baseName: "public_id",
|
|
34
|
+
type: "string",
|
|
35
|
+
},
|
|
36
|
+
region: {
|
|
37
|
+
baseName: "region",
|
|
38
|
+
type: "string",
|
|
39
|
+
},
|
|
40
|
+
timestamp: {
|
|
41
|
+
baseName: "timestamp",
|
|
42
|
+
type: "Date",
|
|
43
|
+
format: "date-time",
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
return HourlyUsageAttributes;
|
|
47
|
+
}());
|
|
48
|
+
exports.HourlyUsageAttributes = HourlyUsageAttributes;
|
|
49
|
+
//# sourceMappingURL=HourlyUsageAttributes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyUsageAttributes.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/HourlyUsageAttributes.ts"],"names":[],"mappings":";;;AASA;;GAEG;AACH;IAqEE;IAAsB,CAAC;IAPvB;;OAEG;IACI,yCAAmB,GAA1B;QACE,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAChD,CAAC;IApCD;;OAEG;IACa,sCAAgB,GAAqB;QACnD,YAAY,EAAE;YACZ,QAAQ,EAAE,cAAc;YACxB,IAAI,EAAE,+BAA+B;SACtC;QACD,OAAO,EAAE;YACP,QAAQ,EAAE,UAAU;YACpB,IAAI,EAAE,QAAQ;SACf;QACD,aAAa,EAAE;YACb,QAAQ,EAAE,gBAAgB;YAC1B,IAAI,EAAE,QAAQ;SACf;QACD,QAAQ,EAAE;YACR,QAAQ,EAAE,WAAW;YACrB,IAAI,EAAE,QAAQ;SACf;QACD,MAAM,EAAE;YACN,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,QAAQ;SACf;QACD,SAAS,EAAE;YACT,QAAQ,EAAE,WAAW;YACrB,IAAI,EAAE,MAAM;YACZ,MAAM,EAAE,WAAW;SACpB;KACF,CAAC;IAUJ,4BAAC;CAAA,AAtED,IAsEC;AAtEY,sDAAqB"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
7
|
+
/**
|
|
8
|
+
* Usage amount for a given usage type.
|
|
9
|
+
*/
|
|
10
|
+
export declare class HourlyUsageMeasurement {
|
|
11
|
+
/**
|
|
12
|
+
* Type of usage.
|
|
13
|
+
*/
|
|
14
|
+
"usageType"?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Contains the number measured for the given usage_type during the hour.
|
|
17
|
+
*/
|
|
18
|
+
"value"?: number;
|
|
19
|
+
/**
|
|
20
|
+
* @ignore
|
|
21
|
+
*/
|
|
22
|
+
"unparsedObject"?: any;
|
|
23
|
+
/**
|
|
24
|
+
* @ignore
|
|
25
|
+
*/
|
|
26
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
27
|
+
/**
|
|
28
|
+
* @ignore
|
|
29
|
+
*/
|
|
30
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
31
|
+
constructor();
|
|
32
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
4
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
5
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.HourlyUsageMeasurement = void 0;
|
|
9
|
+
/**
|
|
10
|
+
* Usage amount for a given usage type.
|
|
11
|
+
*/
|
|
12
|
+
var HourlyUsageMeasurement = /** @class */ (function () {
|
|
13
|
+
function HourlyUsageMeasurement() {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @ignore
|
|
17
|
+
*/
|
|
18
|
+
HourlyUsageMeasurement.getAttributeTypeMap = function () {
|
|
19
|
+
return HourlyUsageMeasurement.attributeTypeMap;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
HourlyUsageMeasurement.attributeTypeMap = {
|
|
25
|
+
usageType: {
|
|
26
|
+
baseName: "usage_type",
|
|
27
|
+
type: "string",
|
|
28
|
+
},
|
|
29
|
+
value: {
|
|
30
|
+
baseName: "value",
|
|
31
|
+
type: "number",
|
|
32
|
+
format: "int64",
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
return HourlyUsageMeasurement;
|
|
36
|
+
}());
|
|
37
|
+
exports.HourlyUsageMeasurement = HourlyUsageMeasurement;
|
|
38
|
+
//# sourceMappingURL=HourlyUsageMeasurement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyUsageMeasurement.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/HourlyUsageMeasurement.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAIH;;GAEG;AACH;IAqCE;IAAsB,CAAC;IAPvB;;OAEG;IACI,0CAAmB,GAA1B;QACE,OAAO,sBAAsB,CAAC,gBAAgB,CAAC;IACjD,CAAC;IApBD;;OAEG;IACa,uCAAgB,GAAqB;QACnD,SAAS,EAAE;YACT,QAAQ,EAAE,YAAY;YACtB,IAAI,EAAE,QAAQ;SACf;QACD,KAAK,EAAE;YACL,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,OAAO;SAChB;KACF,CAAC;IAUJ,6BAAC;CAAA,AAtCD,IAsCC;AAtCY,wDAAsB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { HourlyUsagePagination } from "./HourlyUsagePagination";
|
|
7
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
8
|
+
/**
|
|
9
|
+
* The object containing document metadata.
|
|
10
|
+
*/
|
|
11
|
+
export declare class HourlyUsageMetadata {
|
|
12
|
+
/**
|
|
13
|
+
* The metadata for the current pagination.
|
|
14
|
+
*/
|
|
15
|
+
"pagination"?: HourlyUsagePagination;
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
"unparsedObject"?: any;
|
|
20
|
+
/**
|
|
21
|
+
* @ignore
|
|
22
|
+
*/
|
|
23
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
24
|
+
/**
|
|
25
|
+
* @ignore
|
|
26
|
+
*/
|
|
27
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
28
|
+
constructor();
|
|
29
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HourlyUsageMetadata = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* The object containing document metadata.
|
|
6
|
+
*/
|
|
7
|
+
var HourlyUsageMetadata = /** @class */ (function () {
|
|
8
|
+
function HourlyUsageMetadata() {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
HourlyUsageMetadata.getAttributeTypeMap = function () {
|
|
14
|
+
return HourlyUsageMetadata.attributeTypeMap;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @ignore
|
|
18
|
+
*/
|
|
19
|
+
HourlyUsageMetadata.attributeTypeMap = {
|
|
20
|
+
pagination: {
|
|
21
|
+
baseName: "pagination",
|
|
22
|
+
type: "HourlyUsagePagination",
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
return HourlyUsageMetadata;
|
|
26
|
+
}());
|
|
27
|
+
exports.HourlyUsageMetadata = HourlyUsageMetadata;
|
|
28
|
+
//# sourceMappingURL=HourlyUsageMetadata.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyUsageMetadata.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/HourlyUsageMetadata.ts"],"names":[],"mappings":";;;AASA;;GAEG;AACH;IA4BE;IAAsB,CAAC;IAPvB;;OAEG;IACI,uCAAmB,GAA1B;QACE,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;IAfD;;OAEG;IACa,oCAAgB,GAAqB;QACnD,UAAU,EAAE;YACV,QAAQ,EAAE,YAAY;YACtB,IAAI,EAAE,uBAAuB;SAC9B;KACF,CAAC;IAUJ,0BAAC;CAAA,AA7BD,IA6BC;AA7BY,kDAAmB"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
3
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
4
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
5
|
+
*/
|
|
6
|
+
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
|
|
7
|
+
/**
|
|
8
|
+
* The metadata for the current pagination.
|
|
9
|
+
*/
|
|
10
|
+
export declare class HourlyUsagePagination {
|
|
11
|
+
/**
|
|
12
|
+
* The cursor to get the next results (if any). To make the next request, use the same parameters and add `next_record_id`.
|
|
13
|
+
*/
|
|
14
|
+
"nextRecordId"?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @ignore
|
|
17
|
+
*/
|
|
18
|
+
"unparsedObject"?: any;
|
|
19
|
+
/**
|
|
20
|
+
* @ignore
|
|
21
|
+
*/
|
|
22
|
+
static readonly attributeTypeMap: AttributeTypeMap;
|
|
23
|
+
/**
|
|
24
|
+
* @ignore
|
|
25
|
+
*/
|
|
26
|
+
static getAttributeTypeMap(): AttributeTypeMap;
|
|
27
|
+
constructor();
|
|
28
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
4
|
+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
5
|
+
* Copyright 2020-Present Datadog, Inc.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.HourlyUsagePagination = void 0;
|
|
9
|
+
/**
|
|
10
|
+
* The metadata for the current pagination.
|
|
11
|
+
*/
|
|
12
|
+
var HourlyUsagePagination = /** @class */ (function () {
|
|
13
|
+
function HourlyUsagePagination() {
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @ignore
|
|
17
|
+
*/
|
|
18
|
+
HourlyUsagePagination.getAttributeTypeMap = function () {
|
|
19
|
+
return HourlyUsagePagination.attributeTypeMap;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
HourlyUsagePagination.attributeTypeMap = {
|
|
25
|
+
nextRecordId: {
|
|
26
|
+
baseName: "next_record_id",
|
|
27
|
+
type: "string",
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
return HourlyUsagePagination;
|
|
31
|
+
}());
|
|
32
|
+
exports.HourlyUsagePagination = HourlyUsagePagination;
|
|
33
|
+
//# sourceMappingURL=HourlyUsagePagination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HourlyUsagePagination.js","sourceRoot":"","sources":["../../../../packages/datadog-api-client-v2/models/HourlyUsagePagination.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAIH;;GAEG;AACH;IA4BE;IAAsB,CAAC;IAPvB;;OAEG;IACI,yCAAmB,GAA1B;QACE,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAChD,CAAC;IAfD;;OAEG;IACa,sCAAgB,GAAqB;QACnD,YAAY,EAAE;YACZ,QAAQ,EAAE,gBAAgB;YAC1B,IAAI,EAAE,QAAQ;SACf;KACF,CAAC;IAUJ,4BAAC;CAAA,AA7BD,IA6BC;AA7BY,sDAAqB"}
|