Skip to content

Commit 74f6af4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 2ca4f3d of spec repo
1 parent 9c72a40 commit 74f6af4

16 files changed

+956
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.1",
7-
"regenerated": "2022-01-27 15:08:08.080469",
8-
"spec_repo_commit": "caffcc6"
7+
"regenerated": "2022-01-27 20:05:16.737575",
8+
"spec_repo_commit": "2ca4f3d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.1",
12-
"regenerated": "2022-01-27 15:08:08.094370",
13-
"spec_repo_commit": "caffcc6"
12+
"regenerated": "2022-01-27 20:05:16.749857",
13+
"spec_repo_commit": "2ca4f3d"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12428,6 +12428,12 @@ components:
1242812428
description: The hour for the usage.
1242912429
format: date-time
1243012430
type: string
12431+
org_name:
12432+
description: The organization name.
12433+
type: string
12434+
public_id:
12435+
description: The organization public ID.
12436+
type: string
1243112437
type: object
1243212438
UsageAnalyzedLogsResponse:
1243312439
description: A response containing the number of analyzed logs for each hour
@@ -13347,6 +13353,12 @@ components:
1334713353
of the given hour's month until the given hour.
1334813354
format: int64
1334913355
type: integer
13356+
org_name:
13357+
description: The organization name.
13358+
type: string
13359+
public_id:
13360+
description: The organization public ID.
13361+
type: string
1335013362
type: object
1335113363
UsageIncidentManagementResponse:
1335213364
description: Response containing the incident management usage for each hour
@@ -13369,6 +13381,12 @@ components:
1336913381
description: Contains the number of spans indexed.
1337013382
format: int64
1337113383
type: integer
13384+
org_name:
13385+
description: The organization name.
13386+
type: string
13387+
public_id:
13388+
description: The organization public ID.
13389+
type: string
1337213390
type: object
1337313391
UsageIndexedSpansResponse:
1337413392
description: A response containing indexed spans usage.
@@ -13392,6 +13410,12 @@ components:
1339213410
hour.
1339313411
format: int64
1339413412
type: integer
13413+
org_name:
13414+
description: The organization name.
13415+
type: string
13416+
public_id:
13417+
description: The organization public ID.
13418+
type: string
1339513419
type: object
1339613420
UsageIngestedSpansResponse:
1339713421
description: Response containing the ingested spans usage for each hour for
@@ -13414,6 +13438,12 @@ components:
1341413438
description: The total number of IoT devices during a given hour.
1341513439
format: int64
1341613440
type: integer
13441+
org_name:
13442+
description: The organization name.
13443+
type: string
13444+
public_id:
13445+
description: The organization public ID.
13446+
type: string
1341713447
type: object
1341813448
UsageIoTResponse:
1341913449
description: Response containing the IoT usage for each hour for a given organization.
@@ -13641,6 +13671,12 @@ components:
1364113671
description: The hour for the usage.
1364213672
format: date-time
1364313673
type: string
13674+
org_name:
13675+
description: The organization name.
13676+
type: string
13677+
public_id:
13678+
description: The organization public ID.
13679+
type: string
1364413680
type: object
1364513681
UsageProfilingResponse:
1364613682
description: Response containing the number of profiled hosts for each hour
@@ -13782,6 +13818,12 @@ components:
1378213818
description: The hour for the usage.
1378313819
format: date-time
1378413820
type: string
13821+
org_name:
13822+
description: The organization name.
13823+
type: string
13824+
public_id:
13825+
description: The organization public ID.
13826+
type: string
1378513827
snmp_devices:
1378613828
description: Contains the number of SNMP devices.
1378713829
format: int64

api/v1/datadog/docs/UsageAnalyzedLogsHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
| ---------------- | ------------------------ | ------------------------------------- | ---------- |
77
| **AnalyzedLogs** | Pointer to **int64** | Contains the number of analyzed logs. | [optional] |
88
| **Hour** | Pointer to **time.Time** | The hour for the usage. | [optional] |
9+
| **OrgName** | Pointer to **string** | The organization name. | [optional] |
10+
| **PublicId** | Pointer to **string** | The organization public ID. | [optional] |
911

1012
## Methods
1113

