Skip to content

Commit 8253c7a

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit fb12392 of spec repo
1 parent 8e8717b commit 8253c7a

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-20 09:54:39.711096",
8-
"spec_repo_commit": "d90592c"
7+
"regenerated": "2021-12-21 20:37:06.113072",
8+
"spec_repo_commit": "fb12392"
99
},
1010
"v2": {
1111
"apigentools_version": "1.5.1.dev2",
12-
"regenerated": "2021-12-20 09:54:39.731653",
13-
"spec_repo_commit": "d90592c"
12+
"regenerated": "2021-12-21 20:37:06.136157",
13+
"spec_repo_commit": "fb12392"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12150,6 +12150,12 @@ components:
1215012150
hour.
1215112151
format: int64
1215212152
type: integer
12153+
org_name:
12154+
description: The organization name.
12155+
type: string
12156+
public_id:
12157+
description: The organization public ID.
12158+
type: string
1215312159
type: object
1215412160
UsageAuditLogsResponse:
1215512161
description: Response containing the audit logs usage for each hour for a given
@@ -12318,6 +12324,12 @@ components:
1231812324
description: The hour for the usage.
1231912325
format: date-time
1232012326
type: string
12327+
org_name:
12328+
description: The organization name.
12329+
type: string
12330+
public_id:
12331+
description: The organization public ID.
12332+
type: string
1232112333
type: object
1232212334
UsageCWSResponse:
1232312335
description: Response containing the Cloud Workload Security usage for each
@@ -12347,6 +12359,12 @@ components:
1234712359
description: The hour for the usage.
1234812360
format: date-time
1234912361
type: string
12362+
org_name:
12363+
description: The organization name.
12364+
type: string
12365+
public_id:
12366+
description: The organization public ID.
12367+
type: string
1235012368
type: object
1235112369
UsageCloudSecurityPostureManagementResponse:
1235212370
description: The response containing the Cloud Security Posture Management usage
@@ -12436,6 +12454,12 @@ components:
1243612454
description: The hour for the usage.
1243712455
format: date-time
1243812456
type: string
12457+
org_name:
12458+
description: The organization name.
12459+
type: string
12460+
public_id:
12461+
description: The organization public ID.
12462+
type: string
1243912463
type: object
1244012464
UsageDBMResponse:
1244112465
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)