Skip to content

Commit a4886c6

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 90bc255 of spec repo (#1264)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 6ecb136 commit a4886c6

10 files changed

+548
-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.5.1.dev2",
7-
"regenerated": "2021-12-21 22:02:03.734218",
8-
"spec_repo_commit": "d1a4fc3"
7+
"regenerated": "2021-12-21 22:39:07.384267",
8+
"spec_repo_commit": "90bc255"
99
},
1010
"v2": {
1111
"apigentools_version": "1.5.1.dev2",
12-
"regenerated": "2021-12-21 22:02:03.753283",
13-
"spec_repo_commit": "d1a4fc3"
12+
"regenerated": "2021-12-21 22:39:07.403861",
13+
"spec_repo_commit": "90bc255"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12284,6 +12284,12 @@ components:
1228412284
hour.
1228512285
format: int64
1228612286
type: integer
12287+
org_name:
12288+
description: The organization name.
12289+
type: string
12290+
public_id:
12291+
description: The organization public ID.
12292+
type: string
1228712293
type: object
1228812294
UsageAuditLogsResponse:
1228912295
description: Response containing the audit logs usage for each hour for a given
@@ -12452,6 +12458,12 @@ components:
1245212458
description: The hour for the usage.
1245312459
format: date-time
1245412460
type: string
12461+
org_name:
12462+
description: The organization name.
12463+
type: string
12464+
public_id:
12465+
description: The organization public ID.
12466+
type: string
1245512467
type: object
1245612468
UsageCWSResponse:
1245712469
description: Response containing the Cloud Workload Security usage for each
@@ -12481,6 +12493,12 @@ components:
1248112493
description: The hour for the usage.
1248212494
format: date-time
1248312495
type: string
12496+
org_name:
12497+
description: The organization name.
12498+
type: string
12499+
public_id:
12500+
description: The organization public ID.
12501+
type: string
1248412502
type: object
1248512503
UsageCloudSecurityPostureManagementResponse:
1248612504
description: The response containing the Cloud Security Posture Management usage
@@ -12570,6 +12588,12 @@ components:
1257012588
description: The hour for the usage.
1257112589
format: date-time
1257212590
type: string
12591+
org_name:
12592+
description: The organization name.
12593+
type: string
12594+
public_id:
12595+
description: The organization public ID.
12596+
type: string
1257312597
type: object
1257412598
UsageDBMResponse:
1257512599
description: Response containing the Database Monitoring usage for each hour

api/v1/datadog/docs/UsageAuditLogsHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Name | Type | Description | Notes
66
---- | ---- | ----------- | ------
77
**Hour** | Pointer to **time.Time** | The hour for the usage. | [optional]
88
**LinesIndexed** | Pointer to **int64** | The total number of audit logs lines indexed 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,6 +78,56 @@ SetLinesIndexed sets LinesIndexed field to given value.
7678

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

81+
### GetOrgName
82+
83+
`func (o *UsageAuditLogsHour) GetOrgName() string`
84+
85+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
86+
87+
### GetOrgNameOk
88+
89+
`func (o *UsageAuditLogsHour) 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 *UsageAuditLogsHour) SetOrgName(v string)`
97+
98+
SetOrgName sets OrgName field to given value.
99+
100+
### HasOrgName
101+
102+
`func (o *UsageAuditLogsHour) HasOrgName() bool`
103+
104+
HasOrgName returns a boolean if a field has been set.
105+
106+
### GetPublicId
107+
108+
`func (o *UsageAuditLogsHour) GetPublicId() string`
109+
110+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
111+
112+
### GetPublicIdOk
113+
114+
`func (o *UsageAuditLogsHour) 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 *UsageAuditLogsHour) SetPublicId(v string)`
122+
123+
SetPublicId sets PublicId field to given value.
124+
125+
### HasPublicId
126+
127+
`func (o *UsageAuditLogsHour) HasPublicId() bool`
128+
129+
HasPublicId returns a boolean if a field has been set.
130+
79131

80132
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
81133

api/v1/datadog/docs/UsageCWSHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
77
**CwsContainerCount** | Pointer to **int64** | The total number of Cloud Workload Security container hours from the start of the given hour’s month until the given hour. | [optional]
88
**CwsHostCount** | Pointer to **int64** | The total number of Cloud Workload Security host hours from the start of the given hour’s month until the given hour. | [optional]
99
**Hour** | Pointer to **time.Time** | The hour for the usage. | [optional]
10+
**OrgName** | Pointer to **string** | The organization name. | [optional]
11+
**PublicId** | Pointer to **string** | The organization public ID. | [optional]
1012

1113
## Methods
1214

@@ -102,6 +104,56 @@ SetHour sets Hour field to given value.
102104

103105
HasHour returns a boolean if a field has been set.
104106

107+
### GetOrgName
108+
109+
`func (o *UsageCWSHour) GetOrgName() string`
110+
111+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
112+
113+
### GetOrgNameOk
114+
115+
`func (o *UsageCWSHour) GetOrgNameOk() (*string, bool)`
116+
117+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
118+
and a boolean to check if the value has been set.
119+
120+
### SetOrgName
121+
122+
`func (o *UsageCWSHour) SetOrgName(v string)`
123+
124+
SetOrgName sets OrgName field to given value.
125+
126+
### HasOrgName
127+
128+
`func (o *UsageCWSHour) HasOrgName() bool`
129+
130+
HasOrgName returns a boolean if a field has been set.
131+
132+
### GetPublicId
133+
134+
`func (o *UsageCWSHour) GetPublicId() string`
135+
136+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
137+
138+
### GetPublicIdOk
139+
140+
`func (o *UsageCWSHour) GetPublicIdOk() (*string, bool)`
141+
142+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
143+
and a boolean to check if the value has been set.
144+
145+
### SetPublicId
146+
147+
`func (o *UsageCWSHour) SetPublicId(v string)`
148+
149+
SetPublicId sets PublicId field to given value.
150+
151+
### HasPublicId
152+
153+
`func (o *UsageCWSHour) HasPublicId() bool`
154+
155+
HasPublicId returns a boolean if a field has been set.
156+
105157

106158
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
107159

api/v1/datadog/docs/UsageCloudSecurityPostureManagementHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
77
**ContainerCount** | Pointer to **int64** | The total number of Cloud Security Posture Management containers during a given hour. | [optional]
88
**HostCount** | Pointer to **int64** | The total number of Cloud Security Posture Management hosts during a given hour. | [optional]
99
**Hour** | Pointer to **time.Time** | The hour for the usage. | [optional]
10+
**OrgName** | Pointer to **string** | The organization name. | [optional]
11+
**PublicId** | Pointer to **string** | The organization public ID. | [optional]
1012

1113
## Methods
1214

@@ -102,6 +104,56 @@ SetHour sets Hour field to given value.
102104

103105
HasHour returns a boolean if a field has been set.
104106

107+
### GetOrgName
108+
109+
`func (o *UsageCloudSecurityPostureManagementHour) GetOrgName() string`
110+
111+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
112+
113+
### GetOrgNameOk
114+
115+
`func (o *UsageCloudSecurityPostureManagementHour) GetOrgNameOk() (*string, bool)`
116+
117+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
118+
and a boolean to check if the value has been set.
119+
120+
### SetOrgName
121+
122+
`func (o *UsageCloudSecurityPostureManagementHour) SetOrgName(v string)`
123+
124+
SetOrgName sets OrgName field to given value.
125+
126+
### HasOrgName
127+
128+
`func (o *UsageCloudSecurityPostureManagementHour) HasOrgName() bool`
129+
130+
HasOrgName returns a boolean if a field has been set.
131+
132+
### GetPublicId
133+
134+
`func (o *UsageCloudSecurityPostureManagementHour) GetPublicId() string`
135+
136+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
137+
138+
### GetPublicIdOk
139+
140+
`func (o *UsageCloudSecurityPostureManagementHour) GetPublicIdOk() (*string, bool)`
141+
142+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
143+
and a boolean to check if the value has been set.
144+
145+
### SetPublicId
146+
147+
`func (o *UsageCloudSecurityPostureManagementHour) SetPublicId(v string)`
148+
149+
SetPublicId sets PublicId field to given value.
150+
151+
### HasPublicId
152+
153+
`func (o *UsageCloudSecurityPostureManagementHour) HasPublicId() bool`
154+
155+
HasPublicId returns a boolean if a field has been set.
156+
105157

106158
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
107159

api/v1/datadog/docs/UsageDBMHour.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
77
**DbmHostCount** | Pointer to **int64** | The total number of Database Monitoring host hours from the start of the given hour’s month until the given hour. | [optional]
88
**DbmQueriesCount** | Pointer to **int64** | The total number of normalized Database Monitoring queries from the start of the given hour’s month until the given hour. | [optional]
99
**Hour** | Pointer to **time.Time** | The hour for the usage. | [optional]
10+
**OrgName** | Pointer to **string** | The organization name. | [optional]
11+
**PublicId** | Pointer to **string** | The organization public ID. | [optional]
1012

1113
## Methods
1214

@@ -102,6 +104,56 @@ SetHour sets Hour field to given value.
102104

103105
HasHour returns a boolean if a field has been set.
104106

107+
### GetOrgName
108+
109+
`func (o *UsageDBMHour) GetOrgName() string`
110+
111+
GetOrgName returns the OrgName field if non-nil, zero value otherwise.
112+
113+
### GetOrgNameOk
114+
115+
`func (o *UsageDBMHour) GetOrgNameOk() (*string, bool)`
116+
117+
GetOrgNameOk returns a tuple with the OrgName field if it's non-nil, zero value otherwise
118+
and a boolean to check if the value has been set.
119+
120+
### SetOrgName
121+
122+
`func (o *UsageDBMHour) SetOrgName(v string)`
123+
124+
SetOrgName sets OrgName field to given value.
125+
126+
### HasOrgName
127+
128+
`func (o *UsageDBMHour) HasOrgName() bool`
129+
130+
HasOrgName returns a boolean if a field has been set.
131+
132+
### GetPublicId
133+
134+
`func (o *UsageDBMHour) GetPublicId() string`
135+
136+
GetPublicId returns the PublicId field if non-nil, zero value otherwise.
137+
138+
### GetPublicIdOk
139+
140+
`func (o *UsageDBMHour) GetPublicIdOk() (*string, bool)`
141+
142+
GetPublicIdOk returns a tuple with the PublicId field if it's non-nil, zero value otherwise
143+
and a boolean to check if the value has been set.
144+
145+
### SetPublicId
146+
147+
`func (o *UsageDBMHour) SetPublicId(v string)`
148+
149+
SetPublicId sets PublicId field to given value.
150+
151+
### HasPublicId
152+
153+
`func (o *UsageDBMHour) HasPublicId() bool`
154+
155+
HasPublicId returns a boolean if a field has been set.
156+
105157

106158
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
107159

0 commit comments

Comments
 (0)