@@ -76,4 +78,54 @@ SetHour sets Hour field to given value.
7678

7779
HasHour returns a boolean if a field has been set.
7880

81+
### GetOrgName
82+
83+
`func (o *UsageAnalyzedLogsHour) GetOrgName() string`
84+
85+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
86+
87+
### GetOrgNameOk
88+
89+
`func (o *UsageAnalyzedLogsHour) GetOrgNameOk() (*string, bool)`
90+
91+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
92+
and a boolean to check if the value has been set.
93+
94+
### SetOrgName
95+
96+
`func (o *UsageAnalyzedLogsHour) SetOrgName(v string)`
97+
98+
SetOrgName sets OrgName field to given value.
99+
100+
### HasOrgName
101+
102+
`func (o *UsageAnalyzedLogsHour) HasOrgName() bool`
103+
104+
HasOrgName returns a boolean if a field has been set.
105+
106+
### GetPublicId
107+
108+
`func (o *UsageAnalyzedLogsHour) GetPublicId() string`
109+
110+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
111+
112+
### GetPublicIdOk
113+
114+
`func (o *UsageAnalyzedLogsHour) GetPublicIdOk() (*string, bool)`
115+
116+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
117+
and a boolean to check if the value has been set.
118+
119+
### SetPublicId
120+
121+
`func (o *UsageAnalyzedLogsHour) SetPublicId(v string)`
122+
123+
SetPublicId sets PublicId field to given value.
124+
125+
### HasPublicId
126+
127+
`func (o *UsageAnalyzedLogsHour) HasPublicId() bool`
128+
129+
HasPublicId returns a boolean if a field has been set.
130+
79131
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

api/v1/datadog/docs/UsageIncidentManagementHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
| ---------------------- | ------------------------ | ----------------------------------------------------------------------------------------------------------------- | ---------- |
77
| **Hour** | Pointer to **time.Time** | The hour for the usage. | [optional] |
88
| **MonthlyActiveUsers** | Pointer to **int64** | Contains the total number monthly active users from the start of the given hour's month until the given hour. | [optional] |
9+
| **OrgName** | Pointer to **string** | The organization name. | [optional] |
10+
| **PublicId** | Pointer to **string** | The organization public ID. | [optional] |
911

1012
## Methods
1113

@@ -76,4 +78,54 @@ SetMonthlyActiveUsers sets MonthlyActiveUsers field to given value.
7678

7779
HasMonthlyActiveUsers returns a boolean if a field has been set.
7880

81+
### GetOrgName
82+
83+
`func (o *UsageIncidentManagementHour) GetOrgName() string`
84+
85+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
86+
87+
### GetOrgNameOk
88+
89+
`func (o *UsageIncidentManagementHour) GetOrgNameOk() (*string, bool)`
90+
91+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
92+
and a boolean to check if the value has been set.
93+
94+
### SetOrgName
95+
96+
`func (o *UsageIncidentManagementHour) SetOrgName(v string)`
97+
98+
SetOrgName sets OrgName field to given value.
99+
100+
### HasOrgName
101+
102+
`func (o *UsageIncidentManagementHour) HasOrgName() bool`
103+
104+
HasOrgName returns a boolean if a field has been set.
105+
106+
### GetPublicId
107+
108+
`func (o *UsageIncidentManagementHour) GetPublicId() string`
109+
110+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
111+
112+
### GetPublicIdOk
113+
114+
`func (o *UsageIncidentManagementHour) GetPublicIdOk() (*string, bool)`
115+
116+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
117+
and a boolean to check if the value has been set.
118+
119+
### SetPublicId
120+
121+
`func (o *UsageIncidentManagementHour) SetPublicId(v string)`
122+
123+
SetPublicId sets PublicId field to given value.
124+
125+
### HasPublicId
126+
127+
`func (o *UsageIncidentManagementHour) HasPublicId() bool`
128+
129+
HasPublicId returns a boolean if a field has been set.
130+
79131
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

api/v1/datadog/docs/UsageIndexedSpansHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
| ---------------------- | ------------------------ | ------------------------------------- | ---------- |
77
| **Hour** | Pointer to **time.Time** | The hour for the usage. | [optional] |
88
| **IndexedEventsCount** | Pointer to **int64** | Contains the number of spans indexed. | [optional] |
9+
| **OrgName** | Pointer to **string** | The organization name. | [optional] |
10+
| **PublicId** | Pointer to **string** | The organization public ID. | [optional] |
911

