-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Oct 24, 2023
1 parent
2396eb0
commit 669c93a
Showing
61 changed files
with
8,714 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
# HistoricalDdos | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Status** | Pointer to **string** | Whether or not we were able to successfully execute the query. | [optional] | ||
**Meta** | Pointer to [**HistoricalDdosMeta**](HistoricalDdosMeta.md) | | [optional] | ||
**Msg** | Pointer to **NullableString** | If the query was not successful, this will provide a string that explains why. | [optional] | ||
**Data** | Pointer to [**[]PlatformDdosDataItems**](PlatformDdosDataItems.md) | A list of [entries](#entry-data-model). | [optional] | ||
|
||
## Methods | ||
|
||
### NewHistoricalDdos | ||
|
||
`func NewHistoricalDdos() *HistoricalDdos` | ||
|
||
NewHistoricalDdos instantiates a new HistoricalDdos object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewHistoricalDdosWithDefaults | ||
|
||
`func NewHistoricalDdosWithDefaults() *HistoricalDdos` | ||
|
||
NewHistoricalDdosWithDefaults instantiates a new HistoricalDdos object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetStatus | ||
|
||
`func (o *HistoricalDdos) GetStatus() string` | ||
|
||
GetStatus returns the Status field if non-nil, zero value otherwise. | ||
|
||
### GetStatusOk | ||
|
||
`func (o *HistoricalDdos) GetStatusOk() (*string, bool)` | ||
|
||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetStatus | ||
|
||
`func (o *HistoricalDdos) SetStatus(v string)` | ||
|
||
SetStatus sets Status field to given value. | ||
|
||
### HasStatus | ||
|
||
`func (o *HistoricalDdos) HasStatus() bool` | ||
|
||
HasStatus returns a boolean if a field has been set. | ||
|
||
### GetMeta | ||
|
||
`func (o *HistoricalDdos) GetMeta() HistoricalDdosMeta` | ||
|
||
GetMeta returns the Meta field if non-nil, zero value otherwise. | ||
|
||
### GetMetaOk | ||
|
||
`func (o *HistoricalDdos) GetMetaOk() (*HistoricalDdosMeta, bool)` | ||
|
||
GetMetaOk returns a tuple with the Meta field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetMeta | ||
|
||
`func (o *HistoricalDdos) SetMeta(v HistoricalDdosMeta)` | ||
|
||
SetMeta sets Meta field to given value. | ||
|
||
### HasMeta | ||
|
||
`func (o *HistoricalDdos) HasMeta() bool` | ||
|
||
HasMeta returns a boolean if a field has been set. | ||
|
||
### GetMsg | ||
|
||
`func (o *HistoricalDdos) GetMsg() string` | ||
|
||
GetMsg returns the Msg field if non-nil, zero value otherwise. | ||
|
||
### GetMsgOk | ||
|
||
`func (o *HistoricalDdos) GetMsgOk() (*string, bool)` | ||
|
||
GetMsgOk returns a tuple with the Msg field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetMsg | ||
|
||
`func (o *HistoricalDdos) SetMsg(v string)` | ||
|
||
SetMsg sets Msg field to given value. | ||
|
||
### HasMsg | ||
|
||
`func (o *HistoricalDdos) HasMsg() bool` | ||
|
||
HasMsg returns a boolean if a field has been set. | ||
|
||
### SetMsgNil | ||
|
||
`func (o *HistoricalDdos) SetMsgNil(b bool)` | ||
|
||
SetMsgNil sets the value for Msg to be an explicit nil | ||
|
||
### UnsetMsg | ||
`func (o *HistoricalDdos) UnsetMsg()` | ||
|
||
UnsetMsg ensures that no value is present for Msg, not even an explicit nil | ||
### GetData | ||
|
||
`func (o *HistoricalDdos) GetData() []PlatformDdosDataItems` | ||
|
||
GetData returns the Data field if non-nil, zero value otherwise. | ||
|
||
### GetDataOk | ||
|
||
`func (o *HistoricalDdos) GetDataOk() (*[]PlatformDdosDataItems, bool)` | ||
|
||
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetData | ||
|
||
`func (o *HistoricalDdos) SetData(v []PlatformDdosDataItems)` | ||
|
||
SetData sets Data field to given value. | ||
|
||
### HasData | ||
|
||
`func (o *HistoricalDdos) HasData() bool` | ||
|
||
HasData returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
# HistoricalDdosMeta | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Start** | Pointer to **string** | Start time that was used to perform the query as an ISO-8601-formatted date and time. | [optional] | ||
**End** | Pointer to **string** | End time that was used to perform the query as an ISO-8601-formatted date and time. | [optional] | ||
**Downsample** | Pointer to **string** | Downsample that was used to perform the query. One of `hour` or `day`. | [optional] | ||
**Metric** | Pointer to **string** | A comma-separated list of the metrics that were requested. | [optional] | ||
|
||
## Methods | ||
|
||
### NewHistoricalDdosMeta | ||
|
||
`func NewHistoricalDdosMeta() *HistoricalDdosMeta` | ||
|
||
NewHistoricalDdosMeta instantiates a new HistoricalDdosMeta object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewHistoricalDdosMetaWithDefaults | ||
|
||
`func NewHistoricalDdosMetaWithDefaults() *HistoricalDdosMeta` | ||
|
||
NewHistoricalDdosMetaWithDefaults instantiates a new HistoricalDdosMeta object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetStart | ||
|
||
`func (o *HistoricalDdosMeta) GetStart() string` | ||
|
||
GetStart returns the Start field if non-nil, zero value otherwise. | ||
|
||
### GetStartOk | ||
|
||
`func (o *HistoricalDdosMeta) GetStartOk() (*string, bool)` | ||
|
||
GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetStart | ||
|
||
`func (o *HistoricalDdosMeta) SetStart(v string)` | ||
|
||
SetStart sets Start field to given value. | ||
|
||
### HasStart | ||
|
||
`func (o *HistoricalDdosMeta) HasStart() bool` | ||
|
||
HasStart returns a boolean if a field has been set. | ||
|
||
### GetEnd | ||
|
||
`func (o *HistoricalDdosMeta) GetEnd() string` | ||
|
||
GetEnd returns the End field if non-nil, zero value otherwise. | ||
|
||
### GetEndOk | ||
|
||
`func (o *HistoricalDdosMeta) GetEndOk() (*string, bool)` | ||
|
||
GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetEnd | ||
|
||
`func (o *HistoricalDdosMeta) SetEnd(v string)` | ||
|
||
SetEnd sets End field to given value. | ||
|
||
### HasEnd | ||
|
||
`func (o *HistoricalDdosMeta) HasEnd() bool` | ||
|
||
HasEnd returns a boolean if a field has been set. | ||
|
||
### GetDownsample | ||
|
||
`func (o *HistoricalDdosMeta) GetDownsample() string` | ||
|
||
GetDownsample returns the Downsample field if non-nil, zero value otherwise. | ||
|
||
### GetDownsampleOk | ||
|
||
`func (o *HistoricalDdosMeta) GetDownsampleOk() (*string, bool)` | ||
|
||
GetDownsampleOk returns a tuple with the Downsample field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetDownsample | ||
|
||
`func (o *HistoricalDdosMeta) SetDownsample(v string)` | ||
|
||
SetDownsample sets Downsample field to given value. | ||
|
||
### HasDownsample | ||
|
||
`func (o *HistoricalDdosMeta) HasDownsample() bool` | ||
|
||
HasDownsample returns a boolean if a field has been set. | ||
|
||
### GetMetric | ||
|
||
`func (o *HistoricalDdosMeta) GetMetric() string` | ||
|
||
GetMetric returns the Metric field if non-nil, zero value otherwise. | ||
|
||
### GetMetricOk | ||
|
||
`func (o *HistoricalDdosMeta) GetMetricOk() (*string, bool)` | ||
|
||
GetMetricOk returns a tuple with the Metric field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetMetric | ||
|
||
`func (o *HistoricalDdosMeta) SetMetric(v string)` | ||
|
||
SetMetric sets Metric field to given value. | ||
|
||
### HasMetric | ||
|
||
`func (o *HistoricalDdosMeta) HasMetric() bool` | ||
|
||
HasMetric returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
Oops, something went wrong.