1012
## Methods
1113

@@ -76,4 +78,54 @@ SetIndexedEventsCount sets IndexedEventsCount field to given value.
7678

7779
HasIndexedEventsCount returns a boolean if a field has been set.
7880

81+
### GetOrgName
82+
83+
`func (o *UsageIndexedSpansHour) GetOrgName() string`
84+
85+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
86+
87+
### GetOrgNameOk
88+
89+
`func (o *UsageIndexedSpansHour) GetOrgNameOk() (*string, bool)`
90+
91+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
92+
and a boolean to check if the value has been set.
93+
94+
### SetOrgName
95+
96+
`func (o *UsageIndexedSpansHour) SetOrgName(v string)`
97+
98+
SetOrgName sets OrgName field to given value.
99+
100+
### HasOrgName
101+
102+
`func (o *UsageIndexedSpansHour) HasOrgName() bool`
103+
104+
HasOrgName returns a boolean if a field has been set.
105+
106+
### GetPublicId
107+
108+
`func (o *UsageIndexedSpansHour) GetPublicId() string`
109+
110+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
111+
112+
### GetPublicIdOk
113+
114+
`func (o *UsageIndexedSpansHour) GetPublicIdOk() (*string, bool)`
115+
116+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
117+
and a boolean to check if the value has been set.
118+
119+
### SetPublicId
120+
121+
`func (o *UsageIndexedSpansHour) SetPublicId(v string)`
122+
123+
SetPublicId sets PublicId field to given value.
124+
125+
### HasPublicId
126+
127+
`func (o *UsageIndexedSpansHour) HasPublicId() bool`
128+
129+
HasPublicId returns a boolean if a field has been set.
130+
79131
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

api/v1/datadog/docs/UsageIngestedSpansHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
| ----------------------- | ------------------------ | ---------------------------------------------------------------- | ---------- |
77
| **Hour** | Pointer to **time.Time** | The hour for the usage. | [optional] |
88
| **IngestedEventsBytes** | Pointer to **int64** | Contains the total number of bytes ingested during a given hour. | [optional] |
9+
| **OrgName** | Pointer to **string** | The organization name. | [optional] |
10+
| **PublicId** | Pointer to **string** | The organization public ID. | [optional] |
911

1012
## Methods
1113

@@ -76,4 +78,54 @@ SetIngestedEventsBytes sets IngestedEventsBytes field to given value.
7678

7779
HasIngestedEventsBytes returns a boolean if a field has been set.
7880

81+
### GetOrgName
82+
83+
`func (o *UsageIngestedSpansHour) GetOrgName() string`
84+
85+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
86+
87+
### GetOrgNameOk
88+
89+
`func (o *UsageIngestedSpansHour) GetOrgNameOk() (*string, bool)`
90+
91+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
92+
and a boolean to check if the value has been set.
93+
94+
### SetOrgName
95+
96+
`func (o *UsageIngestedSpansHour) SetOrgName(v string)`
97+
98+
SetOrgName sets OrgName field to given value.
99+
100+
### HasOrgName
101+
102+
`func (o *UsageIngestedSpansHour) HasOrgName() bool`
103+
104+
HasOrgName returns a boolean if a field has been set.
105+
106+
### GetPublicId
107+
108+
`func (o *UsageIngestedSpansHour) GetPublicId() string`
109+
110+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
111+
112+
### GetPublicIdOk
113+
114+
`func (o *UsageIngestedSpansHour) GetPublicIdOk() (*string, bool)`
115+
116+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
117+
and a boolean to check if the value has been set.
118+
119+
### SetPublicId
120+
121+
`func (o *UsageIngestedSpansHour) SetPublicId(v string)`
122+
123+
SetPublicId sets PublicId field to given value.
124+
125+
### HasPublicId
126+
127+
`func (o *UsageIngestedSpansHour) HasPublicId() bool`
128+
129+
HasPublicId returns a boolean if a field has been set.
130+
79131
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)